AI-assisted code sanitization scanner with OWASP ASVS, NIST 800-53, and ASD STIG compliance mapping.
Reason this release was yanked:
temporarily private
Project description
Sanicode
Sanicode scans Python, JavaScript/TypeScript, and PHP codebases for input validation and sanitization gaps using taint analysis and a data flow knowledge graph, then maps every finding to OWASP ASVS 5.0, NIST 800-53, ASD STIG v4r11, and PCI DSS 4.0. Output formats include SARIF (for GitHub Code Scanning), JSON, Markdown, and an HTML dashboard with an interactive knowledge graph.
Unlike pattern-only tools like Bandit or Semgrep, sanicode traces tainted data from source to sink across function boundaries, so findings carry context about how untrusted input reaches a dangerous call and whether sanitization exists along the path.
Install
pip install sanicode
Requires Python 3.10+.
Quick start
Scan a codebase and generate a Markdown report:
sanicode scan .
Generate SARIF output for CI integration:
sanicode scan . -f sarif
Generate an HTML dashboard with an interactive knowledge graph:
sanicode scan . -f html
Generate a DISA STIG Viewer checklist for ATO packages:
sanicode scan . -f stig-checklist
Fail the build if high-severity findings exist:
sanicode scan . --fail-on high
Reports are written to sanicode-reports/ by default.
CI/CD integration
GitHub Action
- uses: rdwj/sanicode@v0
with:
path: .
fail-on: high
format: sarif
Pre-commit hook
# .pre-commit-config.yaml
repos:
- repo: https://github.com/rdwj/sanicode
rev: v0.4.0
hooks:
- id: sanicode
See docs/ci-cd-integration.md for GitLab CI, Jenkins, Azure DevOps, and Tekton/OpenShift Pipelines.
API server
Start the FastAPI server for remote or hybrid scan mode:
sanicode serve
This starts on port 8080 with Prometheus metrics at /metrics.
Endpoints
POST /api/v1/scan Submit a scan (async)
GET /api/v1/scan/{id} Poll scan status
GET /api/v1/scan/{id}/findings Retrieve findings (JSON or ?format=sarif)
GET /api/v1/scan/{id}/graph Retrieve knowledge graph
POST /api/v1/analyze Instant snippet analysis
GET /api/v1/compliance/map Compliance framework lookup
GET /api/v1/health Liveness check
GET /metrics Prometheus metrics
CLI commands
sanicode scan . # Scan codebase, generate reports
sanicode scan . -f sarif # SARIF output
sanicode scan . -f json -f sarif # Multiple formats
sanicode scan . -f html # HTML dashboard with interactive graph
sanicode scan . --fail-on high # Exit non-zero on high+ findings
sanicode serve # Start API server on :8080
sanicode report scan-result.json # Re-generate reports from saved results
sanicode report scan-result.json -s high # Filter by severity
sanicode report scan-result.json --cwe 89 # Filter by CWE
sanicode config setup # Interactive provider configuration wizard
sanicode config set llm.fast.model granite-nano # Script-friendly config
sanicode config test # Test configured LLM tiers
sanicode config --show # Show resolved configuration
sanicode config --init # Create starter sanicode.toml
sanicode graph . --export graph.json # Export knowledge graph
sanicode graph . --visualize graph.html # Standalone graph visualization
sanicode rules --list # List all detection rules
sanicode rules --validate custom.yaml # Validate custom rule file
sanicode benchmark # Benchmark against Bandit and Semgrep
sanicode scan . -f stig-checklist # STIG Viewer checklist (.ckl) + summary
sanicode report scan-result.json -f stig-checklist # STIG checklist from saved results
sanicode validate-llm # Benchmark LLM pipeline quality (precision/recall/F1 deltas)
Detection rules
21 built-in rules across three languages:
Python (10 rules, SC001–SC010): path traversal, OS command injection, XSS, SQL injection, code injection, weak cryptography, insecure random, deserialization, hardcoded credentials, SSRF.
JavaScript/TypeScript (6 rules, SC200–SC205): path traversal, OS command injection, XSS, weak cryptography, insecure random, hardcoded credentials.
PHP (5 rules, SC100–SC104): OS command injection, XSS, SQL injection, deserialization, hardcoded credentials.
Custom YAML rules extend this set. Place rule files in rules/ in your project root or ~/.config/sanicode/rules/, and validate with sanicode rules --validate.
Custom rules
id: CUSTOM001
cwe_id: 78
severity: high
pattern:
targets: [python]
ast_pattern: "call:subprocess.run"
args:
shell: "True"
Rule files are discovered from rules/ in the project root and ~/.config/sanicode/rules/. Run sanicode rules --validate custom.yaml to check syntax before deploying.
Taint analysis
Sanicode performs dataflow-aware taint tracking at two levels:
- Intra-procedural: reaching-definitions analysis within each function body.
- Inter-procedural: function summaries propagated across the call graph.
Taint paths produce high-confidence edges in the knowledge graph, giving the LLM (and human reviewers) evidence of whether untrusted data actually reaches a sink.
Compliance frameworks
Findings map to four frameworks, covering 54 CWEs:
- OWASP ASVS 5.0 — V1: Encoding and Sanitization requirements (L1/L2/L3)
- NIST 800-53 — SI-10 (Information Input Validation), SI-15 (Information Output Filtering), and related controls
- ASD STIG v4r11 — APSC-DV-002510 (CAT I), APSC-DV-002520 (CAT II), APSC-DV-002530 (CAT II), and related checks. Use
--format stig-checklistto output a DISA STIG Viewer.cklfile with findings mapped directly to ASD STIG v4r11 checklist items, suitable for submission to STIG assessors. - PCI DSS 4.0 — Requirement 6 (Develop and Maintain Secure Systems and Software)
Configuration
Create a config file:
sanicode config --init
This writes a sanicode.toml in the current directory. Config is loaded from (in order):
--configflagsanicode.tomlin the current directory~/.config/sanicode/config.toml
Sanicode works fully without any configuration. LLM tiers are optional — without them, the tool runs in degraded mode using AST pattern matching, taint analysis, knowledge graph construction, and compliance lookups. LLM integration adds context-aware reasoning on top of these.
LLM tiers (optional)
The config supports three tiers for different task complexities. Supported providers include cloud APIs (Anthropic, OpenAI, Google, Azure) and self-hosted inference (vLLM, Ollama, OpenShift AI). Run sanicode config setup for an interactive wizard that walks through provider selection and endpoint configuration.
| Tier | Purpose | Recommended model |
|---|---|---|
fast |
Classification, severity scoring | Granite Nano, Mistral 7B |
analysis |
Data flow context, taint reasoning | Granite Code 8B |
reasoning |
Compliance mapping, graph exploitability | Llama 3.1 70B |
Current status
v0.4.0 — LLM validation benchmark (precision/recall/F1 at each pipeline tier), DISA STIG Viewer checklist (.ckl) output for ATO packages, STIG asset metadata configuration, plus everything from v0.3: multi-language scanning (Python, JavaScript/TypeScript, PHP), 21 built-in detection rules, intra- and inter-procedural taint analysis, LLM graph reasoning, 54-CWE compliance database, GitHub Action and pre-commit hook, custom YAML rules, and CI/CD integration guides.
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sanicode-0.4.0.tar.gz.
File metadata
- Download URL: sanicode-0.4.0.tar.gz
- Upload date:
- Size: 295.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f82a710852f990ba37d1d88769a0c32d7eb1e3f134a3f9318924f7dd82b0d34a
|
|
| MD5 |
adefa7f385f2456ef811e7eb035b1faf
|
|
| BLAKE2b-256 |
19af993dece0b04e215b6f0edd9e9464dfaf1bb09ff66d81c3cf32bf087e6556
|
Provenance
The following attestation bundles were made for sanicode-0.4.0.tar.gz:
Publisher:
release.yml on rdwj/sanicode
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sanicode-0.4.0.tar.gz -
Subject digest:
f82a710852f990ba37d1d88769a0c32d7eb1e3f134a3f9318924f7dd82b0d34a - Sigstore transparency entry: 977086871
- Sigstore integration time:
-
Permalink:
rdwj/sanicode@34d31bdec73fd06c21f68742bfd390ca408f4d9f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/rdwj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@34d31bdec73fd06c21f68742bfd390ca408f4d9f -
Trigger Event:
push
-
Statement type:
File details
Details for the file sanicode-0.4.0-py3-none-any.whl.
File metadata
- Download URL: sanicode-0.4.0-py3-none-any.whl
- Upload date:
- Size: 189.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf2a21db770f70e3b5d7238fbe7c25e14f26eef4716f8aa77d7c0fab0e779611
|
|
| MD5 |
845af13b89348b01184c72e55ebc3eba
|
|
| BLAKE2b-256 |
667837a77975c9eecc041645b9a61b43f3b46ca90232d1832236d59a28184ecf
|
Provenance
The following attestation bundles were made for sanicode-0.4.0-py3-none-any.whl:
Publisher:
release.yml on rdwj/sanicode
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sanicode-0.4.0-py3-none-any.whl -
Subject digest:
bf2a21db770f70e3b5d7238fbe7c25e14f26eef4716f8aa77d7c0fab0e779611 - Sigstore transparency entry: 977086884
- Sigstore integration time:
-
Permalink:
rdwj/sanicode@34d31bdec73fd06c21f68742bfd390ca408f4d9f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/rdwj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@34d31bdec73fd06c21f68742bfd390ca408f4d9f -
Trigger Event:
push
-
Statement type: