SAST Scanning
Static Application Security Testing - scan your source code for vulnerabilities using 15+ open source tools.FREE
Integrated Tools
Semgrep
Pattern-based code analysis for 30+ languages
Bandit
Python security linter
Trivy
Vulnerability scanner for containers, IaC, dependencies
Gitleaks
Secret detection in git repos
Checkov
Infrastructure as Code scanner
Hadolint
Dockerfile linter
ESLint Security
JavaScript/TypeScript security rules
TruffleHog
High-entropy secret detection
+ More
tfsec, Kubescape, npm audit, pip-audit...
Quick Start
# Install CLI
pip install codephreak-security-auditor
# Scan current directory
codephreak scan
# Scan specific path
codephreak scan --target ./src
# Quick scan (faster, fewer tools)
codephreak scan --workflow quick-check
# Full audit (comprehensive)
codephreak scan --workflow full-auditOutput Formats
Generate reports in multiple formats for different use cases:
# JSON output (default)
codephreak scan --format json --output results.json
# SARIF format (GitHub Code Scanning compatible)
codephreak scan --format sarif --output results.sarif
# Multiple formats
codephreak scan --format json --format sarif --format htmlSample Output
$ codephreak scan --target ./myapp
๐ CodePhreak Security Auditor v1.0.0
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Running security scan on: ./myapp
Workflow: full-audit
[1/6] Running Semgrep... โ 12 findings
[2/6] Running Bandit... โ 3 findings
[3/6] Running Trivy... โ 8 findings
[4/6] Running Gitleaks... โ 2 findings
[5/6] Running Checkov... โ 5 findings
[6/6] Running Hadolint... โ 1 finding
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
SCAN SUMMARY
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Severity โ Count โ
โกโโโโโโโโโโโโโโโโโโโโโฉ
โ Critical โ 2 โ
โ High โ 8 โ
โ Medium โ 15 โ
โ Low โ 6 โ
โโโโโโโโโโโโโโดโโโโโโโโ
๐ Report saved: ./codephreak_report.jsonCI/CD Integration
Integrate into your CI/CD pipeline with exit codes and thresholds:
# GitHub Actions
- name: Security Scan
run: |
pip install codephreak-security-auditor
codephreak scan --fail-on critical high
# GitLab CI
security_scan:
script:
- pip install codephreak-security-auditor
- codephreak scan --format sarif --output gl-sast-report.sarif
artifacts:
reports:
sast: gl-sast-report.sarifFail Thresholds
# Fail on critical only
codephreak scan --fail-on critical
# Fail on critical or high
codephreak scan --fail-on critical --fail-on high
# Fail on any finding
codephreak scan --fail-on critical --fail-on high --fail-on medium --fail-on lowFree Tier Includes
- โ15+ integrated security tools
- โJSON and SARIF report generation
- โCI/CD pipeline integration
- โLocal execution (no data leaves your machine)
- โUnlimited scans
- โOpen source forever
Want More?
Upgrade to Premium for CSPM, DAST, Runtime Protection, Compliance Mapping, and more.
View Pricing โ