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
Detecting-and-Analyzing-CVE-2024-24919-Exploitation — Step-by-step walkthrough of detecting and analyzing CVE-2024-24919 exploitation using a SIEM platform, including traffic analysis, IOC documentation, containment, and escalation procedures. | Kitploit
Tools/GitHubGitHub/macuchegit/detecting-and-analyzing-cve-2024-24919-exploitation
Indicator of Compromise (IOC) ManagementVulnerability AnalysisWeb SecurityDigital ForensicsThreat IntelligenceLearning & EducationIncident ResponseLabs & Practice

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHub
macuchegit/detecting-and-analyzing-cve-2024-24919-exploitation

Detecting-and-Analyzing-CVE-2024-24919-Exploitation

Step-by-step walkthrough of detecting and analyzing CVE-2024-24919 exploitation using a SIEM platform, including traffic analysis, IOC documentation, containment, and escalation procedures.

View Repository
41 year agoNot yet reviewed
cover photo

🔍 Investigating a Zero-Day Attack Using Let’s Defend SIEM

👉 A Walkthrough on Detecting and Analyzing CVE-2024-24919 Exploitation


🎯 Purpose of the Investigation

This project was conducted to investigate a potential exploitation attempt against a Check Point Security Gateway, specifically leveraging a zero-day vulnerability – CVE-2024-24919. The goal was to determine if this alert was a false positive or a legitimate breach attempt, analyze the traffic, and take appropriate containment and response steps.


🛠️ Tools & Environment Used

  • SIEM Platform: Let’s Defend (cloud-based threat detection and investigation tool)
  • Virtual Lab: Provided within Let’s Defend
  • Targeted Host: CP-Spark-Gateway-01
  • Log Analysis Features: HTTP traffic logs, endpoint filtering, email security console
  • Threat Intelligence: Online sources such as NVD and Check Point security advisories

⭐ Alert Overview

  • Rule Triggered: SOC287 - Arbitrary File Read on Check Point Gateway (CVE-2024-24919)
  • Event ID: 263
  • Timestamp: June 6, 2024, 03:12 PM
  • Destination IP: 172.16.20.146
  • Source IP: 203.160.68.12
  • Device Action: Allowed
  • Request: aCSHELL/../../../../../../../../../../etc/passwd
  • User-Agent: Spoofed as Mozilla Firefox on Mac OS X

🧪 Pre-Analysis: Understanding CVE-2024-24919

CVE-2024-24919 is a zero-day path traversal vulnerability affecting Check Point Security Gateways. It allows unauthenticated remote attackers to read arbitrary files, such as /etc/passwd and /etc/shadow, by sending crafted HTTP requests to vulnerable endpoints.

🔗 Check Point Advisory

This type of request (seen in our logs) is consistent with this vulnerability and triggers alerts due to its attempt to exploit system file reads.


🔎 Step 1: Analyze HTTP Traffic

image

I navigated to the Log Management page, filtered for Destination IP 172.16.20.146, and inspected incoming HTTP traffic.

image

🔥 Key Findings:

image image
TimestampRequest PathPayload
15:12:45/clients/MyCRLaCSHELL/../../../../etc/passwd
15:13:10/clients/MyCRLaCSHELL/../../../../etc/shadow
  • The payload clearly attempts path traversal to read critical system files.
  • These files are used to store user credentials and password hashes.
  • HTTP Status 200 with Response Size: 1256 bytes indicates the server returned data successfully — suggesting exploitation succeeded.
image

🚨 Step 2: What Type of Attack Is This?

image

This is a Path Traversal Attack, also known as Directory Traversal. It allows attackers to navigate outside the intended web directory and access protected system files.

Why we concluded this:

  • Requests contain repeated ../ (dot-dot-slash) patterns.
  • Targeted files like /etc/passwd and /etc/shadow are standard indicators.

🧪 Step 3: Was This a Planned Test?

image

I checked the Email Security Page and searched using these keywords:

  • 172.16.20.146
  • CP-Spark-Gateway-01
  • CVE-2024-24919
  • penetration test

🔍 No emails or documentation suggested this was a test. This likely rules out a simulation or red-team operation.

image

🌐 Step 4: Traffic Direction Analysis

image

Source IP: 203.160.68.12 → Public IP Address Destination IP: 172.16.20.146 → Private IP Address (RFC 1918 range)

🔁 Direction: Internet → Company Network

This confirms the traffic is coming from an external attacker targeting internal infrastructure.


🧠 Step 5: Was the Attack Successful?

The HTTP log shows:

root@kitploit:~
"POST /clients/MyCRL HTTP/1.1" 200 1256
  • HTTP 200 OK indicates success.
  • Response size (1256 bytes) suggests the system returned data.
  • The attacker likely accessed /etc/passwd, validating a successful exploit.

🛡️ Containment Steps

image

I accessed the Endpoint page, filtered by the destination IP 172.16.20.146, and issued a containment action to isolate the host.

Why?

  • Host has been compromised.
  • It could be used to pivot or exfiltrate data.

🧾 Step 6: Documenting IOCs

Why It Matters:

Indicators of Compromise (IOCs) are crucial for:

  • Notifying external threat intelligence communities
  • Writing future detection rules
  • Strengthening security posture

📌 IOCs Identified:

  • Source IP: 203.160.68.12, 203.160.68.13

  • User-Agent: Mozilla/5.0 (Mac OS X; rv:126.0)

  • Request Paths:

    • /clients/MyCRL
    • Payloads: ../../../../etc/passwd, ../../../../etc/shadow
  • Target Port: 4433 (non-standard HTTPS)


⬆️ Step 7: Tier 2 Escalation?

image

✅ Yes — This is a zero-day vulnerability successfully exploited in a live environment, exposing sensitive files.

Escalation is essential for:

  • Deep forensics
  • Patch validation
  • Coordinating legal, compliance, and executive stakeholders

📄 Step 8: Final Analysis & Comment

I closed the alert as a True Positive.

image

📝 Brief Comment:

"Alert confirmed as CVE-2024-24919 exploitation. External IP 203.160.68.12 successfully accessed sensitive system files via path traversal. Host CP-Spark-Gateway-01 has been contained. IOC documentation completed. Escalated to Tier 2 for advanced forensics and patch verification."


🔐 Prevention Recommendations

  • 🧱 Apply vendor patch for CVE-2024-24919 immediately (Check Point Hotfix).
  • 🔒 Block access to /clients/MyCRL endpoint externally.
  • 🧬 Implement WAF rules for traversal patterns (../, ..%2F).
  • 🔍 Monitor for abnormal port activity (e.g., 4433).
  • 🔄 Regularly update and audit firewall + SIEM rules.
  • 📚 Conduct internal training on recent zero-day threats.

✅ Conclusion

This investigation highlights the critical importance of proactive threat monitoring and response. Detecting and responding to zero-day exploits quickly can make the difference between a contained incident and a widespread breach.

Download Tool