HOW TO FIND HOSTED PHISHING PAGES / SCAM PAGES

Father

Professional
Messages
2,604
Reputation
4
Reaction score
614
Points
113
You can either visit the API Page to get pages which are detected today:
Code:
https://phishingreel.io/api/v1/panels/today

Or you do a curl request from console (cmd or terminal):
Code:
curl https://phishingreel.io/api/v1/panels/today

To get in Linux only the URLs you can use a regex and some text-tools:
Code:
curl -s https://phishingreel.io/api/v1/panels/today | jq | grep -Eo "\"(http|https):\/\/(.*?)\"" | tr -d '"'

You can also get only the Kit name like 16Shop,FreakzBrother, YOURLS etc.:
Code:
curl -s https://phishingreel.io/api/v1/panels/today | jq | grep "panel_url\|kit"

THANKS FOR READING
 
Last edited by a moderator:
Top