Advertisement
DraKiNs

[JavaScript] Twitter Random Acc

Nov 9th, 2011
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript:
  2. document.getElementsByName("user[name]")[0].value = Math.floor(Math.random()* 1000000);
  3. document.getElementsByName("user[email]")[0].value = Math.floor(Math.random()* 10000000)  + "@hotmail.com";
  4. document.getElementsByName("user[user_password]")[0].value = Math.floor(Math.random()* 10000000000);
  5. document.getElementsByName("user[screen_name]")[0].value = Math.floor(Math.random()* 1000000000);
  6. document.getElementById('phx-signup-form').submit();
  7.  
  8. // Por Bruno da Silva
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement