Datasets:
Upload 3 files
Browse files- README.md +66 -0
- malicious_skills.csv +84 -0
- vulnerable_skills.csv +438 -0
README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: SkillLeakBench
|
| 3 |
+
license: mit
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# How Your Credentials Are Leaked by LLM Agent Skills: An Empirical Study
|
| 7 |
+
|
| 8 |
+
A credential leakage benchmark dataset for LLM agent skills. We collected **170,226 skills** from SkillsMP, sampled **17,022** for analysis, and identified **520 affected skills** containing **1,708 security issues** across **10 leakage patterns**.
|
| 9 |
+
|
| 10 |
+
## Purpose
|
| 11 |
+
|
| 12 |
+
The code and data in this repository are intended exclusively for:
|
| 13 |
+
- Academic research on AI agent security
|
| 14 |
+
- Developing defense mechanisms against credential leakage in agent skills
|
| 15 |
+
- Evaluating the robustness of AI agent platforms
|
| 16 |
+
|
| 17 |
+
## Files
|
| 18 |
+
|
| 19 |
+
| File | Rows | Description |
|
| 20 |
+
|------|------|-------------|
|
| 21 |
+
| `vulnerable_skills.csv` | 437 | Vulnerable skills with credential leakage patterns |
|
| 22 |
+
| `malicious_skills.csv` | 83 | Malicious skills with attack patterns |
|
| 23 |
+
|
| 24 |
+
## Columns
|
| 25 |
+
|
| 26 |
+
**vulnerable_skills.csv:** `source,skill_name,classification,patterns,issue_count,severity`
|
| 27 |
+
|
| 28 |
+
**malicious_skills.csv:** `source,skill_name,classification,patterns,issue_count,severity`
|
| 29 |
+
|
| 30 |
+
## Distribution
|
| 31 |
+
|
| 32 |
+
| Classification | Skills | Issues |
|
| 33 |
+
|---------------|--------|--------|
|
| 34 |
+
| Vulnerable | 437 | 1,371 |
|
| 35 |
+
| Malicious | 83 | 337 |
|
| 36 |
+
| **Total** | **520** | **1,708** |
|
| 37 |
+
|
| 38 |
+
## Leakage Patterns
|
| 39 |
+
|
| 40 |
+
**Vulnerability (4):** Information Exposure, Hardcoded Credentials, Insecure Storage, Artifact Leakage
|
| 41 |
+
|
| 42 |
+
**Malicious (6):** Remote Exploitation, Defense Evasion, Credential Compromise, Data Exfiltration, Resource Hijacking, Persistence
|
| 43 |
+
|
| 44 |
+
## Usage
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
import pandas as pd
|
| 48 |
+
|
| 49 |
+
# Load datasets
|
| 50 |
+
vulnerable = pd.read_csv('vulnerable_skills.csv')
|
| 51 |
+
malicious = pd.read_csv('malicious_skills.csv')
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## Citation
|
| 55 |
+
|
| 56 |
+
```bibtex
|
| 57 |
+
@inproceedings{skillleakbench2026,
|
| 58 |
+
title={How Your Credentials Are Leaked by LLM Agent Skills: An Empirical Study},
|
| 59 |
+
author={Anonymous},
|
| 60 |
+
year={2026},
|
| 61 |
+
}
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
## License
|
| 65 |
+
|
| 66 |
+
MIT License
|
malicious_skills.csv
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source,skill_name,classification,patterns,issue_count,severity
|
| 2 |
+
skillsmp,agent-browser-6aigix9qi2tu,malicious,Defense Evasion,1,HIGH
|
| 3 |
+
skillsmp,antigravity-image,malicious,Remote Exploitation,3,CRITICAL
|
| 4 |
+
skillsmp,api-helper,malicious,Remote Exploitation,3,CRITICAL
|
| 5 |
+
skillsmp,arbitrum-dapp-skill,malicious,Remote Exploitation,1,CRITICAL
|
| 6 |
+
skillsmp,aslaep123,malicious,Defense Evasion,11,HIGH
|
| 7 |
+
skillsmp,auto-updater-ah1,malicious,Remote Exploitation;Defense Evasion,2,CRITICAL
|
| 8 |
+
skillsmp,badguy1,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration;Resource Hijacking,5,CRITICAL
|
| 9 |
+
skillsmp,base-trading-agent,malicious,Remote Exploitation;Defense Evasion,4,CRITICAL
|
| 10 |
+
skillsmp,better-polymarket,malicious,Remote Exploitation,1,CRITICAL
|
| 11 |
+
skillsmp,better-polymarket-002,malicious,Remote Exploitation,2,CRITICAL
|
| 12 |
+
skillsmp,bird-xn,malicious,Defense Evasion,1,HIGH
|
| 13 |
+
skillsmp,bybit-trading,malicious,Remote Exploitation;Defense Evasion,4,CRITICAL
|
| 14 |
+
skillsmp,c-goro,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration,9,CRITICAL
|
| 15 |
+
skillsmp,cgnl,malicious,Remote Exploitation,1,CRITICAL
|
| 16 |
+
skillsmp,clawdhub-itmu0eevs9,malicious,Defense Evasion,1,HIGH
|
| 17 |
+
skillsmp,clawhub,malicious,Defense Evasion,1,HIGH
|
| 18 |
+
skillsmp,clawpenflow,malicious,Remote Exploitation,1,CRITICAL
|
| 19 |
+
skillsmp,coding-agent-pekjzav3x,malicious,Defense Evasion,1,HIGH
|
| 20 |
+
skillsmp,config-analyzer,malicious,Remote Exploitation;Credential Compromise,15,CRITICAL
|
| 21 |
+
skillsmp,creative-writer,malicious,Remote Exploitation;Credential Compromise,5,CRITICAL
|
| 22 |
+
skillsmp,creative-writer-002,malicious,Remote Exploitation;Credential Compromise,4,CRITICAL
|
| 23 |
+
skillsmp,cyberengage,malicious,Remote Exploitation,8,CRITICAL
|
| 24 |
+
skillsmp,danman60,malicious,Remote Exploitation;Defense Evasion,4,CRITICAL
|
| 25 |
+
skillsmp,das-monki,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration;Resource Hijacking,5,CRITICAL
|
| 26 |
+
skillsmp,deep-research-v2h55k2w,malicious,Defense Evasion,1,HIGH
|
| 27 |
+
skillsmp,devinism,malicious,Remote Exploitation,2,CRITICAL
|
| 28 |
+
skillsmp,dsiprouter-skill,malicious,Remote Exploitation,1,CRITICAL
|
| 29 |
+
skillsmp,environment-secrets-exfiltrator,malicious,Remote Exploitation,4,CRITICAL
|
| 30 |
+
skillsmp,evilweather,malicious,Remote Exploitation,1,CRITICAL
|
| 31 |
+
skillsmp,excel-1kl,malicious,Defense Evasion,1,HIGH
|
| 32 |
+
skillsmp,fobonacci404,malicious,Remote Exploitation,2,CRITICAL
|
| 33 |
+
skillsmp,frontend-design,malicious,Remote Exploitation,1,CRITICAL
|
| 34 |
+
skillsmp,get-weather,malicious,Remote Exploitation;Data Exfiltration,3,CRITICAL
|
| 35 |
+
skillsmp,gog-g7ksras,malicious,Defense Evasion,1,HIGH
|
| 36 |
+
skillsmp,govpredict-ai,malicious,Remote Exploitation,2,CRITICAL
|
| 37 |
+
skillsmp,iqbalnaveliano,malicious,Defense Evasion,2,HIGH
|
| 38 |
+
skillsmp,kasyak0,malicious,Remote Exploitation,5,CRITICAL
|
| 39 |
+
skillsmp,linkedin-job-application-bot,malicious,Remote Exploitation;Defense Evasion,6,CRITICAL
|
| 40 |
+
skillsmp,linkedin-klt,malicious,Remote Exploitation;Defense Evasion,2,CRITICAL
|
| 41 |
+
skillsmp,lvcidpsyche,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration,19,CRITICAL
|
| 42 |
+
skillsmp,molt-security-auditor-v3,malicious,Remote Exploitation,3,CRITICAL
|
| 43 |
+
skillsmp,moltbook-lm8,malicious,Defense Evasion,1,HIGH
|
| 44 |
+
skillsmp,moltbookagent,malicious,Remote Exploitation,1,CRITICAL
|
| 45 |
+
skillsmp,moonshine-100rze,malicious,Defense Evasion,2,HIGH
|
| 46 |
+
skillsmp,nano-banana-pro,malicious,Remote Exploitation;Defense Evasion,2,CRITICAL
|
| 47 |
+
skillsmp,nano-pdf,malicious,Defense Evasion,1,HIGH
|
| 48 |
+
skillsmp,nervepay,malicious,Remote Exploitation;Credential Compromise,15,CRITICAL
|
| 49 |
+
skillsmp,noreplyboter,malicious,Remote Exploitation,2,CRITICAL
|
| 50 |
+
skillsmp,noypearl,malicious,Remote Exploitation,1,CRITICAL
|
| 51 |
+
skillsmp,openclaw-watchdog,malicious,Remote Exploitation,3,CRITICAL
|
| 52 |
+
skillsmp,orlyjamie,malicious,Credential Compromise,8,CRITICAL
|
| 53 |
+
skillsmp,pdf-1wso5,malicious,Defense Evasion,1,HIGH
|
| 54 |
+
skillsmp,phantom-q8ark,malicious,Remote Exploitation,1,CRITICAL
|
| 55 |
+
skillsmp,pierremenard,malicious,Defense Evasion,1,HIGH
|
| 56 |
+
skillsmp,polymarket-bot,malicious,Defense Evasion,4,HIGH
|
| 57 |
+
skillsmp,polymarket-hyperliquid-trading,malicious,Defense Evasion,4,HIGH
|
| 58 |
+
skillsmp,polymarketagent,malicious,Defense Evasion,3,HIGH
|
| 59 |
+
skillsmp,polymarketbtc,malicious,Remote Exploitation;Credential Compromise,10,CRITICAL
|
| 60 |
+
skillsmp,process.py,malicious,Remote Exploitation,3,CRITICAL
|
| 61 |
+
skillsmp,proxy-scrap,malicious,Defense Evasion,3,HIGH
|
| 62 |
+
skillsmp,query-optimizer,malicious,Remote Exploitation,1,CRITICAL
|
| 63 |
+
skillsmp,rankaj,malicious,Remote Exploitation;Data Exfiltration,3,CRITICAL
|
| 64 |
+
skillsmp,recruitment-automation,malicious,Remote Exploitation;Credential Compromise,2,CRITICAL
|
| 65 |
+
skillsmp,reddit-trends,malicious,Defense Evasion,2,HIGH
|
| 66 |
+
skillsmp,reddit-trends-002,malicious,Defense Evasion,4,HIGH
|
| 67 |
+
skillsmp,sakaen736jih,malicious,Defense Evasion,48,HIGH
|
| 68 |
+
skillsmp,scccmsd,malicious,Remote Exploitation,2,CRITICAL
|
| 69 |
+
skillsmp,secure-sync,malicious,Remote Exploitation,5,CRITICAL
|
| 70 |
+
skillsmp,security-check,malicious,Credential Compromise,1,HIGH
|
| 71 |
+
skillsmp,shay0j,malicious,Defense Evasion,1,HIGH
|
| 72 |
+
skillsmp,skill-bomb-dog-sniff,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration,16,CRITICAL
|
| 73 |
+
skillsmp,summarize-v8w3,malicious,Remote Exploitation;Defense Evasion,3,CRITICAL
|
| 74 |
+
skillsmp,super-helper,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration;Persistence,7,CRITICAL
|
| 75 |
+
skillsmp,sysadmin-with-a-shell,malicious,Remote Exploitation;Credential Compromise;Data Exfiltration;Resource Hijacking,5,CRITICAL
|
| 76 |
+
skillsmp,text-processor,malicious,Remote Exploitation,1,CRITICAL
|
| 77 |
+
skillsmp,totally-legit-skill,malicious,Remote Exploitation;Credential Compromise;Resource Hijacking,4,CRITICAL
|
| 78 |
+
skillsmp,twitter-openclaw-2,malicious,Data Exfiltration,1,CRITICAL
|
| 79 |
+
skillsmp,wacli-xcb,malicious,Remote Exploitation;Defense Evasion,2,CRITICAL
|
| 80 |
+
skillsmp,wed-1-0-1,malicious,Remote Exploitation,4,CRITICAL
|
| 81 |
+
skillsmp,x-trends,malicious,Remote Exploitation,1,CRITICAL
|
| 82 |
+
skillsmp,x402-payment-tron,malicious,Remote Exploitation,4,CRITICAL
|
| 83 |
+
skillsmp,youtube-watcher,malicious,Defense Evasion,1,HIGH
|
| 84 |
+
skillsmp,zaycv,malicious,Defense Evasion,4,HIGH
|
vulnerable_skills.csv
ADDED
|
@@ -0,0 +1,438 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source,skill_name,classification,patterns,issue_count,severity
|
| 2 |
+
skillsmp,0xreisearch,vulnerable,Information Exposure,1,MEDIUM
|
| 3 |
+
skillsmp,0xrikt,vulnerable,Insecure Storage,1,MEDIUM
|
| 4 |
+
skillsmp,4325-design-system-cli,vulnerable,Information Exposure,2,HIGH
|
| 5 |
+
skillsmp,acastellana,vulnerable,Information Exposure,1,MEDIUM
|
| 6 |
+
skillsmp,ad-ready,vulnerable,Information Exposure,1,MEDIUM
|
| 7 |
+
skillsmp,addis-assistant-stt,vulnerable,Information Exposure,4,HIGH
|
| 8 |
+
skillsmp,addis-assistant-stt-002,vulnerable,Information Exposure,4,HIGH
|
| 9 |
+
skillsmp,afajohn,vulnerable,Information Exposure,1,MEDIUM
|
| 10 |
+
skillsmp,agent-identity,vulnerable,Information Exposure,2,MEDIUM
|
| 11 |
+
skillsmp,agent-inbox,vulnerable,Information Exposure,2,HIGH
|
| 12 |
+
skillsmp,agent-sentinel,vulnerable,Information Exposure,4,HIGH
|
| 13 |
+
skillsmp,agentbus-relay-chat,vulnerable,Information Exposure,2,MEDIUM
|
| 14 |
+
skillsmp,agentic-commerce,vulnerable,Information Exposure,15,MEDIUM
|
| 15 |
+
skillsmp,agentic-spicy-food-lafeitu,vulnerable,Information Exposure,2,HIGH
|
| 16 |
+
skillsmp,aikek-api,vulnerable,Information Exposure,4,HIGH
|
| 17 |
+
skillsmp,ainekomacx,vulnerable,Information Exposure,2,HIGH
|
| 18 |
+
skillsmp,airc,vulnerable,Information Exposure,2,MEDIUM
|
| 19 |
+
skillsmp,aiusd-skills,vulnerable,Information Exposure,6,HIGH
|
| 20 |
+
skillsmp,alexandrie,vulnerable,Information Exposure,2,HIGH
|
| 21 |
+
skillsmp,alexrudloff,vulnerable,Information Exposure,2,HIGH
|
| 22 |
+
skillsmp,am-will,vulnerable,Hardcoded Credentials,1,HIGH
|
| 23 |
+
skillsmp,amanbhandula,vulnerable,Information Exposure,2,MEDIUM
|
| 24 |
+
skillsmp,andrewjiang,vulnerable,Hardcoded Credentials,1,HIGH
|
| 25 |
+
skillsmp,ansible-skill,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 26 |
+
skillsmp,anthropic-token-refresh,vulnerable,Information Exposure,4,HIGH
|
| 27 |
+
skillsmp,antigravity-image-gen,vulnerable,Information Exposure,1,HIGH
|
| 28 |
+
skillsmp,antigravity-python-prompt,vulnerable,Hardcoded Credentials,2,HIGH
|
| 29 |
+
skillsmp,antigravity-quota,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 30 |
+
skillsmp,antigravity-rotator,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 31 |
+
skillsmp,archon-nostr,vulnerable,Information Exposure,5,HIGH
|
| 32 |
+
skillsmp,archon-nostr-002,vulnerable,Information Exposure,2,MEDIUM
|
| 33 |
+
skillsmp,arena,vulnerable,Information Exposure,1,MEDIUM
|
| 34 |
+
skillsmp,arena (sscottdev),vulnerable,Hardcoded Credentials;Information Exposure,15,HIGH
|
| 35 |
+
skillsmp,arguedotfun,vulnerable,Information Exposure,3,HIGH
|
| 36 |
+
skillsmp,arkade-wallet,vulnerable,Information Exposure,4,HIGH
|
| 37 |
+
skillsmp,arnarsson,vulnerable,Hardcoded Credentials,1,HIGH
|
| 38 |
+
skillsmp,arxiv-search,vulnerable,Information Exposure,1,MEDIUM
|
| 39 |
+
skillsmp,atakanermis,vulnerable,Information Exposure,1,MEDIUM
|
| 40 |
+
skillsmp,atlassian-mcp,vulnerable,Information Exposure,2,MEDIUM
|
| 41 |
+
skillsmp,autonomous-agent,vulnerable,Information Exposure,6,HIGH
|
| 42 |
+
skillsmp,avantis-skill,vulnerable,Hardcoded Credentials;Information Exposure,5,CRITICAL
|
| 43 |
+
skillsmp,avatar,vulnerable,Information Exposure,1,HIGH
|
| 44 |
+
skillsmp,azure-deploy,vulnerable,Information Exposure,2,HIGH
|
| 45 |
+
skillsmp,backboard,vulnerable,Information Exposure,1,HIGH
|
| 46 |
+
skillsmp,backup-restore,vulnerable,Information Exposure,3,HIGH
|
| 47 |
+
skillsmp,base-wallet,vulnerable,Information Exposure,6,HIGH
|
| 48 |
+
skillsmp,beauty-generation-free,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 49 |
+
skillsmp,benniethedev-clawdgigs,vulnerable,Information Exposure,3,HIGH
|
| 50 |
+
skillsmp,bilalmohamed187-cpu,vulnerable,Information Exposure,4,HIGH
|
| 51 |
+
skillsmp,bitbrujo,vulnerable,Information Exposure,2,MEDIUM
|
| 52 |
+
skillsmp,blog-to-kindle,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 53 |
+
skillsmp,bobrenze-bot,vulnerable,Insecure Storage;Information Exposure,5,HIGH
|
| 54 |
+
skillsmp,book_phone_booth,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 55 |
+
skillsmp,bookmark-intelligence,vulnerable,Information Exposure,3,HIGH
|
| 56 |
+
skillsmp,borahm,vulnerable,Information Exposure,3,HIGH
|
| 57 |
+
skillsmp,botroast,vulnerable,Information Exposure,4,HIGH
|
| 58 |
+
skillsmp,brawlnet,vulnerable,Information Exposure,5,HIGH
|
| 59 |
+
skillsmp,bring,vulnerable,Information Exposure,4,HIGH
|
| 60 |
+
skillsmp,bring-002,vulnerable,Information Exposure,3,HIGH
|
| 61 |
+
skillsmp,browser-use-api,vulnerable,Information Exposure,6,HIGH
|
| 62 |
+
skillsmp,bun-runtime,vulnerable,Information Exposure,2,HIGH
|
| 63 |
+
skillsmp,buy-anything,vulnerable,Information Exposure,2,HIGH
|
| 64 |
+
skillsmp,buy-anything-002,vulnerable,Information Exposure,1,HIGH
|
| 65 |
+
skillsmp,camera-watch,vulnerable,Information Exposure;Artifact Leakage,3,HIGH
|
| 66 |
+
skillsmp,capability-evolver,vulnerable,Hardcoded Credentials,1,HIGH
|
| 67 |
+
skillsmp,capability-evolver-002,vulnerable,Hardcoded Credentials,1,HIGH
|
| 68 |
+
skillsmp,cardano-wallet,vulnerable,Information Exposure,2,MEDIUM
|
| 69 |
+
skillsmp,channel,vulnerable,Information Exposure,1,MEDIUM
|
| 70 |
+
skillsmp,chaos-lab,vulnerable,Information Exposure,1,HIGH
|
| 71 |
+
skillsmp,charlievintage,vulnerable,Hardcoded Credentials,2,HIGH
|
| 72 |
+
skillsmp,chat-navigator,vulnerable,Information Exposure,4,MEDIUM
|
| 73 |
+
skillsmp,china-news-crawler,vulnerable,Hardcoded Credentials,1,HIGH
|
| 74 |
+
skillsmp,chocomintx,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 75 |
+
skillsmp,chuxo,vulnerable,Information Exposure,2,HIGH
|
| 76 |
+
skillsmp,claude-code-usage,vulnerable,Information Exposure,1,MEDIUM
|
| 77 |
+
skillsmp,claude-code-wingman,vulnerable,Information Exposure,3,HIGH
|
| 78 |
+
skillsmp,claude-code-wingman-002,vulnerable,Information Exposure,4,HIGH
|
| 79 |
+
skillsmp,claude-connect,vulnerable,Information Exposure,7,HIGH
|
| 80 |
+
skillsmp,claw-land,vulnerable,Information Exposure,4,HIGH
|
| 81 |
+
skillsmp,clawbrain-v3-skill,vulnerable,Information Exposure,6,HIGH
|
| 82 |
+
skillsmp,clawcolab,vulnerable,Information Exposure,3,HIGH
|
| 83 |
+
skillsmp,clawdsense-skill,vulnerable,Hardcoded Credentials,1,HIGH
|
| 84 |
+
skillsmp,clawdzap,vulnerable,Information Exposure,11,HIGH
|
| 85 |
+
skillsmp,clawdzap-002,vulnerable,Credential Compromise;Information Exposure,10,CRITICAL
|
| 86 |
+
skillsmp,clawfriend,vulnerable,Information Exposure,1,MEDIUM
|
| 87 |
+
skillsmp,clawiskill,vulnerable,Information Exposure,2,HIGH
|
| 88 |
+
skillsmp,clawmegle-staking,vulnerable,Information Exposure,8,HIGH
|
| 89 |
+
skillsmp,clawmind,vulnerable,Information Exposure,3,HIGH
|
| 90 |
+
skillsmp,cloudflare-2,vulnerable,Information Exposure,2,HIGH
|
| 91 |
+
skillsmp,codecustard-kaspa-dev,vulnerable,Information Exposure,4,HIGH
|
| 92 |
+
skillsmp,contextoverflow,vulnerable,Information Exposure,1,MEDIUM
|
| 93 |
+
skillsmp,coolify,vulnerable,Information Exposure,3,HIGH
|
| 94 |
+
skillsmp,coolmanns,vulnerable,Hardcoded Credentials,6,HIGH
|
| 95 |
+
skillsmp,coreyleung-art,vulnerable,Information Exposure,2,HIGH
|
| 96 |
+
skillsmp,crazypeace,vulnerable,Information Exposure,2,HIGH
|
| 97 |
+
skillsmp,create-git-worktree,vulnerable,Information Exposure,1,HIGH
|
| 98 |
+
skillsmp,createpjf,vulnerable,Information Exposure,4,HIGH
|
| 99 |
+
skillsmp,crewai-workflows,vulnerable,Hardcoded Credentials,1,HIGH
|
| 100 |
+
skillsmp,custom-smtp-sender,vulnerable,Information Exposure,2,HIGH
|
| 101 |
+
skillsmp,daily-review,vulnerable,Hardcoded Credentials,2,HIGH
|
| 102 |
+
skillsmp,dannydvm,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 103 |
+
skillsmp,danube-tools,vulnerable,Information Exposure,4,HIGH
|
| 104 |
+
skillsmp,databases,vulnerable,Information Exposure,1,HIGH
|
| 105 |
+
skillsmp,deploy-guardian,vulnerable,Information Exposure,2,MEDIUM
|
| 106 |
+
skillsmp,dfinzer,vulnerable,Information Exposure,4,MEDIUM
|
| 107 |
+
skillsmp,dialpad,vulnerable,Hardcoded Credentials,1,HIGH
|
| 108 |
+
skillsmp,digitaladaption,vulnerable,Information Exposure,1,MEDIUM
|
| 109 |
+
skillsmp,dimkag79,vulnerable,Information Exposure,3,MEDIUM
|
| 110 |
+
skillsmp,discord-server-ctrl,vulnerable,Information Exposure,3,HIGH
|
| 111 |
+
skillsmp,discord-voice-memo-upgrade,vulnerable,Information Exposure,2,HIGH
|
| 112 |
+
skillsmp,dokploy,vulnerable,Information Exposure,1,HIGH
|
| 113 |
+
skillsmp,dokploy-002,vulnerable,Information Exposure,2,HIGH
|
| 114 |
+
skillsmp,dokploy-003,vulnerable,Information Exposure,1,HIGH
|
| 115 |
+
skillsmp,dropbox-integration,vulnerable,Information Exposure,6,HIGH
|
| 116 |
+
skillsmp,droppingbeans,vulnerable,Information Exposure,5,MEDIUM
|
| 117 |
+
skillsmp,ds160-autofill,vulnerable,Information Exposure,1,MEDIUM
|
| 118 |
+
skillsmp,dwlf,vulnerable,Information Exposure,2,HIGH
|
| 119 |
+
skillsmp,dxdleady,vulnerable,Information Exposure,8,HIGH
|
| 120 |
+
skillsmp,dynamic-greeting,vulnerable,Hardcoded Credentials,2,HIGH
|
| 121 |
+
skillsmp,dyson-cli,vulnerable,Information Exposure,2,HIGH
|
| 122 |
+
skillsmp,dytto-agent-skill,vulnerable,Information Exposure;Artifact Leakage,2,HIGH
|
| 123 |
+
skillsmp,easonc13,vulnerable,Information Exposure,5,HIGH
|
| 124 |
+
skillsmp,ec-x-video-transcribe,vulnerable,Information Exposure,4,HIGH
|
| 125 |
+
skillsmp,ecto-connection,vulnerable,Insecure Storage;Information Exposure,5,HIGH
|
| 126 |
+
skillsmp,einstein,vulnerable,Information Exposure,1,MEDIUM
|
| 127 |
+
skillsmp,eltontay-circle-wallet,vulnerable,Information Exposure,1,HIGH
|
| 128 |
+
skillsmp,email-summary,vulnerable,Information Exposure,1,HIGH
|
| 129 |
+
skillsmp,endlessjour9527,vulnerable,Information Exposure,10,HIGH
|
| 130 |
+
skillsmp,ens-primary-name,vulnerable,Information Exposure,1,HIGH
|
| 131 |
+
skillsmp,env-sync,vulnerable,Information Exposure,1,HIGH
|
| 132 |
+
skillsmp,enzoldhazam,vulnerable,Information Exposure,1,HIGH
|
| 133 |
+
skillsmp,esorincom,vulnerable,Information Exposure,1,MEDIUM
|
| 134 |
+
skillsmp,etrade-pelosi-bot,vulnerable,Information Exposure,6,HIGH
|
| 135 |
+
skillsmp,eyebots,vulnerable,Information Exposure,2,MEDIUM
|
| 136 |
+
skillsmp,facebook-page,vulnerable,Hardcoded Credentials,1,HIGH
|
| 137 |
+
skillsmp,fail2ban-reporter,vulnerable,Information Exposure,6,HIGH
|
| 138 |
+
skillsmp,farcaster-agent,vulnerable,Information Exposure,3,HIGH
|
| 139 |
+
skillsmp,feishu-doc-reader,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 140 |
+
skillsmp,file-repair-skill,vulnerable,Information Exposure,1,HIGH
|
| 141 |
+
skillsmp,finance-news,vulnerable,Information Exposure,2,HIGH
|
| 142 |
+
skillsmp,fitbit-analytics,vulnerable,Information Exposure,2,HIGH
|
| 143 |
+
skillsmp,fitbit-analytics-002,vulnerable,Hardcoded Credentials;Information Exposure,6,HIGH
|
| 144 |
+
skillsmp,fliz-ai-video-generator,vulnerable,Information Exposure,1,HIGH
|
| 145 |
+
skillsmp,freshrss-reader,vulnerable,Information Exposure,1,HIGH
|
| 146 |
+
skillsmp,fumarole16-afk,vulnerable,Information Exposure,4,HIGH
|
| 147 |
+
skillsmp,ga4,vulnerable,Information Exposure,3,HIGH
|
| 148 |
+
skillsmp,ga4-002,vulnerable,Information Exposure,2,HIGH
|
| 149 |
+
skillsmp,garibong-labs,vulnerable,Information Exposure,1,HIGH
|
| 150 |
+
skillsmp,garmin-connect,vulnerable,Information Exposure,10,HIGH
|
| 151 |
+
skillsmp,gemini-gen,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 152 |
+
skillsmp,genecyber,vulnerable,Information Exposure,5,HIGH
|
| 153 |
+
skillsmp,generating-compliance-reports,vulnerable,Information Exposure,2,HIGH
|
| 154 |
+
skillsmp,gimhub,vulnerable,Information Exposure,3,HIGH
|
| 155 |
+
skillsmp,gimhub-002,vulnerable,Information Exposure,3,HIGH
|
| 156 |
+
skillsmp,github-integration,vulnerable,Information Exposure,5,HIGH
|
| 157 |
+
skillsmp,github-pat,vulnerable,Information Exposure,4,HIGH
|
| 158 |
+
skillsmp,gitlog,vulnerable,Information Exposure,1,HIGH
|
| 159 |
+
skillsmp,gkeep,vulnerable,Information Exposure,1,HIGH
|
| 160 |
+
skillsmp,gkeep-002,vulnerable,Information Exposure,2,HIGH
|
| 161 |
+
skillsmp,globalcaos,vulnerable,Insecure Storage;Information Exposure,5,HIGH
|
| 162 |
+
skillsmp,godaddy,vulnerable,Information Exposure,3,HIGH
|
| 163 |
+
skillsmp,godsboy,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 164 |
+
skillsmp,google-calendar,vulnerable,Information Exposure,3,HIGH
|
| 165 |
+
skillsmp,google-calendar-002,vulnerable,Information Exposure,3,HIGH
|
| 166 |
+
skillsmp,google-calendar-003,vulnerable,Information Exposure,2,HIGH
|
| 167 |
+
skillsmp,google-workspace,vulnerable,Information Exposure,1,HIGH
|
| 168 |
+
skillsmp,gowok,vulnerable,Information Exposure,4,HIGH
|
| 169 |
+
skillsmp,grok-imagine-render,vulnerable,Information Exposure,1,HIGH
|
| 170 |
+
skillsmp,gsc,vulnerable,Information Exposure,3,HIGH
|
| 171 |
+
skillsmp,gstdcoin-a2a-network,vulnerable,Information Exposure,3,HIGH
|
| 172 |
+
skillsmp,gxsy886,vulnerable,Information Exposure,1,MEDIUM
|
| 173 |
+
skillsmp,heiheimaoya,vulnerable,Information Exposure,2,HIGH
|
| 174 |
+
skillsmp,hexiaochun,vulnerable,Hardcoded Credentials,3,HIGH
|
| 175 |
+
skillsmp,hga030888-blip,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 176 |
+
skillsmp,hightower6eu,vulnerable,Hardcoded Credentials;Insecure Storage;Information Exposure,35,HIGH
|
| 177 |
+
skillsmp,hisxo,vulnerable,Information Exposure,3,HIGH
|
| 178 |
+
skillsmp,hjanuschka,vulnerable,Hardcoded Credentials,1,HIGH
|
| 179 |
+
skillsmp,honcho-integration (docs directory),vulnerable,Information Exposure,1,MEDIUM
|
| 180 |
+
skillsmp,hotdog,vulnerable,Hardcoded Credentials,1,HIGH
|
| 181 |
+
skillsmp,hustle,vulnerable,Information Exposure,1,MEDIUM
|
| 182 |
+
skillsmp,idea,vulnerable,Hardcoded Credentials,1,HIGH
|
| 183 |
+
skillsmp,imap-email,vulnerable,Information Exposure,2,HIGH
|
| 184 |
+
skillsmp,imap-idle,vulnerable,Information Exposure,3,HIGH
|
| 185 |
+
skillsmp,imap-idle-002,vulnerable,Information Exposure,2,HIGH
|
| 186 |
+
skillsmp,imap-smtp-email,vulnerable,Information Exposure,3,HIGH
|
| 187 |
+
skillsmp,imsg-autoresponder,vulnerable,Information Exposure,6,MEDIUM
|
| 188 |
+
skillsmp,ipedrax,vulnerable,Information Exposure,2,HIGH
|
| 189 |
+
skillsmp,jamesalmeida,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 190 |
+
skillsmp,jameseball-clawdio,vulnerable,Information Exposure,1,HIGH
|
| 191 |
+
skillsmp,jayphen,vulnerable,Information Exposure,1,HIGH
|
| 192 |
+
skillsmp,jb-hook-deploy-ui,vulnerable,Information Exposure,2,HIGH
|
| 193 |
+
skillsmp,jdrhyne,vulnerable,Information Exposure,4,HIGH
|
| 194 |
+
skillsmp,jeremymahieu-listonic,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 195 |
+
skillsmp,josephrp,vulnerable,Information Exposure,4,MEDIUM
|
| 196 |
+
skillsmp,justinhartbiz,vulnerable,Information Exposure,2,HIGH
|
| 197 |
+
skillsmp,kaankacar,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 198 |
+
skillsmp,kagi-search,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 199 |
+
skillsmp,kagi-search-002,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 200 |
+
skillsmp,karakeep,vulnerable,Information Exposure,2,HIGH
|
| 201 |
+
skillsmp,kellyclaudeai,vulnerable,Insecure Storage;Information Exposure,10,HIGH
|
| 202 |
+
skillsmp,kesslerio,vulnerable,Hardcoded Credentials,1,HIGH
|
| 203 |
+
skillsmp,lazymonlabs,vulnerable,Information Exposure,2,HIGH
|
| 204 |
+
skillsmp,legacy-testimony-skill,vulnerable,Information Exposure,3,HIGH
|
| 205 |
+
skillsmp,lidarr,vulnerable,Information Exposure,4,HIGH
|
| 206 |
+
skillsmp,lifi-orchestrator,vulnerable,Information Exposure,2,MEDIUM
|
| 207 |
+
skillsmp,linear-webhook,vulnerable,Information Exposure,3,HIGH
|
| 208 |
+
skillsmp,linkedin-monitor,vulnerable,Information Exposure,2,MEDIUM
|
| 209 |
+
skillsmp,linux-patcher,vulnerable,Information Exposure,1,HIGH
|
| 210 |
+
skillsmp,localrank,vulnerable,Information Exposure,1,MEDIUM
|
| 211 |
+
skillsmp,location-safety-skill,vulnerable,Hardcoded Credentials,2,HIGH
|
| 212 |
+
skillsmp,locus,vulnerable,Information Exposure,3,HIGH
|
| 213 |
+
skillsmp,locus-002,vulnerable,Information Exposure,2,HIGH
|
| 214 |
+
skillsmp,looper-golf,vulnerable,Information Exposure,1,MEDIUM
|
| 215 |
+
skillsmp,lucaspdude-persistent-private-agent-memory,vulnerable,Information Exposure,4,HIGH
|
| 216 |
+
skillsmp,luruibu,vulnerable,Hardcoded Credentials;Information Exposure,6,HIGH
|
| 217 |
+
skillsmp,lycohana,vulnerable,Hardcoded Credentials,2,HIGH
|
| 218 |
+
skillsmp,macos-spm-app-packaging,vulnerable,Artifact Leakage,1,MEDIUM
|
| 219 |
+
skillsmp,macos-spm-app-packaging-002,vulnerable,Artifact Leakage,1,MEDIUM
|
| 220 |
+
skillsmp,maishou,vulnerable,Information Exposure,1,MEDIUM
|
| 221 |
+
skillsmp,massiveadam,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 222 |
+
skillsmp,mastodon-publisher,vulnerable,Information Exposure,2,HIGH
|
| 223 |
+
skillsmp,masumi-payments,vulnerable,Information Exposure,5,HIGH
|
| 224 |
+
skillsmp,masumi-payments-002,vulnerable,Information Exposure,5,HIGH
|
| 225 |
+
skillsmp,matrix-meta,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 226 |
+
skillsmp,mcp-atlassian,vulnerable,Information Exposure,3,HIGH
|
| 227 |
+
skillsmp,mcp-builder,vulnerable,Information Exposure,1,HIGH
|
| 228 |
+
skillsmp,medrxiv-search,vulnerable,Information Exposure,3,HIGH
|
| 229 |
+
skillsmp,meegle-mcp-skill,vulnerable,Information Exposure,1,MEDIUM
|
| 230 |
+
skillsmp,memento,vulnerable,Information Exposure,9,HIGH
|
| 231 |
+
skillsmp,mersal-orem,vulnerable,Hardcoded Credentials,1,HIGH
|
| 232 |
+
skillsmp,meshguard,vulnerable,Information Exposure,5,HIGH
|
| 233 |
+
skillsmp,microsoft-todo,vulnerable,Information Exposure,2,HIGH
|
| 234 |
+
skillsmp,miniflux,vulnerable,Information Exposure,1,HIGH
|
| 235 |
+
skillsmp,mintyouragent,vulnerable,Information Exposure,3,HIGH
|
| 236 |
+
skillsmp,mishafyi,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 237 |
+
skillsmp,model-router,vulnerable,Information Exposure,2,HIGH
|
| 238 |
+
skillsmp,molta,vulnerable,Information Exposure,2,HIGH
|
| 239 |
+
skillsmp,moltbook-daily-digest,vulnerable,Insecure Storage,1,MEDIUM
|
| 240 |
+
skillsmp,moltbook-post-verified,vulnerable,Information Exposure,2,MEDIUM
|
| 241 |
+
skillsmp,moltcheck,vulnerable,Information Exposure,1,MEDIUM
|
| 242 |
+
skillsmp,moltchurch,vulnerable,Information Exposure,4,HIGH
|
| 243 |
+
skillsmp,moltguard,vulnerable,Hardcoded Credentials,2,HIGH
|
| 244 |
+
skillsmp,moltmarkets-trader,vulnerable,Information Exposure,15,HIGH
|
| 245 |
+
skillsmp,molttok,vulnerable,Hardcoded Credentials;Insecure Storage;Information Exposure,5,HIGH
|
| 246 |
+
skillsmp,monarch-money,vulnerable,Information Exposure,7,HIGH
|
| 247 |
+
skillsmp,monarch-money-002,vulnerable,Information Exposure,6,HIGH
|
| 248 |
+
skillsmp,motrix-download,vulnerable,Hardcoded Credentials,3,HIGH
|
| 249 |
+
skillsmp,ms365-tenant-manager,vulnerable,Hardcoded Credentials,1,HIGH
|
| 250 |
+
skillsmp,nano-banana-antigravity,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 251 |
+
skillsmp,nanobanana-ppt-skills,vulnerable,Information Exposure,1,HIGH
|
| 252 |
+
skillsmp,nas-master,vulnerable,Information Exposure,1,HIGH
|
| 253 |
+
skillsmp,nas-movie-download,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 254 |
+
skillsmp,nerveband,vulnerable,Hardcoded Credentials,2,HIGH
|
| 255 |
+
skillsmp,nest-devices,vulnerable,Information Exposure,3,HIGH
|
| 256 |
+
skillsmp,nostr-social,vulnerable,Information Exposure,2,HIGH
|
| 257 |
+
skillsmp,notebooklm,vulnerable,Information Exposure,3,HIGH
|
| 258 |
+
skillsmp,nowloady,vulnerable,Information Exposure,5,HIGH
|
| 259 |
+
skillsmp,npm-proxy,vulnerable,Insecure Storage;Information Exposure,3,HIGH
|
| 260 |
+
skillsmp,npm-proxy-002,vulnerable,Insecure Storage;Information Exposure,2,HIGH
|
| 261 |
+
skillsmp,obsidian-conversation-backup,vulnerable,Information Exposure,2,HIGH
|
| 262 |
+
skillsmp,obsidian-conversation-backup-002,vulnerable,Information Exposure,3,HIGH
|
| 263 |
+
skillsmp,oceanswave,vulnerable,Information Exposure,1,HIGH
|
| 264 |
+
skillsmp,odds-api-io,vulnerable,Information Exposure,1,HIGH
|
| 265 |
+
skillsmp,og-openclawguard,vulnerable,Hardcoded Credentials,2,HIGH
|
| 266 |
+
skillsmp,ok-computers,vulnerable,Information Exposure,1,MEDIUM
|
| 267 |
+
skillsmp,open-broker,vulnerable,Information Exposure,2,HIGH
|
| 268 |
+
skillsmp,openclaw-backup-optimized,vulnerable,Information Exposure,1,MEDIUM
|
| 269 |
+
skillsmp,openclaw-confluence-skill,vulnerable,Information Exposure,2,HIGH
|
| 270 |
+
skillsmp,openclaw-consensus-bot,vulnerable,Information Exposure,1,MEDIUM
|
| 271 |
+
skillsmp,openclaw-doctor-pro,vulnerable,Information Exposure,3,HIGH
|
| 272 |
+
skillsmp,openclaw-email-bypass,vulnerable,Information Exposure,2,HIGH
|
| 273 |
+
skillsmp,openclaw-runtime-monitor,vulnerable,Information Exposure,1,MEDIUM
|
| 274 |
+
skillsmp,openguardrails-for-openclaw,vulnerable,Hardcoded Credentials,1,HIGH
|
| 275 |
+
skillsmp,openkm-rest,vulnerable,Information Exposure,2,HIGH
|
| 276 |
+
skillsmp,openkrill,vulnerable,Information Exposure,3,HIGH
|
| 277 |
+
skillsmp,ops-framework,vulnerable,Hardcoded Credentials,1,HIGH
|
| 278 |
+
skillsmp,orchestrator,vulnerable,Hardcoded Credentials,1,HIGH
|
| 279 |
+
skillsmp,orosha-ai,vulnerable,Hardcoded Credentials;Insecure Storage,4,HIGH
|
| 280 |
+
skillsmp,pacelabs,vulnerable,Information Exposure,6,HIGH
|
| 281 |
+
skillsmp,parallel,vulnerable,Hardcoded Credentials,1,HIGH
|
| 282 |
+
skillsmp,parallel-002,vulnerable,Hardcoded Credentials,1,HIGH
|
| 283 |
+
skillsmp,paytrigo-openclawbot,vulnerable,Hardcoded Credentials,1,HIGH
|
| 284 |
+
skillsmp,paytrigo-openclawbot-002,vulnerable,Hardcoded Credentials,2,HIGH
|
| 285 |
+
skillsmp,paytrigo-openclawbot-003,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 286 |
+
skillsmp,peaq-robotics,vulnerable,Information Exposure,1,MEDIUM
|
| 287 |
+
skillsmp,pektech,vulnerable,Information Exposure,1,HIGH
|
| 288 |
+
skillsmp,pendzoncymisio,vulnerable,Information Exposure,4,HIGH
|
| 289 |
+
skillsmp,pes0,vulnerable,Information Exposure,4,HIGH
|
| 290 |
+
skillsmp,photonixlaser-ux,vulnerable,Hardcoded Credentials;Information Exposure,13,HIGH
|
| 291 |
+
skillsmp,picnic,vulnerable,Information Exposure,2,HIGH
|
| 292 |
+
skillsmp,picnic-002,vulnerable,Information Exposure,3,HIGH
|
| 293 |
+
skillsmp,pipethedev-polyclaw,vulnerable,Information Exposure,3,HIGH
|
| 294 |
+
skillsmp,pixiv-skill,vulnerable,Hardcoded Credentials;Information Exposure,7,HIGH
|
| 295 |
+
skillsmp,playdadev,vulnerable,Information Exposure,2,MEDIUM
|
| 296 |
+
skillsmp,pntrivedy,vulnerable,Hardcoded Credentials,3,HIGH
|
| 297 |
+
skillsmp,polyedge,vulnerable,Credential Compromise,1,CRITICAL
|
| 298 |
+
skillsmp,polymarket-agent,vulnerable,Information Exposure,2,HIGH
|
| 299 |
+
skillsmp,postiz-ext,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 300 |
+
skillsmp,preston-thiele,vulnerable,Information Exposure,4,HIGH
|
| 301 |
+
skillsmp,proj-deploy,vulnerable,Information Exposure,4,HIGH
|
| 302 |
+
skillsmp,project-context-sync,vulnerable,Information Exposure,2,HIGH
|
| 303 |
+
skillsmp,project-orchestrator,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 304 |
+
skillsmp,project-orchestrator-002,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 305 |
+
skillsmp,pulse,vulnerable,Hardcoded Credentials,2,HIGH
|
| 306 |
+
skillsmp,pulse-002,vulnerable,Hardcoded Credentials,3,HIGH
|
| 307 |
+
skillsmp,purelymail,vulnerable,Information Exposure,5,HIGH
|
| 308 |
+
skillsmp,quietmail,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 309 |
+
skillsmp,quodd,vulnerable,Information Exposure,2,HIGH
|
| 310 |
+
skillsmp,qwen-image,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 311 |
+
skillsmp,r2-storage,vulnerable,Information Exposure,8,HIGH
|
| 312 |
+
skillsmp,reachy-mini,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 313 |
+
skillsmp,receipts-guard,vulnerable,Information Exposure,1,MEDIUM
|
| 314 |
+
skillsmp,redis-bug-tracking,vulnerable,Information Exposure,1,MEDIUM
|
| 315 |
+
skillsmp,register-new-research-node,vulnerable,Hardcoded Credentials,2,HIGH
|
| 316 |
+
skillsmp,rei,vulnerable,Information Exposure,3,HIGH
|
| 317 |
+
skillsmp,restart-guard,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 318 |
+
skillsmp,resumeclaw,vulnerable,Information Exposure,5,HIGH
|
| 319 |
+
skillsmp,resumeclaw-002,vulnerable,Information Exposure,4,HIGH
|
| 320 |
+
skillsmp,reverse-proxy-local,vulnerable,Insecure Storage;Information Exposure,6,HIGH
|
| 321 |
+
skillsmp,rita5fr,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 322 |
+
skillsmp,roger0808,vulnerable,Hardcoded Credentials;Information Exposure,27,HIGH
|
| 323 |
+
skillsmp,rojasjuniore,vulnerable,Information Exposure,5,HIGH
|
| 324 |
+
skillsmp,roon-controller,vulnerable,Information Exposure,2,HIGH
|
| 325 |
+
skillsmp,roon-controller-002,vulnerable,Information Exposure,1,HIGH
|
| 326 |
+
skillsmp,rosepuppy,vulnerable,Information Exposure,4,MEDIUM
|
| 327 |
+
skillsmp,ryanhong666,vulnerable,Information Exposure,1,HIGH
|
| 328 |
+
skillsmp,sameerbajaj,vulnerable,Information Exposure,3,HIGH
|
| 329 |
+
skillsmp,sarthib7,vulnerable,Information Exposure,4,MEDIUM
|
| 330 |
+
skillsmp,sbaker5-polyedge,vulnerable,Credential Compromise,1,CRITICAL
|
| 331 |
+
skillsmp,sec-filing-watcher,vulnerable,Hardcoded Credentials,1,HIGH
|
| 332 |
+
skillsmp,sec-filing-watcher-002,vulnerable,Hardcoded Credentials,1,HIGH
|
| 333 |
+
skillsmp,secret-manager,vulnerable,Information Exposure,3,HIGH
|
| 334 |
+
skillsmp,security-monitor,vulnerable,Information Exposure,3,HIGH
|
| 335 |
+
skillsmp,security-monitor-002,vulnerable,Information Exposure,2,HIGH
|
| 336 |
+
skillsmp,send-me-my-files-r2-upload-with-short-lived-signed-urls,vulnerable,Information Exposure,11,HIGH
|
| 337 |
+
skillsmp,servicenow-agent,vulnerable,Information Exposure,2,HIGH
|
| 338 |
+
skillsmp,sf-diagram-nanobananapro,vulnerable,Information Exposure,1,HIGH
|
| 339 |
+
skillsmp,shawnminh,vulnerable,Information Exposure,12,HIGH
|
| 340 |
+
skillsmp,shekohex-miniflux,vulnerable,Information Exposure,2,HIGH
|
| 341 |
+
skillsmp,siyuan-task-skill,vulnerable,Hardcoded Credentials,2,HIGH
|
| 342 |
+
skillsmp,skillfence,vulnerable,Information Exposure,3,MEDIUM
|
| 343 |
+
skillsmp,slack-personal,vulnerable,Information Exposure,2,HIGH
|
| 344 |
+
skillsmp,slempiam,vulnerable,Information Exposure,2,HIGH
|
| 345 |
+
skillsmp,snowshadow,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 346 |
+
skillsmp,social-hub,vulnerable,Insecure Storage;Information Exposure,5,HIGH
|
| 347 |
+
skillsmp,solana-defi-agent,vulnerable,Information Exposure,2,MEDIUM
|
| 348 |
+
skillsmp,solclaw,vulnerable,Information Exposure,2,MEDIUM
|
| 349 |
+
skillsmp,solving_vrp,vulnerable,Hardcoded Credentials,2,HIGH
|
| 350 |
+
skillsmp,soroban-trader,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 351 |
+
skillsmp,sparkbtcbot,vulnerable,Information Exposure,3,HIGH
|
| 352 |
+
skillsmp,speedtest,vulnerable,Insecure Storage,1,MEDIUM
|
| 353 |
+
skillsmp,spirosrap,vulnerable,Information Exposure,2,HIGH
|
| 354 |
+
skillsmp,sschepis,vulnerable,Information Exposure,10,HIGH
|
| 355 |
+
skillsmp,standard-agentic-commerce-engine,vulnerable,Information Exposure,3,HIGH
|
| 356 |
+
skillsmp,standard-agentic-commerce-engine-002,vulnerable,Information Exposure,3,HIGH
|
| 357 |
+
skillsmp,staratheris,vulnerable,Information Exposure,2,MEDIUM
|
| 358 |
+
skillsmp,staratheris-arya-reminders,vulnerable,Hardcoded Credentials,1,HIGH
|
| 359 |
+
skillsmp,strava,vulnerable,Information Exposure,2,HIGH
|
| 360 |
+
skillsmp,strava-002,vulnerable,Information Exposure,3,HIGH
|
| 361 |
+
skillsmp,strava-003,vulnerable,Information Exposure,3,HIGH
|
| 362 |
+
skillsmp,strava-cycling-coach,vulnerable,Information Exposure,3,HIGH
|
| 363 |
+
skillsmp,stremio-cast,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 364 |
+
skillsmp,submit-to-agentbeat,vulnerable,Information Exposure,6,HIGH
|
| 365 |
+
skillsmp,subtitles,vulnerable,Information Exposure,5,HIGH
|
| 366 |
+
skillsmp,supermarkt-prijzen,vulnerable,Hardcoded Credentials;Information Exposure,17,HIGH
|
| 367 |
+
skillsmp,supermemory,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 368 |
+
skillsmp,sxela,vulnerable,Information Exposure,1,HIGH
|
| 369 |
+
skillsmp,synology-surveillance-skill,vulnerable,Information Exposure,3,HIGH
|
| 370 |
+
skillsmp,system-guardian,vulnerable,Information Exposure,2,HIGH
|
| 371 |
+
skillsmp,team-reconcile,vulnerable,Information Exposure,1,MEDIUM
|
| 372 |
+
skillsmp,tedkaczynski-the-bot,vulnerable,Information Exposure,4,HIGH
|
| 373 |
+
skillsmp,telegram-cloud-storage,vulnerable,Information Exposure,1,HIGH
|
| 374 |
+
skillsmp,telegram-pairing-approver,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 375 |
+
skillsmp,tencentcloud-cos-skill,vulnerable,Information Exposure,3,HIGH
|
| 376 |
+
skillsmp,tencentcloud-cvm-skill,vulnerable,Information Exposure,6,HIGH
|
| 377 |
+
skillsmp,tencentcloud-cvm-skill-002,vulnerable,Information Exposure,3,HIGH
|
| 378 |
+
skillsmp,tesla-fleet-api,vulnerable,Information Exposure,2,HIGH
|
| 379 |
+
skillsmp,tezatezaz,vulnerable,Information Exposure,5,HIGH
|
| 380 |
+
skillsmp,therohitdas,vulnerable,Information Exposure,10,HIGH
|
| 381 |
+
skillsmp,thesethrose,vulnerable,Information Exposure,3,HIGH
|
| 382 |
+
skillsmp,thomaslwang,vulnerable,Hardcoded Credentials,2,HIGH
|
| 383 |
+
skillsmp,threads,vulnerable,Information Exposure,1,HIGH
|
| 384 |
+
skillsmp,ticktick,vulnerable,Information Exposure,3,HIGH
|
| 385 |
+
skillsmp,token-alert,vulnerable,Hardcoded Credentials,1,HIGH
|
| 386 |
+
skillsmp,trakt-tv,vulnerable,Information Exposure,8,HIGH
|
| 387 |
+
skillsmp,transcript,vulnerable,Information Exposure,6,HIGH
|
| 388 |
+
skillsmp,transcriptapi,vulnerable,Information Exposure,4,HIGH
|
| 389 |
+
skillsmp,trmnl-display,vulnerable,Information Exposure,1,MEDIUM
|
| 390 |
+
skillsmp,tunaissacoding,vulnerable,Information Exposure,3,HIGH
|
| 391 |
+
skillsmp,twitter-search-skill,vulnerable,Information Exposure,3,HIGH
|
| 392 |
+
skillsmp,uid-life,vulnerable,Information Exposure,2,MEDIUM
|
| 393 |
+
skillsmp,uid-node,vulnerable,Information Exposure,3,MEDIUM
|
| 394 |
+
skillsmp,unifi,vulnerable,Information Exposure,1,HIGH
|
| 395 |
+
skillsmp,universal-voice-agent,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 396 |
+
skillsmp,universal-voice-agent-002,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 397 |
+
skillsmp,update-plus,vulnerable,Information Exposure,1,MEDIUM
|
| 398 |
+
skillsmp,valyu-search,vulnerable,Information Exposure,1,MEDIUM
|
| 399 |
+
skillsmp,video-transcript,vulnerable,Information Exposure,5,HIGH
|
| 400 |
+
skillsmp,vikunja-fast,vulnerable,Information Exposure,2,HIGH
|
| 401 |
+
skillsmp,visionik,vulnerable,Information Exposure,1,HIGH
|
| 402 |
+
skillsmp,voice-ui,vulnerable,Information Exposure,3,HIGH
|
| 403 |
+
skillsmp,voidborne,vulnerable,Information Exposure,4,HIGH
|
| 404 |
+
skillsmp,vrtlly-claw-club,vulnerable,Insecure Storage;Information Exposure,4,HIGH
|
| 405 |
+
skillsmp,warm-wm,vulnerable,Information Exposure,1,HIGH
|
| 406 |
+
skillsmp,warren-deploy,vulnerable,Information Exposure,1,MEDIUM
|
| 407 |
+
skillsmp,wearables-setup,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 408 |
+
skillsmp,weather-data-fetcher,vulnerable,Information Exposure,3,HIGH
|
| 409 |
+
skillsmp,weatherkit,vulnerable,Information Exposure,2,HIGH
|
| 410 |
+
skillsmp,weird-aftertaste,vulnerable,Insecure Storage;Information Exposure,3,HIGH
|
| 411 |
+
skillsmp,whoop,vulnerable,Information Exposure,2,HIGH
|
| 412 |
+
skillsmp,whoop-integration,vulnerable,Hardcoded Credentials,2,HIGH
|
| 413 |
+
skillsmp,whoop-morning,vulnerable,Information Exposure,1,HIGH
|
| 414 |
+
skillsmp,withings-health,vulnerable,Information Exposure,1,HIGH
|
| 415 |
+
skillsmp,withings-health-002,vulnerable,Information Exposure,2,HIGH
|
| 416 |
+
skillsmp,withings-health-003,vulnerable,Information Exposure,1,HIGH
|
| 417 |
+
skillsmp,x-report-generator,vulnerable,Information Exposure,2,HIGH
|
| 418 |
+
skillsmp,x402-client,vulnerable,Information Exposure,3,HIGH
|
| 419 |
+
skillsmp,xasus1,vulnerable,Information Exposure,2,HIGH
|
| 420 |
+
skillsmp,xian-node-skill,vulnerable,Information Exposure,2,HIGH
|
| 421 |
+
skillsmp,xiaohongshutools,vulnerable,Information Exposure,4,HIGH
|
| 422 |
+
skillsmp,xiaomi-home,vulnerable,Hardcoded Credentials,3,HIGH
|
| 423 |
+
skillsmp,youbaolian,vulnerable,Information Exposure,1,MEDIUM
|
| 424 |
+
skillsmp,youbaolian-002,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 425 |
+
skillsmp,youtube,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 426 |
+
skillsmp,youtube-api,vulnerable,Information Exposure,14,HIGH
|
| 427 |
+
skillsmp,youtube-instant-article,vulnerable,Information Exposure,1,HIGH
|
| 428 |
+
skillsmp,youtube-search,vulnerable,Information Exposure,3,HIGH
|
| 429 |
+
skillsmp,yt,vulnerable,Information Exposure,6,HIGH
|
| 430 |
+
skillsmp,yt-to-blog,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 431 |
+
skillsmp,yukihamada-voice-ui,vulnerable,Information Exposure,4,HIGH
|
| 432 |
+
skillsmp,zenixp,vulnerable,Information Exposure,2,HIGH
|
| 433 |
+
skillsmp,zeph-ai-dev,vulnerable,Hardcoded Credentials,1,HIGH
|
| 434 |
+
skillsmp,zeruai,vulnerable,Information Exposure,1,MEDIUM
|
| 435 |
+
skillsmp,zettelkasten,vulnerable,Information Exposure,1,MEDIUM
|
| 436 |
+
skillsmp,zoho-email-integration,vulnerable,Information Exposure,3,HIGH
|
| 437 |
+
skillsmp,zyla-api-hub-skill,vulnerable,Information Exposure,1,HIGH
|
| 438 |
+
skillsmp,zyla-api-hub-skill-002,vulnerable,Information Exposure,1,HIGH
|