Codebase list cmseek / c1c87701-bc0b-4ee5-9760-7c69279c3981/main Dockerfile
c1c87701-bc0b-4ee5-9760-7c69279c3981/main

Tree @c1c87701-bc0b-4ee5-9760-7c69279c3981/main (Download .tar.gz)

Dockerfile @c1c87701-bc0b-4ee5-9760-7c69279c3981/mainraw · history · blame

FROM python:3-alpine

LABEL name CMSeeK
LABEL src "https://github.com/Tuhinshubhra/CMSeeK"
LABEL creato Tuhinshubhra
LABEL dockerfile_maintenance khast3x
LABEL desc "CMS Detection and Exploitation suite - Scan WordPress, Joomla, Drupal and 130 other CMSs."


RUN apk add --no-cache git py3-pip && git clone https://github.com/Tuhinshubhra/CMSeeK

WORKDIR CMSeeK
RUN pip install -r requirements.txt
ENTRYPOINT [ "python", "cmseek.py" ]