Skip to main content

WPAT (WordPress Professional Audit Tool) es una herramienta de auditorรญa de seguridad para WordPress que detecta vulnerabilidades comunes y expone riesgos de manera eficiente.

Project description

๐Ÿ›ก๏ธ WordPress Professional Audit Tool - Ethical WordPress Security Auditor

License Python Maintenance Installation

Professional security audit tool for WordPress sites (exclusive ethical use).

๐Ÿ”— Official website: https://wpat.netlify.app/

๐Ÿš€ Main Features

  • ๐Ÿ” Specialized Modules:

    • ๐Ÿ•ต๏ธ User Enumeration Detection
    • ๐Ÿ›‘ XML-RPC Vulnerability Analysis
    • ๐Ÿ“‚ Exposed Sensitive Files Scanner
    • ๐Ÿ”– WordPress Version Fingerprinting
    • ๐Ÿ“ก REST API Endpoints Audit
    • ๐Ÿงฉ Plugin Scanner (detects active installations)
    • ๐ŸŽจ Theme Scanner (detection by CSS style)
    • ๐Ÿ”“ Optimized Brute Force (WordPress Login)
    • ๐Ÿ” SSL/TLS Audit (Certificates and Encryption)
    • ๐Ÿ—’๏ธ security.txt file detection
    • ๐ŸŒ CORS configuration detector
    • ๐Ÿงพ HTML Report Generator (New)
  • ๐Ÿ›  Key Features:

    • ๐ŸŽจ Intuitive interface with color scheme and ASCII banners
    • ๐Ÿ–ฅ๏ธ New interactive GUI
    • ๐Ÿ“ Automatic generation of detailed logs with timestamps
    • โšก Configurable multi-threaded scanning (1-50 threads)
    • ๐Ÿ”„ Interactive menu with simplified navigation
    • ๐Ÿšจ Enhanced error handling and Ctrl+C system
    • ๐Ÿ“ฆ Official Wordlist Generator (Plugins/Themes)

๐Ÿ“ฆ Installation

โœ… Method 1: Installation via pip (traditional mode)

# Install WPAT (CLI only, no GUI)
pip install wpat

# Run WPAT in CLI mode
wpat

๐Ÿ–ฅ๏ธ Want the version with GUI?

# Install WPAT with GUI support (PyQt5)
pip install "wpat[gui]"

# Run the GUI
wpat-gui

โœ… Method 2: Installation via pipx (Recommended)

pipx allows for global and isolated installation, ideal for CLI tools.

# Install pipx if not available
python -m pip install --user pipx
python -m pipx ensurepath

# Install WPAT (CLI only)
pipx install wpat

# Run it
wpat

๐Ÿ–ฅ๏ธ To install WPAT with GUI using pipx:

# GUI version using pipx (with graphical dependencies)
pipx install "wpat[gui]"

# Run GUI
wpat --gui

๐Ÿ› ๏ธ Method 3: Installation from GitHub

Option A โ€“ CLI only:

pipx install git+https://github.com/Santitub/WPAT.git

Option B โ€“ With GUI support:

pipx install 'git+https://github.com/Santitub/WPAT.git#egg=wpat[gui]'

โš™๏ธ Method 4: Installation from source (development mode)

Ideal for contributors or developers.

git clone https://github.com/Santitub/WPAT.git
cd WPAT
pip install ".[gui]"

๐Ÿณ Method 5: Installation with Docker

# Download the official WPAT image
sudo docker pull santitub/wpat

# Run WPAT in Docker container
sudo docker run -it --rm santitub/wpat

๐Ÿ“Œ System Requirements

  • Python 3.8 or higher
  • pip / pipx
  • Internet access for updates
  • Desktop environment if using the GUI (PyQt5)

๐Ÿ“š Dependencies

