Advertisement
moften

Validamailfacebook

Jan 4th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. #/bin/bash
  2. for mail in $(cat $1);
  3. do
  4. s=$(curl -s -d "ep=$mail" http://m.facebook.com/reset.php?refid=0|grep form>/dev/null);
  5. if [ $? -eq 0 ]; then
  6. echo "$mail No tiene cuenta.";
  7. else
  8. echo "$mail Si tiene cuenta.";
  9. fi
  10. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement