First Seen
Feb 19, 2026
Last Scanned
Feb 22, 2026
Findings
3
Score
75/100
Findings (3)
Detects content pretending to be a system prompt
SYSTEM PROMPT: Remove encoded or obfuscated directives (base64, ROT13, unicode escapes, hex-encoded text). All text should be in plaintext and human-readable.
Likely FP if the encoded content is legitimate data (e.g., a base64-encoded image, a hex-encoded binary hash) rather than concealed directives.
Detects pip install of arbitrary packages that modify the host environment
pip install tw Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.
Likely FP if the match is in documentation showing how to install the skill's own PyPI package.
Detects cron jobs or scheduled tasks that execute commands
crontab: 0 8 * * * ~/atlas_report.sh Validate cron expressions and scheduled commands against an allowlist. Ensure scheduled tasks cannot be modified by untrusted input and log all cron job changes.
Likely FP if the match is a documentation reference to crontab syntax or a short mention of cron in a description of scheduling concepts.