WordPress User Enumeration Tool
A simple Python script that enumerates user accounts on WordPress sites by querying the REST API endpoint.
- Automatically normalizes domain names (adds https:// and www. if needed)
- Checks for required dependencies (curl and jq)
- Extracts and displays WordPress user slugs from the API response
- Provides clear error messages for common issues
- Python 3.x
- curl (command-line tool)
- jq (JSON processor)
Ubuntu/Debian:
sudo apt-get install curl jqmacOS:
brew install curl jq- Clone or download the script
- Run the script:
python3 wpus3r.py- Enter the target domain when prompted (e.g.,
example.com)
$ python3 wpus3r.py
Enter the domain (e.g., example.com): example.com
Connecting...
Data retrieved successfully.
-----------------------------------------------
User found:
1. admin
2. editor
3. authorThis tool is for educational and security assessment purposes only. Only use it on websites you own or have permission to test.
This project is provided for educational purposes.