#! /usr/local/bin/bash -x echo you need lynx and curl :O -rmccurdy.com echo Idea of this lame script is to find possible vuln params on myipneighbors search results curl -c cookie -b cookie -d "search=$1&commit=search" 'http://www.myipneighbors.com/search/check' > tmp lynx -dump -width=9000 -nolist tmp > txt.txt for i in `grep blank txt.txt | sed -e 's/.*target=blank>//g' -e 's/<\/a>.*//g'` ; do lynx -width=999 -dump -nolist "http://www.google.com/search?q=site%3A"$i"+-filetype%3Ahtm+-filetype%3Ahtml+-filetype%3Apdf&btnG=Search&num=100&hl=en&lr=lang_en&suggon=0&safe=off&as_qdr=all&sa=2"|grep '=' >> txt2.txt ;sleep 5;done