t4d / StalkPhish

StalkPhish - The Phishing kits stalker, harvesting phishing kits for investigations.
GNU Affero General Public License v3.0
626 stars 80 forks source link

Find clonekit of a specific URL #31

Closed b00lpy closed 3 years ago

b00lpy commented 3 years ago

Hi,

Is it possible to perform a phishing kit scan against a single URL, or a given list from a file, instead of passing through the database?

A kind of:
./StalkPhish.py -c conf/example.conf -G http://myurl.example/folder

t4d commented 3 years ago

Hi! You can do it using the -u option, as: ./StalkPhish.py -c conf/example.conf -u 'http://myurl.example/folder' Then you can do it with a shell script: for i in $(cat urllist.txt); do /opt/StalkPhish/stalkphish/stalkphish.py -c conf/example.conf -u $i;done Enjoy!