
Mass Checker For CVE-2015-57115
Mass Checker For CVE-2015-57115
The CVE-2015-57115 Checker Script is a Python tool for detecting vulnerabilities related to CVE-2015-57115, which is a path traversal vulnerability in certain PHP applications. The script checks multiple URLs for the presence of this vulnerability by sending requests with crafted payloads.
requests librarycolorama libraryYou can install the required libraries using pip:
pip install requests colorama
To check a single URL, use the following command:
python CVE-2015-57115.py --url http://example.com --timeout 10 --threads 5 --retries 3 --output results.txt
To check multiple URLs from a file, use:
python CVE-2015-57115.py --file urls.txt --timeout 10 --threads 5 --retries 3 --output results.txt
--url: Single URL to check.--file: File containing multiple URLs to check (one URL per line).--timeout: Request timeout in seconds (default: 10).--threads: Number of threads for parallel URL checks (default: 5).--retries: Number of retries for failed requests (default: 3).--output: File to write the results of the vulnerability checks.The script will print the results to the terminal and save them to the specified output file. The output includes:
At the end of the run, the script will display the total number of vulnerable URLs and confirm the file where results were saved.
python CVE-2015-57115.py --file urls.txt --threads 5 --output vulnerable_urls.txt