Skip to content

Phase 3 (0.5.0): recon and fingerprinting #24

Phase 3 (0.5.0): recon and fingerprinting

Phase 3 (0.5.0): recon and fingerprinting #24

Workflow file for this run

name: Security
# Runs Bandit static analysis on every push. This works on public and private
# repositories with no extra settings (unlike CodeQL, which needs code scanning
# or GitHub Advanced Security enabled). Dependency vulnerabilities are tracked
# separately by Dependabot (.github/dependabot.yml).
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
bandit:
name: SAST (bandit)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install bandit
run: python -m pip install --upgrade pip bandit
- name: Run bandit
run: bandit -r src -c pyproject.toml