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-2020-1938-Tool — 批量检测幽灵猫漏洞 | Kitploit
Tools/GitHubGitHub/just1cep4rtn3r/cve-2020-1938-tool
Vulnerability ScannersExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubjust1cep4rtn3r/cve-2020-1938-tool

CVE-2020-1938-Tool

批量检测幽灵猫漏洞

View Repository
3216 years 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-2020-1938-Tool

First of all, thanks to hypn0s for providing AJPY, a tool for constructing AJP protocol requests (a Python library). Based on this, this project implements batch detection of Ghostcat vulnerability sites.

Usage

Currently has two functions

root@kitploit:~
usage: tomcat.py [-h] {read_file,scan_files} ...

positional arguments:
  {read_file,scan_files}
    read_file           Exploit CVE-2020-1938
    scan_files          scan a file list

optional arguments:
  -h, --help            show this help message and exit
  1. File reading
root@kitploit:~
usage: tomcat.py read_file [-h] [-H HOST] [-p PORT] [--webapp WEBAPP]
                           [-f FILE]

optional arguments:
  -h, --help            show this help message and exit
  -H HOST, --host HOST  The host to check
  -p PORT, --port PORT  The port of AJP connector(default is 8009)
  --webapp WEBAPP       webapp
  -f FILE, --file FILE  The relative path of file to read

python3 tomcat.py read_file -H 127.0.0.1 --webapp manager -f /WEB-INF/web.xml

  • Scan all sites in the file
  • root@kitploit:~
    usage: tomcat.py scan_files [-h] [-f FILE] [-t THREADS] [-o OUT]
    
    optional arguments:
      -h, --help            show this help message and exit
      -f FILE, --file FILE  Host list(only one url in a line)
      -t THREADS, --threads THREADS
      -o OUT, --out OUT     output the vulnerable host to file
    

    python3 tomcat.py scan_files -t 5 -f host_files.txt -o result.txt

    Download Tool