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
PHP-CGI-RCE-Scanner — Scanning CVE-2024-4577 vulnerability with a url list. | Kitploit
Tools/GitHubGitHub/ywchen-ntust/php-cgi-rce-scanner
Vulnerability ScannersExploitationWeb Application ExploitationInformation GatheringPenetration TestingLearning & Education
GitHubywchen-ntust/php-cgi-rce-scanner

PHP-CGI-RCE-Scanner

Scanning CVE-2024-4577 vulnerability with a url list.

View Repository
1211 months 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

PHP CGI RCE (CVE-2024-4577) Scanner

Just a tool for educational purposes. No legal responsibility.

Scanning CVE-2024-4577 vulnerability with a url list.

Not only sending exploit, but also checking PHP version and whether php-cgi exists. Make it more informative to know why (or why not) exploit success.

Usage

root@kitploit:~
# install dependencies
pip install -r requirements.txt
# write urls to urls.txt
vim urls.txt
# run scanner
python3 -W ignore exploit.py

Beta Version Usage

If you want it to scan faster, you can try the beta version exploit.

root@kitploit:~
# install dependencies
pip install -r requirements_beta.txt
# write urls to urls.txt
vim urls.txt
# run scanner
python3 exploit_beta.py

If you get an error about the file being opened too many times, you can change the limit to 4096:

root@kitploit:~
# show the limit
ulimit -n
# change the limit to 4096
ulimit -n 4096
Download Tool