Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scanner/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Runs Semgrep, Trivy, and Gitleaks on a repository
"""

import logging
import os
import sys
import json
Expand All @@ -19,6 +20,9 @@
from pathlib import Path
from concurrent.futures import ThreadPoolExecutor, as_completed

logging.basicConfig(level=logging.INFO, format="%(levelname)s: %(message)s")
logger = logging.getLogger("vibeship-scanner")

SEVERITY_MAP = {
'CRITICAL': 'critical',
'HIGH': 'high',
Expand Down