Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 954 Bytes

File metadata and controls

31 lines (27 loc) · 954 Bytes

ReconScript Demo Checklist

  1. CLI HTML run

    python3 -m venv .venv && source .venv/bin/activate
    pip install --no-deps .[dev]
    python -m reconscript --target 127.0.0.1 --ports 3000
    • Expect results/127-0-0-1-*.html to open automatically in the default browser.
  2. Web UI walk-through

    python web_ui.py
    • Browse to http://127.0.0.1:5000/
    • Submit target 127.0.0.1 and ports 3000.
    • Wait for completion and open the HTML link provided.
  3. Docker Compose pairing with Juice Shop

    docker-compose up
  4. Optional PDF verification

    docker build --build-arg INCLUDE_PDF=true -t reconscript:pdf .
    • Run the image to confirm PDF generation succeeds when dependencies are bundled.