Skip to content

Commit

Permalink
Simple bash script for bulk recon
Browse files Browse the repository at this point in the history
  • Loading branch information
cbk914 committed Mar 29, 2020
1 parent 5c133eb commit 2a1a5a9
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 2a1a5a9

Please sign in to comment.