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-2025-24799 — CVE-2025-24799 SQLi Scanner | Kitploit
Tools/GitHubGitHub/muhammadwaseem29/cve-2025-24799
Vulnerability ScannersWeb Vulnerability ScannersExploitationWeb SecurityPenetration Testing
GitHubmuhammadwaseem29/cve-2025-24799

CVE-2025-24799

CVE-2025-24799 SQLi Scanner

View Repository
421 year 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
Website

CVE-2025-24799 SQLi Scanner

A fast SQL injection vulnerability scanner built with Python. Uses time-based SQLi detection with multithreading and colorful output, designed for testing CVE-2025-24799 vulnerabilities.


Features

  • Scans single URLs or lists from files
  • Shows vulnerable URLs live as they're found
  • Multithreaded for speed
  • Colorful CLI output
  • Option to save results

Installation

  1. Clone the repo:

    root@kitploit:~
    git clone https://github.com/MuhammadWaseem29/CVE-2025-24799.git
    cd CVE-2025-24799
    
  2. Install required packages:

    root@kitploit:~
    pip install requests colorama
    

Usage

Run with Python 3:

Scan a Single URL

root@kitploit:~
python3 exploit.py -u http://example.com

Output:

root@kitploit:~
[VULN] http://example.com/index.php/ajax/ - Delay: 7.40s

Scan URLs from a File

root@kitploit:~
python3 exploit.py -f urls.txt -t 15

Output:

root@kitploit:~
Scanning: 100/1000 (10.0%)
[VULN] http://example.com/index.php/ajax/ - Delay: 7.10s

Save Results to a File

root@kitploit:~
python3 exploit.py -f urls.txt -o results.txt -t 10

Output:

root@kitploit:~
Scanning: 50/500 (10.0%)
[VULN] http://test.com/index.php/ajax/ - Delay: 7.20s
[+] Results saved to results.txt

image

Validate via curl

image

Options

  • -u <URL>: Single URL to scan
  • -f <FILE>: File with URLs (one per line)
  • -o <FILE>: Save results to file
  • -t <NUM>: Number of threads (default: 10)

Sample Output

root@kitploit:~
╔════════════════════════════╗
║ Noob-Wasi SQLi Scanner    ║
║ Coded by: Noob-Wasi       ║
║ Version: 1.0             ║
╚════════════════════════════╝

Starting SQL injection scan...
Scanning: 200/3494 (5.7%)
[VULN] http://152.67.42.99/index.php/ajax/ - Delay: 7.40s
Scanning: 745/3494 (21.3%)

Scan completed!

Notes

  • Requires Python 3.x
  • Test only on systems you have permission to scan
  • Adjust threads (-t) based on your system/network

Author: Noob-Wasi
GitHub: github.com/MuhammadWaseem29

root@kitploit:~
Download Tool