top of page

S.S.A_Admin Page Finder

Designed to discover potentially hidden administration login pages on a target domain. It offers a choice of two scanning modes: "Light Scan" and "Deep Scan." The script combines Python code with user-friendly input and output to create an efficient and user-friendly tool for identifying admin login URLs on a given domain.

The Admin Page Finder script is designed to help security professionals and administrators discover potentially hidden administration login pages on a target domain. It offers a choice of two scanning modes: "Light Scan" and "Deep Scan." The script combines Python code with user-friendly input and output to create an efficient and user-friendly tool for identifying admin login URLs on a given domain.


Key Features:

Logging: The script uses Python's logging module to log both progress and results to a file named admin_finder_log.txt. This allows for easy tracking of the scanning process and results.


Input Validation: The script ensures that the user provides a valid target domain by normalizing and validating the URL. If an invalid domain is provided, the script prompts the user to re-enter a valid one.


Scan Types: Users can choose between two scanning modes: "Light Scan" and "Deep Scan." The choice determines the depth and breadth of the scan.


Structured Output: The script outputs information in a structured and professional format. It displays the progress of the scan, the target domain, and the total number of paths to check in a clear and organized manner.


User Interrupt Handling: The script is equipped to handle user interruptions gracefully. If a user decides to terminate the scan, it provides a clean exit message and ensures that the log file is updated accordingly.


How to Use:

  1. Run the script in a Python environment.

  2. Enter the target domain for which you want to find admin login pages.

  3. Choose between a "Light Scan" and "Deep Scan" by entering the respective number or scan type.

  4. The script will then begin scanning the domain for admin login URLs.

  5. Progress and results will be displayed on the terminal and logged to a file (admin_finder_log.txt).

  6. When the scan is complete, the script will display the number of admin login pages found (if any) and their URLs.

Note: The script is designed for legitimate security and administrative purposes. Ensure you have proper authorization before using it.


[+] Enter the target domain: example.com

[+] Scan Types:
1. Light Scan
2. Deep Scan

[+] Choose a scan type (enter the number or scan type): 1

[+] Scanning target domain: http://example.com
[+] Scan Type: Light Scan
****************************************************************
[+] Checking Path [1/904]:
   http://example.com/_admin/
[+] Checking Path [2/904]:
   http://example.com/backoffice/
[+] Checking Path [3/904]:
   http://example.com/admin/

[+] Found 3 admin login page(s):
[+] http://example.com/_admin/
[+] http://example.com/backoffice/
[+] http://example.com/admin/

The script provides a professional and efficient means of discovering admin login pages on a given domain while maintaining comprehensive logs for future reference.


Project Gallery

bottom of page