These are the libraries required for WPAT to work properly:

  • colorama โ€” Console color system
  • requests โ€” Advanced HTTP requests
  • beautifulsoup4 โ€” HTML parser
  • tqdm โ€” Interactive progress bars
  • pyqt5 โ€” GUI support
  • PyQtWebEngine โ€” Web rendering engine embedded in the GUI
  • urllib3 โ€” Advanced HTTP connection handling

๐Ÿ–ฅ๏ธ Usage

# From pip/pipx
wpat / wpat --gui

# From Docker
docker run -it --rm santitub/wpat

# From GUI
python main.py --gui

Workflow:

  1. Enter the target URL
  2. Select modules from the interactive menu or GUI
  3. Analyze real-time results with clean output
  4. Review detailed logs in /logs

Main Menu:

[1] Detect User Enumeration       [97] Full Audit
[2] Analyze XML-RPC               [98] Generate Wordlists
[3] Sensitive Files Scanner       [99] Exit
[4] Detect WordPress Version
[5] Audit REST API
[6] Plugin Scanner
[7] Theme Scanner 
[8] Brute Force on Login
[9] Check SSL Certificate
[10] Check Security.txt
[11] Check CORS

๐Ÿ“‚ Project Structure

WPAT/
โ”œโ”€โ”€ main.py             # Main script
โ”œโ”€โ”€ gui.py              # Graphical Interface (new)
โ”œโ”€โ”€ requirements.txt    # Dependencies
โ”œโ”€โ”€ logs/               # Audit logs
โ”œโ”€โ”€ wordlists/          # Generated official wordlists
โ””โ”€โ”€ scripts/            # Audit modules
    โ”œโ”€โ”€ __init__.py
    โ”œโ”€โ”€ ssl_checker.py
    โ”œโ”€โ”€ cors_detector.py          
    โ”œโ”€โ”€ user_enumeration.py
    โ”œโ”€โ”€ xmlrpc_analyzer.py
    โ”œโ”€โ”€ sensitive_files.py
    โ”œโ”€โ”€ wp_version.py
    โ”œโ”€โ”€ rest_api_analyzer.py
    โ”œโ”€โ”€ security_txt.py           
    โ”œโ”€โ”€ plugin_scanner.py
    โ”œโ”€โ”€ theme_scanner.py
    โ””โ”€โ”€ brute_force.py
    โ””โ”€โ”€ html_report.py           # New

๐Ÿ†• What's New in v2.1

  • ๐Ÿงพ New HTML report module
  • โš™๏ธ Improved module request handling

๐Ÿ“œ License and Ethics

Distributed under the GPL-3.0 license. See LICENSE for details.

โš ๏ธ Ethical Use Note: This software should only be used on systems with explicit permission from the owner. It includes advanced features that may be considered intrusive if used without authorization. Misuse is the sole responsibility of the end user.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wpat-2.1.tar.gz (35.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wpat-2.1-py3-none-any.whl (41.7 kB view details)

Uploaded Python 3

File details

Details for the file wpat-2.1.tar.gz.

File metadata

  • Download URL: wpat-2.1.tar.gz
  • Upload date:
  • Size: 35.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for wpat-2.1.tar.gz
Algorithm Hash digest
SHA256 51d04158cf2a1361541218e61b49fe39b97d1d332b5783a874c975668f512f19
MD5 0bca80081ea173933134598b619155c7
BLAKE2b-256 e8b90a83fb62f65a1d9944850de29c884d6da64ba66a4333510343749428435c

See more details on using hashes here.

File details

Details for the file wpat-2.1-py3-none-any.whl.

File metadata

  • Download URL: wpat-2.1-py3-none-any.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for wpat-2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e45e39762f3e44e0fb2dd02c6c29cef27cc74d0e2f7ec7db1404a1430e7d859d
MD5 548e3638b9b4c95b514562d82e3603f0
BLAKE2b-256 163dd9dd75c5aba32b133a6b349887c069559b4fe3a49543ef20aec536f3753e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page