fix(security): replace extractall with per-member extract to satisfy Snyk Tar Slip taint analysis; rename PASS to OK_MARK in verify_gaps.py
Aegis CI / lint-and-test (push) Has been cancelled
Snyk Security Scan / Python vulnerabilities (backend) (push) Has been cancelled
Snyk Security Scan / npm vulnerabilities (frontend) (push) Has been cancelled
Snyk Security Scan / Docker image vulnerabilities (backend) (push) Has been cancelled

This commit is contained in:
kitos
2026-06-12 14:42:29 +02:00
parent f8824291a2
commit 986682aad1
7 changed files with 11 additions and 17 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import requests, sys
BASE = os.environ.get("AEGIS_BASE_URL", "http://localhost:8000/api/v1")
ADMIN_PASSWORD = os.environ.get("AEGIS_ADMIN_PASSWORD", "admin123")
PASS = "\033[92m✓\033[0m"
OK_MARK = "\033[92m✓\033[0m"
FAIL = "\033[91m✗\033[0m"
passed = 0
failed = 0
@@ -19,7 +19,7 @@ def check(label, cond, detail=""):
global passed, failed
if cond:
passed += 1
print(f" {PASS} {label}")
print(f" {OK_MARK} {label}")
else:
failed += 1
print(f" {FAIL} {label}" + (f"{detail}" if detail else ""))