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-2017-5638 | Kitploit
Tools/GitHubGitHub/xhendos/cve-2017-5638
ReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubxhendos/cve-2017-5638

CVE-2017-5638

View Repository
8 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-2017-5638

Table of Contents

  1. Overview
  2. Dependencies
  3. Usage

Overview

This project is a prove-of-concept for the Apache Struts vulnerabilty. The goal was to create software that can generate and test random IPs for the vulnerabilty described above.

Use this project on your own risk and for educational purpose only.

Dependencies

  • cURL

    • cURL is used to send the crafted header to a certain IP address on a certain Port.
  • Nmap

    • Nmap is used to create the random IP addresses that contains an open port 80 or 443.

Usage

Generate random IPs and save them to a text file.

root@kitploit:~
./get_ip.sh [Number of hosts to scan] [What port to scan] [Filename to write output]
root@kitploit:~
./get_ip.sh 10000 80 output.txt

Check for vulnerability for a specific IP address.

root@kitploit:~
./struts_check.sh [ip address] [port]
root@kitploit:~
./struts_check.sh 127.0.0.1 80

Check for vulnerability for a list of IP addresses.

root@kitploit:~
./main.sh [Text file containing IP adresses] [Port]
root@kitploit:~
./main.sh output.txt 443

Execute a command on a server without the Apache struts vulnerability patch

root@kitploit:~
./struts_attack.sh [IP Adres] [Command]
root@kitploit:~
./struts_attack.sh https://127.0.0.1 whoami
Download Tool