AdminProber Code
Tool designed to scan websites for potential admin panels.
Brought to you by:
trixsec
| File | Date | Author | Commit |
|---|---|---|---|
| results | 2024-11-27 |
|
[0125ef] v1.1 |
| wordlist | 2024-11-27 |
|
[0125ef] v1.1 |
| LICENSE | 2024-11-27 |
|
[57807e] Initial commit |
| README.md | 2024-11-27 |
|
[0125ef] v1.1 |
| VERSION | 2024-11-27 |
|
[0125ef] v1.1 |
| adminprober.py | 2024-11-27 |
|
[0125ef] v1.1 |
| requirements.txt | 2024-11-27 |
|
[0125ef] v1.1 |
Current Version: 1.1
Author: Trix Cyrus
Copyright: © 2024 Trixsec Org
Maintained: Yes
AdminProber is a Python-based tool designed to scan websites for potential admin panels using a wordlist of common admin paths. It can operate with multiple threads to speed up the process and provides an output file with the results.
requests librarytermcolor libraryurllib3 libraryYou can install the required dependencies by running:
pip install -r requirements.txt
bash
git clone https://github.com/TrixSec/AdminProber.git
bash
cd AdminProber
bash
pip install -r requirements.txt
To start scanning for admin panels on a target website, run the script with the required arguments. Here's an example:
python admin_prober.py --target https://example.com --threads 10 --paths wordlist/admin_paths.txt --output results/admin_results.txt
--target or -t: Required. The target website URL (e.g., https://example.com).--threads or -th: Number of threads to use (default: 5). More threads will speed up the scan.--paths or -p: Path to the file containing admin paths (default: wordlist/admin_paths.txt).--output or -o: The file where the results will be saved (default: results/admin_results.txt).--check-updates or -cu: Check for the latest version and update if necessary.python admin_prober.py --target https://example.com
To check if there is a new version of AdminProber available, use the --check-updates flag:
python admin_prober.py --check-updates