Security Sentinel Ultimate

👤 liverock 📦 v0.3.0 ⭐ 4.2 ⬇️ 530 下载
🔒 IT运维与安全 免费

📖 技能介绍


name: security-sentinel-ultimate description: Scans a skill directory for security issues and best practices tools: - name: scan_skill description: Analyzes a skill directory for security vulnerabilities, misconfigurations, and compliance with best practices. arguments: - name: path description: The file path to the skill directory to scan. type: string required: true execution: command: python3 {{SKILL_DIR}}/scanner.py "{{path}}" output_format: markdown


Security Sentinel

Scans a skill directory for security issues, misconfigurations, and best practices.

What It Detects

Category Examples Severity
Dangerous calls (critical) os.system, eval, exec 🔴 Critical
Dangerous calls (warning) subprocess.run, os.popen 🟡 Warning
Hardcoded secrets API keys, tokens, passwords, credentials in string literals 🔴 Critical
Network calls requests.get, urllib.request.urlopen, http.client 🟡 Warning
Obfuscation getattr indirection, __import__/importlib dynamic loading, chr()-encoded strings 🔴 Critical
Hidden files Files and directories starting with . (e.g. .env, .hidden_script.py) 🟡 Warning

Severity Model

The scanner uses a three-tier severity system:

Status Meaning
🔴 CRITICAL Immediate security risk — hardcoded secrets, eval/exec, os.system, obfuscation detected. Requires urgent review.
🟡 WARNING Potential risk — subprocess usage, network calls, hidden files. Review recommended.
🟢 OK No findings. File is clean.

Each file gets an individual severity rating. The overall status is the highest severity across all files — if even one file is red, the entire scan is marked CRITICAL.

Obfuscation Defenses (Defensive Depth)

The scanner catches three common bypass techniques:

  1. getattr indirectiongetattr(os, 'system')('whoami') is flagged because the second argument resolves to a known dangerous attribute name.

    7w4.net提供免费和付费技能下载。

  2. Dynamic imports__import__('subprocess') and importlib.import_module('subprocess') are both detected and flagged as dangerous module loads.
  3. String construction — Secrets built via concatenation (key = "sk-" + "abcd...") or chr() sequences are resolved at scan time and matched against secret patterns.

Usage

The scan_skill tool accepts a path argument pointing to a skill directory. It runs scanner.py against all .py files in that directory tree and returns a Markdown report with tables of findings grouped by file and category.

🤖 AI 评测

这是一款质量较高的安全扫描工具,核心检测能力扎实,能有效识别代码中的危险函数、硬编码密钥和混淆代码,报告清晰易读。不过目前只支持 Python 扫描,覆盖面有限,且缺少自定义检测规则的灵活性。对于需要扫描多种语言或复杂代码库的用户来说,适用性会打折扣。

📊 多维度评分

适应性4.5
规范性4
有效性4.5
可靠性4
可信度4.3

📁 包含文件 (3 个)

📄 SKILL.md 2.6 KB
📄 _meta.json 145 B
📄 scanner.py 21.1 KB