Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 434 Bytes

File metadata and controls

28 lines (22 loc) · 434 Bytes

Installation Guide

Prerequisites

  • Python 3.11+
  • pip

Setup

git clone <repo-url>
cd VScanX
python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate
pip install --upgrade pip
pip install -r requirements.txt

Quick run

python vscanx.py -t http://example.com -s mixed --format html,json

Development checks

ruff check .
pytest --maxfail=1 --disable-warnings