Skip to content

Commit

Permalink
added threads placeholder for oneshot modules - not functional yet :)
Browse files Browse the repository at this point in the history
  • Loading branch information
pry authored and pry committed Jan 20, 2021
1 parent c138f9e commit 4c65a3f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion modules/ffuf.json
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"
}]
6 changes: 4 additions & 2 deletions modules/nmapx.json
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"
}
]
3 changes: 2 additions & 1 deletion modules/shuffledns.json
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"
}]
3 changes: 2 additions & 1 deletion modules/subfinder.json
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"
}]

0 comments on commit 4c65a3f

Please sign in to comment.