live · scanning repos
Scanrepo
github.com
DANGER
malware detected
github.com / cmu-agents

cmu-agents/assignment-1

Python·46 files·commit 67498d8·scanned 1h ago·cached ✓
70/100
DANGEROUS
Sensitive capability combinations reachable from entry points. Do not run without review.

This repository contains patterns associated with malware. Do NOT run this code.

verdict accurate?
Created 24 days ago
Created 24 days ago
threat-state: dangerouslive

FINDINGS ░▒▓

criticalPython dynamic code executioneval(), exec() or compile() on untrusted input can execute arbitrary code. Common in Python malware for running obfuscated payloads.src/assignment/sandbox_python.py
        try:
            exec(compile(code, "<agent-python>", "exec"), namespace, namespace)
        except BaseException as exc:
            error = f"{type(exc).__name__}: {exc}"
+7
infoSuspicious files are not reachable from entry pointsFlagged files exist but are not imported by any entry point. They may be dead code, tests, or attack payloads triggered by another mechanism.+2
criticalPython base64 payload executionDecoding a base64 blob and passing it to exec()/compile() is a common obfuscation technique in Python malware.src/assignment/sandbox_python.py
    port, encoded = sys.argv[1], sys.argv[2]
    code = base64.b64decode(encoded).decode()
    client = httpx.Client(base_url=f"http://127.0.0.1:{port}", timeout=30)
+8

Scores are heuristics. A “safe” verdict means no known-malicious patterns were found — clever malware can look boring. Wrong verdict? Flag it above; confirmed false positives become regression tests.

29 files scanned @ 67498d8 | 9/25/2026 | heuristic scan — always review manually

risk by category
code execution9
network & exfiltration0
file system access0
obfuscation8
supply chain0
owasp / injection0
telemetry
files 29/46rules hit 3engine v6commit 67498d8

github

cmu-agents/assignment-1

Python
76
71
24d
46 files
29 scanned(63%)
67498d8

architecture░▒▓

entry (0) flagged (1) pkg (53)
79 nodes · 137 edgesscroll to zoom · click node to jump to finding