Skip to content

Commit

Permalink
Merge pull request #1 from cbk914/devel
Browse files Browse the repository at this point in the history
Simple bash script for bulk recon
  • Loading branch information
cbk914 committed Mar 29, 2020
2 parents 5c133eb + 2a1a5a9 commit 9c53157
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions confirm_domains.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

oldIFS=$IFS
IFS=$'\n'
while IFS='' read -r line || [[-n "$line" ]];
do
domain=$line
python3 finalrecon.py --headers https://$domain -o csv
IFS=$oldIFS
done < "$1"
#IFS=$oldIFS

0 comments on commit 9c53157

Please sign in to comment.