-
-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added threads placeholder for oneshot modules - not functional yet :)
- Loading branch information
pry
authored and
pry
committed
Jan 20, 2021
1 parent
c138f9e
commit 4c65a3f
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[{ | ||
"command":"/home/op/go/bin/ffuf -w _wordlist_ -u '_target_/FUZZ' -of csv -o _output_/$RANDOM.txt -ac", | ||
"wordlist":"~/lists/pry-web-quick.txt", | ||
"ext":"csv" | ||
"ext":"csv", | ||
"threads":"1" | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[ | ||
{ | ||
"command":"sudo nmap -oG _output_/_target_.txt _target_", | ||
"ext":"txt" | ||
"ext":"txt", | ||
"threads":"15" | ||
}, | ||
{ | ||
"command":"sudo nmap -oX _output_/_target_.xml _target_", | ||
"ext":"xml" | ||
"ext":"xml", | ||
"threads":"15" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[{ | ||
"command":"echo _target_ | /home/op/go/bin/shuffledns -v -d _target_ -r /home/op/lists/resolvers.txt -w _wordlist_ -o _output_/_target_", | ||
"ext":"txt", | ||
"wordlist":"/home/op/lists/seclists/Discovery/DNS/bitquark-subdomains-top100000.txt" | ||
"wordlist":"/home/op/lists/seclists/Discovery/DNS/bitquark-subdomains-top100000.txt", | ||
"threads":"2" | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[{ | ||
"command":"/home/op/go/bin/subfinder -silent -d _target_ -o _output_/_target_", | ||
"ext":"txt" | ||
"ext":"txt", | ||
"threads":"3" | ||
}] |