Possible Google Scraper: (Play with the sleep timing between request to prevent IP blocking)
https://github.com/NikolaiT/GoogleScraper
https://github.com/MarioVilas/google
//Example using MarioVilas's google scraper:
python google.py --stop=20 "inurl:console filetype:php" > test.txt
//If you need to remove parameters, a simple bash script is perfect:
vi removeparameter.sh
#!/bin/bash
while read p; do
FILE=$p
echo ${FILE%%\?*}
done < test.txt
No comments:
Post a Comment