Skip to content

Commit

Permalink
adding php,html,js extension and enable https
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Oct 17, 2023
1 parent 494be9a commit 5399948
Show file tree
Hide file tree
Showing 3 changed files with 9,677 additions and 28 deletions.
6 changes: 6 additions & 0 deletions cmd/bruter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ func main() {

for index, payload := range list {
index += shift

// Replace %EXT% with extensions
payload = strings.ReplaceAll(payload, "%EXT%", "php")
payload = strings.ReplaceAll(payload, "%EXT%", "html")
payload = strings.ReplaceAll(payload, "%EXT%", "js")

progress := 100 * float32(index) / float32(total)
queue.Add(async.Job(&workerContext{
Mu: &app.Mu,
Expand Down
Loading

0 comments on commit 5399948

Please sign in to comment.