A Python script that automates the discovery of admin panels on websites to aid penetration testing.
A program that finds the admin panel of sites 👨💻
This tool is used by penetration testers and red teamers to quickly locate the admin login pages of target websites, which can be critical for further exploitation or security assessment. It simplifies the process of finding hidden or obscure admin panels by automating URL checks against a list of common admin paths.
Ensure Python is installed before running the tool. Use responsibly and only on websites you have permission to test, as unauthorized scanning may be illegal. The tool relies on a static list of admin page URLs (admin_pages.txt), so it may not find custom or uncommon admin paths.
git clone https://github.com/AbdulazizSherzodjanov/AdminPageFinder.git
cd admin_finder
pip3 install requests (Linux) or pip install requests (Windows)
pip3 install termcolor (Linux) or pip install termcolor (Windows)
git clone https://github.com/AbdulazizSherzodjanov/AdminPageFinder.git
Clones the AdminPageFinder repository to your local machine.
cd admin_finder
Changes directory to the cloned repository folder.
pip3 install requests
Installs the 'requests' Python library on Linux.
pip3 install termcolor
Installs the 'termcolor' Python library on Linux.
pip install requests
Installs the 'requests' Python library on Windows.
pip install termcolor
Installs the 'termcolor' Python library on Windows.
Start the program and enter the target URL when prompted
Runs the script to scan the given website for admin panel URLs.