This is a simple Bash script to run WPScan using Docker. It ensures the latest WPScan image is pulled and provides an interactive prompt for entering the target URL and additional parameters.
- Docker installed on your system.
- Internet connection to pull the latest WPScan image.
- Clone this repository:
git clone https://github.com/daaaaaaanyyyyy/wpscan-docker.git cd wpscan-docker
- Make the script executable:
chmod +x wpscan-docker.sh
-
Run the script:
./wpscan-docker.sh
-
Example Usage
Show available parameters? (y/n): y (Displays parameter help...) Enter the target URL (e.g., https://example.com): https://www.example.com Enter additional parameters (space-separated): --enumerate vp vt --stealthy Running command: docker run -it --rm wpscanteam/wpscan --url https://example --enumerate vp vt --stealthy
- Ensures the latest WPScan Docker image is used.
- Interactive prompts for user input.
- Supports additional WPScan parameters.