six2dez / reconftw

reconFTW is a tool designed to perform automated recon on a target domain by running the best set of tools to perform scanning and finding out vulnerabilities
MIT License
5.69k stars 922 forks source link

Realtime subdomain output #350

Open wtwver opened 3 years ago

wtwver commented 3 years ago

Add disowned inotifywait in reconftw.sh to output subdomain realtime

POC:

docker run -it --entrypoint="" six2dez/reconftw:main bash -c "./reconftw.sh -d testfire.net -s & apt install -y inotify-tools;  inotifywait -q -m -e create '/root/Tools/reconftw/Recon/testfire.net/.tmp/' | while read -r i1 i2 filename; do cat /root/Tools/reconftw/Recon/testfire.net/.tmp/\$filename; done"

I can try to come up with a pull request if this feature looks good

six2dez commented 3 years ago

I like the idea, but note that reconFTW already uses notify tool to send you messages via chat apps, it also prints the results and the status of the steps on the screen, anyway, if you want to add the feature to the dev branch, I'd be happy to give it a try and add it to main if I find it useful :) Thanks!