Back to skill

Security audit

API 探针

Security checks across malware telemetry and agentic risk

Overview

The skill is a coherent API testing helper, but it can generate or run mutating, load, and security tests against user-supplied APIs without strong upfront safeguards.

Install only if you intend to use it on APIs you own or are authorized to test. Before allowing an agent to run generated tests, confirm the target environment, avoid production for load/security/destructive tests, replace sample credentials with test-only secrets, and review any generated POST/PUT/DELETE or imported Postman/cURL workflows.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Excessive AgencyUnrestricted Tool Access, Autonomous Decision Making, Scope Creep
Findings (3)

Missing User Warnings

Medium
Confidence
81% confidence
Finding
The skill includes examples and workflows for state-changing and destructive API actions such as POST, PUT, DELETE, and performance/security testing, but does not prominently warn operators about production impact. In an agentic context, omission of such guardrails can lead to accidental data deletion, account creation/modification, or disruptive load against live systems.

External Transmission

Medium
Category
Data Exfiltration
Content
def get_token(self):
        """获取认证 Token"""
        response = requests.post(f"{self.base_url}/auth/login", json={
            "username": "testuser",
            "password": "Test1234"
        })
Confidence
84% confidence
Finding
requests.post(f"{self.base_url}/auth/login", json=

External Script Fetching

High
Category
Supply Chain
Content
| Swagger/OpenAPI 文档 | JSON/YAML 格式 | 解析接口定义,生成测试用例 |
| 接口文档 | Markdown/HTML | 提取接口信息,构建测试 |
| 接口地址 | URL + 方法 | 直接发起请求测试 |
| cURL 命令 | shell 命令 | 解析并转换为测试脚本 |
| Postman Collection | JSON 导出 | 导入并执行测试 |

### 2. 接口测试框架
Confidence
90% confidence
Finding
cURL 命令 | sh

VirusTotal

64/64 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

No suspicious patterns detected.