blairy/wpscan

By blairy

Updated about 1 hour ago

WPScan - Word Press vulnerability scanner. Current Scratch Image

Image
Security
Developer Tools
0

1.1K

Usage:

sudo docker run blairy/wpscan
sudo docker run blairy/wpscan --update
sudo docker run blairy/wpscan --help

Dockerfile

FROM alpine:latest

# Install Utilities
RUN apk update && apk upgrade && \
    apk add --no-cache \
    build-base \
    curl \
    ruby \
    ruby-nokogiri \
    ruby-dev \
    linux-headers
    
# Install Wpscan
RUN gem update --system && \
    gem install wpscan && \
    wpscan --update

# Create scratch image
FROM scratch
COPY --from=0 /usr/bin/ /usr/bin/
COPY --from=0 /bin/ /bin/
COPY --from=0 /usr/lib/ /usr/lib/
COPY --from=0 /lib/ /lib/
COPY --from=0 /etc/ssl /etc/ssl

ENTRYPOINT ["/usr/bin/wpscan"]

Docker Pull Command

docker pull blairy/wpscan