ifnull
4/24/2013 - 7:22 AM

Someone try to phish your Facebook account? Want to fill their database with junk logins? Here you go...

Someone try to phish your Facebook account? Want to fill their database with junk logins? Here you go...

#!/bin/bash
URL="http://www.some.phishing.site.com/login.php?login_attempt=1" # Put the POST URL here. 

count=1
echo "Press [CTRL+C] to stop.."
while :
do
    USERNAME=`echo "$(uuidgen)" | tr '[:upper:]' '[:lower:]'`
    DOMAIN=`echo "$(uuidgen)" | tr '[:upper:]' '[:lower:]'`
    PASSWORD=`echo "$(uuidgen)" | tr '[:upper:]' '[:lower:]'`
    PASSWORD=${PASSWORD//[-._]/}
    EMAIL=${USERNAME:26}@${DOMAIN:24}.com
    POST_DATA="lsd=&display=&enable_profile_selector=&legacy_return=1&next=&profile_selector_ids=&trynum=1&timezone=-0&lgnrnd=0&lgnjs=0&email=$EMAIL&pass=$PASSWORD&default_persistent=0&login=Log+in"
    curl --data $POST_DATA $URL
    echo "Attempt #$count " $POST_DATA
    (( count++ ))
done