Skip to content

Commit

Permalink
Gauplus threads
Browse files Browse the repository at this point in the history
  • Loading branch information
six2dez committed Apr 9, 2021
1 parent d1e56c4 commit 82f1fe3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions reconftw.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ XSSTRIKE_THREADS=30
BRUTESPRAY_THREADS=20
BRUTESPRAY_CONCURRENCE=10
ARJUN_THREADS=20
GAUPLUS_THREADS=50

# lists
fuzz_wordlist=${tools}/fuzz_wordlist.txt
Expand Down
4 changes: 2 additions & 2 deletions reconftw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ function sub_passive(){
fi
eval curl -s "https://jldc.me/anubis/subdomains/${domain}" $DEBUG_ERROR | grep -Po "((http|https):\/\/)?(([\w.-]*)\.([\w]*)\.([A-z]))\w+" | sed '/^\./d' | anew -q .tmp/jldc_psub.txt
timeout 10m waybackurls $domain | unfurl --unique domains | anew -q .tmp/waybackurls_psub.txt
timeout 10m gauplus -t 50 -subs $domain | unfurl --unique domains | anew -q .tmp/gau_psub.txt
timeout 10m gauplus -t $GAUPLUS_THREADS -subs $domain | unfurl --unique domains | anew -q .tmp/gau_psub.txt
if echo $domain | grep -q ".mil$"; then
mildew
mv mildew.out .tmp/mildew.out
Expand Down Expand Up @@ -879,7 +879,7 @@ function urlchecks(){
start_func "URL Extraction"
mkdir -p js
cat webs/webs.txt | waybackurls | anew -q .tmp/url_extract_tmp.txt
cat webs/webs.txt | gauplus -t 50 -subs | anew -q .tmp/url_extract_tmp.txt
cat webs/webs.txt | gauplus -t $GAUPLUS_THREADS -subs | anew -q .tmp/url_extract_tmp.txt
diff_webs=$(diff <(sort -u .tmp/probed_tmp.txt) <(sort -u webs/webs.txt) | wc -l)
if [ $diff_webs != "0" ] || [ ! -s ".tmp/gospider.txt" ] ;
then
Expand Down

0 comments on commit 82f1fe3

Please sign in to comment.