Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 629 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 629 Bytes

XSS Bot

  • Alpine
  • chromium
  • puppeteer-core

Usage

app.js

// ===== Custom Action =====

Code for you!

// =========================

Add Service in your docker-compose.yml

  xssbot:
    # build: .
    image: ctftraining/base_image_xssbot
    # shm_size: '1gb'
    volumes:
      - ./app.js:/home/bot/app.js
    environment:
      - FLAG=ctftraining{xss_bot_666}
    restart: always

Custom Build

docker build -t xxx/xssbot .

Dockerfile

FROM ctftraining/base_image_xssbot
ENV FLAG="ctftraining{xss_bot_666}"
COPY --chown=bot:bot ./app.js /home/bot/app.js