A program that checks wordpress vulnerabilities using the wordfence API.
Find a file
2022-02-22 19:11:31 -06:00
.gitignore added a container wrapper around wordpress vuln db 2022-02-22 19:11:31 -06:00
check_wp_vuln.sh added a container wrapper around wordpress vuln db 2022-02-22 19:11:31 -06:00
docker-compose.yml added a container wrapper around wordpress vuln db 2022-02-22 19:11:31 -06:00
Dockerfile added a container wrapper around wordpress vuln db 2022-02-22 19:11:31 -06:00
README.md added a container wrapper around wordpress vuln db 2022-02-22 19:11:31 -06:00

docker_wordpress_scanner

This is a docker-compose ecosystem that will install a specific target wordpress version in a webserver and then run wpscan against and output the vulnerabilities. It is meant to be used as a quick way to scan a target wordpress version from its base

Usage:

Create a .env file with the following envar

WPSCANDB_API_TOKEN=

this token is used for wpscan db api calls. To use the container:

# PLUGIN
docker run --env-file .env wp_checker --plugin jetpack

# THEME
docker run --env-file .env wp_checker --theme zerif-lite

# VERSION - Example checks version 4.9.4
docker run --env-file .env wp_checker --all 494