Web Scrape
Tools
Screenshots
> cutycapt --url=https://pentest.mxhx.org/ --out=mxhx.png View Tons of Webpages - Grab and Compile
Last updated
> cutycapt --url=https://pentest.mxhx.org/ --out=mxhx.png Last updated
> sudo nmap -A -p80 --open 10.x.x.x/24 -oG results
> cat results | grep 80 | grep -v "Nmap" | awk '{print $2}'
> for i in $(cat results | grep 80 | grep -v "Nmap" | awk '{print $2}'); do cutycapt --url=$i --out=$i.png;done
> cat htmlshot.sh
#!/bin/bash
echo "<HTML><BODY><BR>" > web.html
ls -1 *.png | awk -F : '{ print $1":\n<BR><IMG SRC=\""$1""$2"\" width=600><BR>"}' >> web.html
echo "</BODY></HTML>" >> web.html
> chmod +x ./htmlshot.sh
> ./htmlshot.sh
> firefox web.html