Last active
October 3, 2020 11:24
-
-
Save SocioDroid/2b26d7f5de60d71c33f2bf0309ddea5e to your computer and use it in GitHub Desktop.
Revisions
-
SocioDroid revised this gist
May 6, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,11 +2,11 @@ filename=$1 while read line; do echo "Sublist3r" python3 sublist3r.py -d $line -o $line.txt echo "Assetfinder" assetfinder --subs-only $line | tee -a $line.txt sort -u $line.txt -o $line.txt done < $filename #./enumSubdomains.sh subs.txt -
SocioDroid revised this gist
May 6, 2020 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ #!/bin/sh filename=$1 while read line; do @@ -10,4 +8,5 @@ while read line; do assetfinder --subs-only $1 | tee -a $1.txt sort -u $1.txt -o $1.txt done < $filename #./enumSubdomains.sh subs.txt -
SocioDroid renamed this gist
May 6, 2020 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ #Usage #./enumSubdomains.sh subs.txt #!/bin/sh filename=$1 while read line; do -
SocioDroid revised this gist
May 6, 2020 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ #!/bin/sh filename=$1 while read line; do echo "Sublist3r" python3 sublist3r.py -d $1 -o $1.txt -
SocioDroid created this gist
May 6, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/bin/sh filename=$1 while read line; do echo "Sublist3r" python3 sublist3r.py -d $1 -o $1.txt echo "Assetfinder" assetfinder --subs-only $1 | tee -a $1.txt sort -u $1.txt -o $1.txt done < $filename