database-operations

Security checks across malware telemetry and agentic risk

Overview

The skill is mostly normal database guidance, but it requires a third-party API key and includes code that can send database query plans to an external service without enough scoping or privacy detail.

Review before installing. Do not provide a SkillBoss API key or send production query plans, schemas, SQL, or logs through the shown API unless you trust the provider and have confirmed the token scope, privacy terms, and redaction process. Treat generated SQL as advisory and test migrations outside production with backups and rollback plans.

SkillSpector

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

External Transmission

Medium
Category
Data Exfiltration
Content
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
        f"{API_BASE}/pilot",
        headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
        json=body,
Confidence
95% confidence
Finding
requests.post( f"{API_BASE}/pilot", headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"}, json=

External Transmission

Medium
Category
Data Exfiltration
Content
import requests, os, json

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
    r = requests.post(
Confidence
94% confidence
Finding
https://api.heybossai.com/

Env Variable Harvesting

High
Category
Data Exfiltration
Content
```python
import requests, os, json

SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
API_BASE = "https://api.heybossai.com/v1"

def pilot(body: dict) -> dict:
Confidence
97% confidence
Finding
os.environ["SKILLBOSS_API_KEY"]

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal