Datasets:
Refresh to paper's released data: 520 affected (437 vuln + 83 mal), 1,708 issues + disclosure/popularity; updated card (arXiv 2604.03070)
Browse files- README.md +68 -35
- issues.csv +0 -0
- malicious_skills.csv +0 -84
- popularity_hardcoded_repos.csv +38 -0
- remediation_summary.csv +4 -0
- vulnerable_skills.csv → skills_dataset.csv +521 -438
README.md
CHANGED
|
@@ -1,66 +1,99 @@
|
|
| 1 |
---
|
| 2 |
-
title: SkillLeakBench
|
| 3 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
-
#
|
| 7 |
|
| 8 |
-
A credential
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
|
| 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 |
-
|
| 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 |
-
##
|
| 39 |
|
| 40 |
-
|
|
|
|
| 41 |
|
| 42 |
-
|
|
|
|
| 43 |
|
| 44 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
```python
|
| 47 |
-
|
| 48 |
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
| 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={
|
| 60 |
-
|
|
|
|
| 61 |
}
|
| 62 |
```
|
| 63 |
|
| 64 |
## License
|
| 65 |
|
| 66 |
-
MIT
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
license: mit
|
| 3 |
+
pretty_name: SkillLeakBench
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- security
|
| 8 |
+
- ai-safety
|
| 9 |
+
- llm-agents
|
| 10 |
+
- agent-skills
|
| 11 |
+
- claude-code
|
| 12 |
+
- credential-leakage
|
| 13 |
+
- prompt-injection
|
| 14 |
+
task_categories:
|
| 15 |
+
- text-classification
|
| 16 |
+
size_categories:
|
| 17 |
+
- 1K<n<10K
|
| 18 |
+
configs:
|
| 19 |
+
- config_name: affected_skills
|
| 20 |
+
data_files:
|
| 21 |
+
- split: train
|
| 22 |
+
path: skills_dataset.csv
|
| 23 |
+
- config_name: issues
|
| 24 |
+
data_files:
|
| 25 |
+
- split: train
|
| 26 |
+
path: issues.csv
|
| 27 |
+
- config_name: remediation
|
| 28 |
+
data_files:
|
| 29 |
+
- split: train
|
| 30 |
+
path: remediation_summary.csv
|
| 31 |
+
- config_name: popularity
|
| 32 |
+
data_files:
|
| 33 |
+
- split: train
|
| 34 |
+
path: popularity_hardcoded_repos.csv
|
| 35 |
---
|
| 36 |
|
| 37 |
+
# SkillLeakBench
|
| 38 |
|
| 39 |
+
A credential-leakage benchmark for LLM agent skills, from the ASE 2026 paper [*How Your Credentials Are Leaked by LLM Agent Skills: An Empirical Study*](https://arxiv.org/abs/2604.03070).
|
| 40 |
|
| 41 |
+
- 📄 **Paper:** <https://arxiv.org/abs/2604.03070>
|
| 42 |
+
- 💻 **Code & detection pipeline:** <https://github.com/AgentSkillsPrivacy/SkillLeakBench>
|
| 43 |
+
- 📦 **Archive:** <https://doi.org/10.5281/zenodo.19367969>
|
| 44 |
|
| 45 |
+
## Dataset summary
|
|
|
|
|
|
|
|
|
|
| 46 |
|
| 47 |
+
We collected 170,226 skills from SkillsMP and analyzed a 17,022-skill sample with static secret extraction, dynamic sandbox testing, and manual review. This release contains the 520 affected skills (437 vulnerable + 83 malicious) and their 1,708 security issues, across 10 leakage patterns (4 vulnerability + 6 malicious), plus disclosure and popularity tables. The release is de-identified (developer usernames removed) and contains no live credential values.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
| Classification | Skills | Issues |
|
| 50 |
+
|----------------|-------:|-------:|
|
| 51 |
| Vulnerable | 437 | 1,371 |
|
| 52 |
| Malicious | 83 | 337 |
|
| 53 |
| **Total** | **520** | **1,708** |
|
| 54 |
|
| 55 |
+
## Files & configs
|
| 56 |
|
| 57 |
+
### `skills_dataset.csv` — affected skills (520 rows)
|
| 58 |
+
Per-skill records. Columns: `source`, `skill_name`, `classification` (`vulnerable` / `malicious`), `patterns` (semicolon-separated), `issue_count`, `severity`.
|
| 59 |
|
| 60 |
+
### `issues.csv` — security issues (1,708 rows)
|
| 61 |
+
One row per issue. Columns: `skill_id`, `skill_name`, `classification`, `pattern_id`, `academic_code`, `pattern`, `severity`.
|
| 62 |
|
| 63 |
+
### `remediation_summary.csv` — disclosure outcomes (3 rows)
|
| 64 |
+
Columns: `classification`, `total`, `resolved`, `remaining`.
|
| 65 |
+
|
| 66 |
+
### `popularity_hardcoded_repos.csv` — repository popularity (37 rows)
|
| 67 |
+
Name-free popularity of hardcoded-credential repositories. Columns: `repo_status`, `stars`, `forks`.
|
| 68 |
+
|
| 69 |
+
**Leakage patterns.** Vulnerability (4): Information Exposure, Hardcoded Credentials, Insecure Storage, Artifact Leakage. Malicious (6): Remote Exploitation, Defense Evasion, Credential Compromise, Data Exfiltration, Resource Hijacking, Persistence.
|
| 70 |
+
|
| 71 |
+
### Loading
|
| 72 |
|
| 73 |
```python
|
| 74 |
+
from datasets import load_dataset
|
| 75 |
|
| 76 |
+
affected = load_dataset("AgentSkillPrivacy/SkillLeakBench", "affected_skills")
|
| 77 |
+
issues = load_dataset("AgentSkillPrivacy/SkillLeakBench", "issues")
|
| 78 |
+
remediation = load_dataset("AgentSkillPrivacy/SkillLeakBench", "remediation")
|
| 79 |
+
popularity = load_dataset("AgentSkillPrivacy/SkillLeakBench", "popularity")
|
| 80 |
```
|
| 81 |
|
| 82 |
+
## Intended use & ethics
|
| 83 |
+
|
| 84 |
+
Released for defensive security research on agent skills. The data is de-identified and excludes live credential values; vulnerabilities were responsibly disclosed to the platform.
|
| 85 |
+
|
| 86 |
## Citation
|
| 87 |
|
| 88 |
```bibtex
|
| 89 |
@inproceedings{skillleakbench2026,
|
| 90 |
+
title = {How Your Credentials Are Leaked by {LLM} Agent Skills: An Empirical Study},
|
| 91 |
+
author = {Chen, Zhihao and Zhang, Ying and Liu, Yi and Deng, Gelei and Li, Yuekang and Zhang, Yanjun and Ning, Jianting and Zhang, Leo and Ma, Lei and Li, Zhiqiang},
|
| 92 |
+
booktitle = {Proceedings of the 41st IEEE/ACM International Conference on Automated Software Engineering (ASE)},
|
| 93 |
+
year = {2026}
|
| 94 |
}
|
| 95 |
```
|
| 96 |
|
| 97 |
## License
|
| 98 |
|
| 99 |
+
MIT
|
issues.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
malicious_skills.csv
DELETED
|
@@ -1,84 +0,0 @@
|
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
popularity_hardcoded_repos.csv
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
repo_status,stars,forks
|
| 2 |
+
available,9,1
|
| 3 |
+
available,786,144
|
| 4 |
+
available,12,3
|
| 5 |
+
available,22,4
|
| 6 |
+
available,418,70
|
| 7 |
+
available,0,0
|
| 8 |
+
available,0,0
|
| 9 |
+
available,9,2
|
| 10 |
+
available,185,34
|
| 11 |
+
not_found_or_inaccessible,,
|
| 12 |
+
not_found_or_inaccessible,,
|
| 13 |
+
available,0,0
|
| 14 |
+
available,1,2
|
| 15 |
+
available,0,0
|
| 16 |
+
available,9,0
|
| 17 |
+
not_found_or_inaccessible,,
|
| 18 |
+
available,5,0
|
| 19 |
+
available,4,0
|
| 20 |
+
available,0,0
|
| 21 |
+
available,39,12
|
| 22 |
+
available,12,0
|
| 23 |
+
not_found_or_inaccessible,,
|
| 24 |
+
available,24,2
|
| 25 |
+
available,0,0
|
| 26 |
+
not_found_or_inaccessible,,
|
| 27 |
+
available,23,6
|
| 28 |
+
not_found_or_inaccessible,,
|
| 29 |
+
not_found_or_inaccessible,,
|
| 30 |
+
available,1,0
|
| 31 |
+
available,42,9
|
| 32 |
+
available,2,0
|
| 33 |
+
available,605,84
|
| 34 |
+
available,2,0
|
| 35 |
+
available,37,8
|
| 36 |
+
not_found_or_inaccessible,,
|
| 37 |
+
available,15,3
|
| 38 |
+
unknown_url,,
|
remediation_summary.csv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
classification,total,resolved,remaining
|
| 2 |
+
malicious,83,83,0
|
| 3 |
+
vulnerable_skills,437,374,63
|
| 4 |
+
hardcoded_cases,107,100,7
|
vulnerable_skills.csv → skills_dataset.csv
RENAMED
|
@@ -1,438 +1,521 @@
|
|
| 1 |
-
source,skill_name,classification,patterns,issue_count,severity
|
| 2 |
-
skillsmp,
|
| 3 |
-
skillsmp,
|
| 4 |
-
skillsmp,
|
| 5 |
-
skillsmp,
|
| 6 |
-
skillsmp,
|
| 7 |
-
skillsmp,
|
| 8 |
-
skillsmp,
|
| 9 |
-
skillsmp,
|
| 10 |
-
skillsmp,
|
| 11 |
-
skillsmp,
|
| 12 |
-
skillsmp,
|
| 13 |
-
skillsmp,
|
| 14 |
-
skillsmp,
|
| 15 |
-
skillsmp,
|
| 16 |
-
skillsmp,
|
| 17 |
-
skillsmp,
|
| 18 |
-
skillsmp,
|
| 19 |
-
skillsmp,
|
| 20 |
-
skillsmp,
|
| 21 |
-
skillsmp,
|
| 22 |
-
skillsmp,
|
| 23 |
-
skillsmp,
|
| 24 |
-
skillsmp,
|
| 25 |
-
skillsmp,
|
| 26 |
-
skillsmp,
|
| 27 |
-
skillsmp,
|
| 28 |
-
skillsmp,
|
| 29 |
-
skillsmp,
|
| 30 |
-
skillsmp,
|
| 31 |
-
skillsmp,
|
| 32 |
-
skillsmp,
|
| 33 |
-
skillsmp,
|
| 34 |
-
skillsmp,
|
| 35 |
-
skillsmp,
|
| 36 |
-
skillsmp,
|
| 37 |
-
skillsmp,
|
| 38 |
-
skillsmp,
|
| 39 |
-
skillsmp,
|
| 40 |
-
skillsmp,
|
| 41 |
-
skillsmp,
|
| 42 |
-
skillsmp,
|
| 43 |
-
skillsmp,
|
| 44 |
-
skillsmp,
|
| 45 |
-
skillsmp,
|
| 46 |
-
skillsmp,
|
| 47 |
-
skillsmp,
|
| 48 |
-
skillsmp,
|
| 49 |
-
skillsmp,
|
| 50 |
-
skillsmp,
|
| 51 |
-
skillsmp,
|
| 52 |
-
skillsmp,
|
| 53 |
-
skillsmp,
|
| 54 |
-
skillsmp,
|
| 55 |
-
skillsmp,
|
| 56 |
-
skillsmp,
|
| 57 |
-
skillsmp,
|
| 58 |
-
skillsmp,
|
| 59 |
-
skillsmp,
|
| 60 |
-
skillsmp,
|
| 61 |
-
skillsmp,
|
| 62 |
-
skillsmp,
|
| 63 |
-
skillsmp,
|
| 64 |
-
skillsmp,
|
| 65 |
-
skillsmp,
|
| 66 |
-
skillsmp,
|
| 67 |
-
skillsmp,
|
| 68 |
-
skillsmp,
|
| 69 |
-
skillsmp,
|
| 70 |
-
skillsmp,
|
| 71 |
-
skillsmp,
|
| 72 |
-
skillsmp,
|
| 73 |
-
skillsmp,
|
| 74 |
-
skillsmp,
|
| 75 |
-
skillsmp,
|
| 76 |
-
skillsmp,
|
| 77 |
-
skillsmp,
|
| 78 |
-
skillsmp,
|
| 79 |
-
skillsmp,
|
| 80 |
-
skillsmp,
|
| 81 |
-
skillsmp,
|
| 82 |
-
skillsmp,
|
| 83 |
-
skillsmp,
|
| 84 |
-
skillsmp,
|
| 85 |
-
skillsmp,
|
| 86 |
-
skillsmp,
|
| 87 |
-
skillsmp,
|
| 88 |
-
skillsmp,
|
| 89 |
-
skillsmp,
|
| 90 |
-
skillsmp,
|
| 91 |
-
skillsmp,
|
| 92 |
-
skillsmp,
|
| 93 |
-
skillsmp,
|
| 94 |
-
skillsmp,
|
| 95 |
-
skillsmp,
|
| 96 |
-
skillsmp,
|
| 97 |
-
skillsmp,
|
| 98 |
-
skillsmp,
|
| 99 |
-
skillsmp,
|
| 100 |
-
skillsmp,
|
| 101 |
-
skillsmp,
|
| 102 |
-
skillsmp,
|
| 103 |
-
skillsmp,
|
| 104 |
-
skillsmp,
|
| 105 |
-
skillsmp,
|
| 106 |
-
skillsmp,
|
| 107 |
-
skillsmp,
|
| 108 |
-
skillsmp,
|
| 109 |
-
skillsmp,
|
| 110 |
-
skillsmp,
|
| 111 |
-
skillsmp,
|
| 112 |
-
skillsmp,
|
| 113 |
-
skillsmp,
|
| 114 |
-
skillsmp,
|
| 115 |
-
skillsmp,
|
| 116 |
-
skillsmp,
|
| 117 |
-
skillsmp,
|
| 118 |
-
skillsmp,
|
| 119 |
-
skillsmp,
|
| 120 |
-
skillsmp,
|
| 121 |
-
skillsmp,
|
| 122 |
-
skillsmp,
|
| 123 |
-
skillsmp,
|
| 124 |
-
skillsmp,
|
| 125 |
-
skillsmp,
|
| 126 |
-
skillsmp,
|
| 127 |
-
skillsmp,
|
| 128 |
-
skillsmp,
|
| 129 |
-
skillsmp,
|
| 130 |
-
skillsmp,
|
| 131 |
-
skillsmp,
|
| 132 |
-
skillsmp,
|
| 133 |
-
skillsmp,
|
| 134 |
-
skillsmp,
|
| 135 |
-
skillsmp,
|
| 136 |
-
skillsmp,
|
| 137 |
-
skillsmp,
|
| 138 |
-
skillsmp,
|
| 139 |
-
skillsmp,
|
| 140 |
-
skillsmp,
|
| 141 |
-
skillsmp,
|
| 142 |
-
skillsmp,
|
| 143 |
-
skillsmp,
|
| 144 |
-
skillsmp,
|
| 145 |
-
skillsmp,
|
| 146 |
-
skillsmp,
|
| 147 |
-
skillsmp,
|
| 148 |
-
skillsmp,
|
| 149 |
-
skillsmp,
|
| 150 |
-
skillsmp,
|
| 151 |
-
skillsmp,
|
| 152 |
-
skillsmp,
|
| 153 |
-
skillsmp,
|
| 154 |
-
skillsmp,
|
| 155 |
-
skillsmp,
|
| 156 |
-
skillsmp,
|
| 157 |
-
skillsmp,
|
| 158 |
-
skillsmp,
|
| 159 |
-
skillsmp,
|
| 160 |
-
skillsmp,
|
| 161 |
-
skillsmp,
|
| 162 |
-
skillsmp,
|
| 163 |
-
skillsmp,
|
| 164 |
-
skillsmp,google-calendar,vulnerable,Information Exposure,
|
| 165 |
-
skillsmp,
|
| 166 |
-
skillsmp,
|
| 167 |
-
skillsmp,
|
| 168 |
-
skillsmp,
|
| 169 |
-
skillsmp,
|
| 170 |
-
skillsmp,
|
| 171 |
-
skillsmp,
|
| 172 |
-
skillsmp,
|
| 173 |
-
skillsmp,
|
| 174 |
-
skillsmp,
|
| 175 |
-
skillsmp,
|
| 176 |
-
skillsmp,
|
| 177 |
-
skillsmp,
|
| 178 |
-
skillsmp,
|
| 179 |
-
skillsmp,
|
| 180 |
-
skillsmp,
|
| 181 |
-
skillsmp,
|
| 182 |
-
skillsmp,
|
| 183 |
-
skillsmp,
|
| 184 |
-
skillsmp,
|
| 185 |
-
skillsmp,
|
| 186 |
-
skillsmp,
|
| 187 |
-
skillsmp,
|
| 188 |
-
skillsmp,
|
| 189 |
-
skillsmp,
|
| 190 |
-
skillsmp,
|
| 191 |
-
skillsmp,
|
| 192 |
-
skillsmp,
|
| 193 |
-
skillsmp,
|
| 194 |
-
skillsmp,
|
| 195 |
-
skillsmp,
|
| 196 |
-
skillsmp,
|
| 197 |
-
skillsmp,
|
| 198 |
-
skillsmp,
|
| 199 |
-
skillsmp,
|
| 200 |
-
skillsmp,
|
| 201 |
-
skillsmp,
|
| 202 |
-
skillsmp,
|
| 203 |
-
skillsmp,
|
| 204 |
-
skillsmp,
|
| 205 |
-
skillsmp,
|
| 206 |
-
skillsmp,
|
| 207 |
-
skillsmp,
|
| 208 |
-
skillsmp,
|
| 209 |
-
skillsmp,
|
| 210 |
-
skillsmp,
|
| 211 |
-
skillsmp,
|
| 212 |
-
skillsmp,locus,vulnerable,Information Exposure,3,HIGH
|
| 213 |
-
skillsmp,
|
| 214 |
-
skillsmp,
|
| 215 |
-
skillsmp,
|
| 216 |
-
skillsmp,
|
| 217 |
-
skillsmp,
|
| 218 |
-
skillsmp,
|
| 219 |
-
skillsmp,
|
| 220 |
-
skillsmp,
|
| 221 |
-
skillsmp,
|
| 222 |
-
skillsmp,
|
| 223 |
-
skillsmp,
|
| 224 |
-
skillsmp,
|
| 225 |
-
skillsmp,
|
| 226 |
-
skillsmp,
|
| 227 |
-
skillsmp,
|
| 228 |
-
skillsmp,
|
| 229 |
-
skillsmp,
|
| 230 |
-
skillsmp,
|
| 231 |
-
skillsmp,
|
| 232 |
-
skillsmp,
|
| 233 |
-
skillsmp,
|
| 234 |
-
skillsmp,
|
| 235 |
-
skillsmp,
|
| 236 |
-
skillsmp,
|
| 237 |
-
skillsmp,
|
| 238 |
-
skillsmp,
|
| 239 |
-
skillsmp,
|
| 240 |
-
skillsmp,
|
| 241 |
-
skillsmp,
|
| 242 |
-
skillsmp,
|
| 243 |
-
skillsmp,
|
| 244 |
-
skillsmp,
|
| 245 |
-
skillsmp,
|
| 246 |
-
skillsmp,
|
| 247 |
-
skillsmp,
|
| 248 |
-
skillsmp,
|
| 249 |
-
skillsmp,
|
| 250 |
-
skillsmp,
|
| 251 |
-
skillsmp,
|
| 252 |
-
skillsmp,
|
| 253 |
-
skillsmp,
|
| 254 |
-
skillsmp,
|
| 255 |
-
skillsmp,
|
| 256 |
-
skillsmp,
|
| 257 |
-
skillsmp,
|
| 258 |
-
skillsmp,
|
| 259 |
-
skillsmp,
|
| 260 |
-
skillsmp,
|
| 261 |
-
skillsmp,
|
| 262 |
-
skillsmp,
|
| 263 |
-
skillsmp,
|
| 264 |
-
skillsmp,
|
| 265 |
-
skillsmp,
|
| 266 |
-
skillsmp,
|
| 267 |
-
skillsmp,
|
| 268 |
-
skillsmp,
|
| 269 |
-
skillsmp,
|
| 270 |
-
skillsmp,
|
| 271 |
-
skillsmp,
|
| 272 |
-
skillsmp,
|
| 273 |
-
skillsmp,
|
| 274 |
-
skillsmp,
|
| 275 |
-
skillsmp,
|
| 276 |
-
skillsmp,
|
| 277 |
-
skillsmp,
|
| 278 |
-
skillsmp,
|
| 279 |
-
skillsmp,
|
| 280 |
-
skillsmp,
|
| 281 |
-
skillsmp,
|
| 282 |
-
skillsmp,
|
| 283 |
-
skillsmp,
|
| 284 |
-
skillsmp,
|
| 285 |
-
skillsmp,
|
| 286 |
-
skillsmp,
|
| 287 |
-
skillsmp,
|
| 288 |
-
skillsmp,
|
| 289 |
-
skillsmp,
|
| 290 |
-
skillsmp,
|
| 291 |
-
skillsmp,
|
| 292 |
-
skillsmp,
|
| 293 |
-
skillsmp,
|
| 294 |
-
skillsmp,
|
| 295 |
-
skillsmp,
|
| 296 |
-
skillsmp,
|
| 297 |
-
skillsmp,
|
| 298 |
-
skillsmp,
|
| 299 |
-
skillsmp,
|
| 300 |
-
skillsmp,
|
| 301 |
-
skillsmp,
|
| 302 |
-
skillsmp,
|
| 303 |
-
skillsmp,
|
| 304 |
-
skillsmp,
|
| 305 |
-
skillsmp,
|
| 306 |
-
skillsmp,
|
| 307 |
-
skillsmp,
|
| 308 |
-
skillsmp,
|
| 309 |
-
skillsmp,
|
| 310 |
-
skillsmp,
|
| 311 |
-
skillsmp,
|
| 312 |
-
skillsmp,
|
| 313 |
-
skillsmp,
|
| 314 |
-
skillsmp,
|
| 315 |
-
skillsmp,
|
| 316 |
-
skillsmp,
|
| 317 |
-
skillsmp,
|
| 318 |
-
skillsmp,
|
| 319 |
-
skillsmp,
|
| 320 |
-
skillsmp,
|
| 321 |
-
skillsmp,
|
| 322 |
-
skillsmp,
|
| 323 |
-
skillsmp,
|
| 324 |
-
skillsmp,
|
| 325 |
-
skillsmp,
|
| 326 |
-
skillsmp,
|
| 327 |
-
skillsmp,
|
| 328 |
-
skillsmp,
|
| 329 |
-
skillsmp,
|
| 330 |
-
skillsmp,
|
| 331 |
-
skillsmp,
|
| 332 |
-
skillsmp,
|
| 333 |
-
skillsmp,
|
| 334 |
-
skillsmp,
|
| 335 |
-
skillsmp,
|
| 336 |
-
skillsmp,
|
| 337 |
-
skillsmp,
|
| 338 |
-
skillsmp,
|
| 339 |
-
skillsmp,
|
| 340 |
-
skillsmp,
|
| 341 |
-
skillsmp,
|
| 342 |
-
skillsmp,
|
| 343 |
-
skillsmp,
|
| 344 |
-
skillsmp,
|
| 345 |
-
skillsmp,
|
| 346 |
-
skillsmp,
|
| 347 |
-
skillsmp,
|
| 348 |
-
skillsmp,
|
| 349 |
-
skillsmp,
|
| 350 |
-
skillsmp,
|
| 351 |
-
skillsmp,
|
| 352 |
-
skillsmp,
|
| 353 |
-
skillsmp,
|
| 354 |
-
skillsmp,
|
| 355 |
-
skillsmp,
|
| 356 |
-
skillsmp,
|
| 357 |
-
skillsmp,
|
| 358 |
-
skillsmp,
|
| 359 |
-
skillsmp,
|
| 360 |
-
skillsmp,
|
| 361 |
-
skillsmp,
|
| 362 |
-
skillsmp,
|
| 363 |
-
skillsmp,
|
| 364 |
-
skillsmp,
|
| 365 |
-
skillsmp,
|
| 366 |
-
skillsmp,
|
| 367 |
-
skillsmp,
|
| 368 |
-
skillsmp,
|
| 369 |
-
skillsmp,
|
| 370 |
-
skillsmp,
|
| 371 |
-
skillsmp,
|
| 372 |
-
skillsmp,
|
| 373 |
-
skillsmp,
|
| 374 |
-
skillsmp,
|
| 375 |
-
skillsmp,
|
| 376 |
-
skillsmp,
|
| 377 |
-
skillsmp,
|
| 378 |
-
skillsmp,
|
| 379 |
-
skillsmp,
|
| 380 |
-
skillsmp,
|
| 381 |
-
skillsmp,
|
| 382 |
-
skillsmp,
|
| 383 |
-
skillsmp,
|
| 384 |
-
skillsmp,
|
| 385 |
-
skillsmp,
|
| 386 |
-
skillsmp,
|
| 387 |
-
skillsmp,
|
| 388 |
-
skillsmp,
|
| 389 |
-
skillsmp,
|
| 390 |
-
skillsmp,
|
| 391 |
-
skillsmp,
|
| 392 |
-
skillsmp,
|
| 393 |
-
skillsmp,
|
| 394 |
-
skillsmp,
|
| 395 |
-
skillsmp,
|
| 396 |
-
skillsmp,
|
| 397 |
-
skillsmp,
|
| 398 |
-
skillsmp,
|
| 399 |
-
skillsmp,
|
| 400 |
-
skillsmp,
|
| 401 |
-
skillsmp,
|
| 402 |
-
skillsmp,
|
| 403 |
-
skillsmp,
|
| 404 |
-
skillsmp,
|
| 405 |
-
skillsmp,
|
| 406 |
-
skillsmp,
|
| 407 |
-
skillsmp,
|
| 408 |
-
skillsmp,
|
| 409 |
-
skillsmp,
|
| 410 |
-
skillsmp,
|
| 411 |
-
skillsmp,
|
| 412 |
-
skillsmp,
|
| 413 |
-
skillsmp,
|
| 414 |
-
skillsmp,
|
| 415 |
-
skillsmp,
|
| 416 |
-
skillsmp,
|
| 417 |
-
skillsmp,
|
| 418 |
-
skillsmp,
|
| 419 |
-
skillsmp,
|
| 420 |
-
skillsmp,
|
| 421 |
-
skillsmp,
|
| 422 |
-
skillsmp,
|
| 423 |
-
skillsmp,
|
| 424 |
-
skillsmp,
|
| 425 |
-
skillsmp,
|
| 426 |
-
skillsmp,
|
| 427 |
-
skillsmp,
|
| 428 |
-
skillsmp,
|
| 429 |
-
skillsmp,
|
| 430 |
-
skillsmp,
|
| 431 |
-
skillsmp,
|
| 432 |
-
skillsmp,
|
| 433 |
-
skillsmp,
|
| 434 |
-
skillsmp,
|
| 435 |
-
skillsmp,
|
| 436 |
-
skillsmp,
|
| 437 |
-
skillsmp,
|
| 438 |
-
skillsmp,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source,skill_name,classification,patterns,issue_count,severity
|
| 2 |
+
skillsmp,creative-writer,malicious,Credential Compromise;Remote Exploitation,5,CRITICAL
|
| 3 |
+
skillsmp,better-polymarket,malicious,Remote Exploitation,1,CRITICAL
|
| 4 |
+
skillsmp,bybit-trading,malicious,Defense Evasion;Remote Exploitation,4,CRITICAL
|
| 5 |
+
skillsmp,twitter-openclaw-2,malicious,Data Exfiltration,1,CRITICAL
|
| 6 |
+
skillsmp,reddit-trends,malicious,Defense Evasion,2,HIGH
|
| 7 |
+
skillsmp,abdullah4ai/openclaw-watchdog,malicious,Remote Exploitation,3,CRITICAL
|
| 8 |
+
skillsmp,agent-browser-6aigix9qi2tu,malicious,Defense Evasion,1,HIGH
|
| 9 |
+
skillsmp,api-helper,malicious,Remote Exploitation,3,CRITICAL
|
| 10 |
+
skillsmp,aslaep123,malicious,Defense Evasion,11,HIGH
|
| 11 |
+
skillsmp,auto-updater-ah1,malicious,Defense Evasion;Remote Exploitation,2,CRITICAL
|
| 12 |
+
skillsmp,badguy1,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation;Resource Hijacking,5,CRITICAL
|
| 13 |
+
skillsmp,base-trading-agent,malicious,Defense Evasion;Remote Exploitation,4,CRITICAL
|
| 14 |
+
skillsmp,better-polymarket,malicious,Remote Exploitation,2,CRITICAL
|
| 15 |
+
skillsmp,bird-xn,malicious,Defense Evasion,1,HIGH
|
| 16 |
+
skillsmp,skill-bomb-dog-sniff,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation,16,CRITICAL
|
| 17 |
+
skillsmp,c-goro,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation,9,CRITICAL
|
| 18 |
+
skillsmp,cgnl,malicious,Remote Exploitation,1,CRITICAL
|
| 19 |
+
skillsmp,clawdhub-itmu0eevs9,malicious,Defense Evasion,1,HIGH
|
| 20 |
+
skillsmp,clawhub,malicious,Defense Evasion,1,HIGH
|
| 21 |
+
skillsmp,coding-agent-pekjzav3x,malicious,Defense Evasion,1,HIGH
|
| 22 |
+
skillsmp,config-analyzer,malicious,Credential Compromise;Remote Exploitation,15,CRITICAL
|
| 23 |
+
skillsmp,creative-writer,malicious,Credential Compromise;Remote Exploitation,4,CRITICAL
|
| 24 |
+
skillsmp,cyberengage,malicious,Remote Exploitation,8,CRITICAL
|
| 25 |
+
skillsmp,danman60,malicious,Defense Evasion;Remote Exploitation,4,CRITICAL
|
| 26 |
+
skillsmp,das-monki,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation;Resource Hijacking,5,CRITICAL
|
| 27 |
+
skillsmp,process.py,malicious,Remote Exploitation,3,CRITICAL
|
| 28 |
+
skillsmp,deep-research-v2h55k2w,malicious,Defense Evasion,1,HIGH
|
| 29 |
+
skillsmp,devinism,malicious,Remote Exploitation,2,CRITICAL
|
| 30 |
+
skillsmp,dsiprouter-skill,malicious,Remote Exploitation,1,CRITICAL
|
| 31 |
+
skillsmp,sysadmin-with-a-shell,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation;Resource Hijacking,5,CRITICAL
|
| 32 |
+
skillsmp,environment-secrets-exfiltrator,malicious,Remote Exploitation,4,CRITICAL
|
| 33 |
+
skillsmp,excel-1kl,malicious,Defense Evasion,1,HIGH
|
| 34 |
+
skillsmp,fobonacci404,malicious,Remote Exploitation,2,CRITICAL
|
| 35 |
+
skillsmp,frontend-design,malicious,Remote Exploitation,1,CRITICAL
|
| 36 |
+
skillsmp,gog-g7ksras,malicious,Defense Evasion,1,HIGH
|
| 37 |
+
skillsmp,govpredict-ai,malicious,Remote Exploitation,2,CRITICAL
|
| 38 |
+
skillsmp,polymarket-bot,malicious,Defense Evasion,4,HIGH
|
| 39 |
+
skillsmp,houzl3416/antigravity-image,malicious,Remote Exploitation,3,CRITICAL
|
| 40 |
+
skillsmp,hummusonrails/arbitrum-dapp-skill,malicious,Remote Exploitation,1,CRITICAL
|
| 41 |
+
skillsmp,iqbalnaveliano,malicious,Defense Evasion,2,HIGH
|
| 42 |
+
skillsmp,kasyak0,malicious,Remote Exploitation,5,CRITICAL
|
| 43 |
+
skillsmp,linkedin-klt,malicious,Defense Evasion;Remote Exploitation,2,CRITICAL
|
| 44 |
+
skillsmp,linkedin-job-application-bot,malicious,Defense Evasion;Remote Exploitation,6,CRITICAL
|
| 45 |
+
skillsmp,lvcidpsyche,malicious,Credential Compromise;Data Exfiltration;Remote Exploitation,19,CRITICAL
|
| 46 |
+
skillsmp,lvy19811120-gif/polymarketagent,malicious,Defense Evasion,3,HIGH
|
| 47 |
+
skillsmp,molt-security-auditor-v3,malicious,Remote Exploitation,3,CRITICAL
|
| 48 |
+
skillsmp,moltbook-lm8,malicious,Defense Evasion,1,HIGH
|
| 49 |
+
skillsmp,moonshine-100rze,malicious,Defense Evasion,2,HIGH
|
| 50 |
+
skillsmp,nano-banana-pro,malicious,Defense Evasion;Remote Exploitation,2,CRITICAL
|
| 51 |
+
skillsmp,nano-pdf,malicious,Defense Evasion,1,HIGH
|
| 52 |
+
skillsmp,nervepay,malicious,Credential Compromise;Remote Exploitation,15,CRITICAL
|
| 53 |
+
skillsmp,noreplyboter,malicious,Remote Exploitation,2,CRITICAL
|
| 54 |
+
skillsmp,novirusallowed/clawpenflow,malicious,Remote Exploitation,1,CRITICAL
|
| 55 |
+
skillsmp,noypearl,malicious,Remote Exploitation,1,CRITICAL
|
| 56 |
+
skillsmp,orlyjamie,malicious,Credential Compromise,8,CRITICAL
|
| 57 |
+
skillsmp,pdf-1wso5,malicious,Defense Evasion,1,HIGH
|
| 58 |
+
skillsmp,pepe276/moltbookagent,malicious,Remote Exploitation,1,CRITICAL
|
| 59 |
+
skillsmp,phantom-q8ark,malicious,Remote Exploitation,1,CRITICAL
|
| 60 |
+
skillsmp,pierremenard,malicious,Defense Evasion,1,HIGH
|
| 61 |
+
skillsmp,polymarketbtc,malicious,Credential Compromise;Remote Exploitation,10,CRITICAL
|
| 62 |
+
skillsmp,polymarket-hyperliquid-trading,malicious,Defense Evasion,4,HIGH
|
| 63 |
+
skillsmp,proxy-scrap,malicious,Defense Evasion,3,HIGH
|
| 64 |
+
skillsmp,query-optimizer,malicious,Remote Exploitation,1,CRITICAL
|
| 65 |
+
skillsmp,recruitment-automation,malicious,Credential Compromise;Remote Exploitation,2,CRITICAL
|
| 66 |
+
skillsmp,reddit-trends,malicious,Defense Evasion,4,HIGH
|
| 67 |
+
skillsmp,rjnpage/rankaj,malicious,Data Exfiltration;Remote Exploitation,3,CRITICAL
|
| 68 |
+
skillsmp,sakaen736jih,malicious,Defense Evasion,48,HIGH
|
| 69 |
+
skillsmp,scccmsd,malicious,Remote Exploitation,2,CRITICAL
|
| 70 |
+
skillsmp,secure-sync,malicious,Remote Exploitation,5,CRITICAL
|
| 71 |
+
skillsmp,security-check,malicious,Credential Compromise,1,HIGH
|
| 72 |
+
skillsmp,shay0j,malicious,Defense Evasion,1,HIGH
|
| 73 |
+
skillsmp,summarize-v8w3,malicious,Defense Evasion;Remote Exploitation,3,CRITICAL
|
| 74 |
+
skillsmp,super-helper,malicious,Credential Compromise;Data Exfiltration;Persistence;Remote Exploitation,7,CRITICAL
|
| 75 |
+
skillsmp,text-processor,malicious,Remote Exploitation,1,CRITICAL
|
| 76 |
+
skillsmp,totally-legit-skill,malicious,Credential Compromise;Remote Exploitation;Resource Hijacking,4,CRITICAL
|
| 77 |
+
skillsmp,wacli-xcb,malicious,Defense Evasion;Remote Exploitation,2,CRITICAL
|
| 78 |
+
skillsmp,evilweather,malicious,Remote Exploitation,1,CRITICAL
|
| 79 |
+
skillsmp,get-weather,malicious,Data Exfiltration;Remote Exploitation,3,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
|
| 85 |
+
skillsmp,register-new-research-node,vulnerable,Hardcoded Credentials,2,HIGH
|
| 86 |
+
skillsmp,gitlog,vulnerable,Information Exposure,1,HIGH
|
| 87 |
+
skillsmp,localrank,vulnerable,Insecure Storage,1,MEDIUM
|
| 88 |
+
skillsmp,wearables-setup,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 89 |
+
skillsmp,google-workspace,vulnerable,Information Exposure,1,HIGH
|
| 90 |
+
skillsmp,book_phone_booth,vulnerable,Hardcoded Credentials,2,HIGH
|
| 91 |
+
skillsmp,redis-bug-tracking,vulnerable,Information Exposure,1,MEDIUM
|
| 92 |
+
skillsmp,enzoldhazam,vulnerable,Information Exposure,1,HIGH
|
| 93 |
+
skillsmp,github-integration,vulnerable,Information Exposure,5,HIGH
|
| 94 |
+
skillsmp,create-git-worktree,vulnerable,Information Exposure,1,HIGH
|
| 95 |
+
skillsmp,orchestrator,vulnerable,Hardcoded Credentials,1,HIGH
|
| 96 |
+
skillsmp,mcp-builder,vulnerable,Information Exposure,1,HIGH
|
| 97 |
+
skillsmp,solving_vrp,vulnerable,Hardcoded Credentials,2,HIGH
|
| 98 |
+
skillsmp,databases,vulnerable,Information Exposure,1,HIGH
|
| 99 |
+
skillsmp,motrix-download,vulnerable,Hardcoded Credentials,3,HIGH
|
| 100 |
+
skillsmp,antigravity-python-prompt,vulnerable,Hardcoded Credentials,2,HIGH
|
| 101 |
+
skillsmp,macos-spm-app-packaging,vulnerable,Artifact Leakage,1,MEDIUM
|
| 102 |
+
skillsmp,china-news-crawler,vulnerable,Hardcoded Credentials,1,HIGH
|
| 103 |
+
skillsmp,proj-deploy,vulnerable,Information Exposure,4,HIGH
|
| 104 |
+
skillsmp,sf-diagram-nanobananapro,vulnerable,Information Exposure,1,HIGH
|
| 105 |
+
skillsmp,youtube,vulnerable,Hardcoded Credentials,2,HIGH
|
| 106 |
+
skillsmp,x-report-generator,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 107 |
+
skillsmp,honcho-integration (docs directory),vulnerable,Information Exposure,1,MEDIUM
|
| 108 |
+
skillsmp,4325-design-system-cli,vulnerable,Information Exposure,2,HIGH
|
| 109 |
+
skillsmp,system-guardian,vulnerable,Information Exposure,2,HIGH
|
| 110 |
+
skillsmp,chat-navigator,vulnerable,Information Exposure,4,MEDIUM
|
| 111 |
+
skillsmp,google-calendar,vulnerable,Information Exposure,3,HIGH
|
| 112 |
+
skillsmp,claude-code-usage,vulnerable,Information Exposure,1,MEDIUM
|
| 113 |
+
skillsmp,claude-code-wingman,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 114 |
+
skillsmp,claude-connect,vulnerable,Information Exposure,7,HIGH
|
| 115 |
+
skillsmp,cloudflare-2,vulnerable,Information Exposure,2,HIGH
|
| 116 |
+
skillsmp,coolify,vulnerable,Information Exposure,3,HIGH
|
| 117 |
+
skillsmp,dokploy,vulnerable,Information Exposure,1,HIGH
|
| 118 |
+
skillsmp,ga4,vulnerable,Information Exposure,3,HIGH
|
| 119 |
+
skillsmp,gkeep,vulnerable,Information Exposure,1,HIGH
|
| 120 |
+
skillsmp,google-calendar,vulnerable,Information Exposure,3,HIGH
|
| 121 |
+
skillsmp,gsc,vulnerable,Information Exposure,3,HIGH
|
| 122 |
+
skillsmp,mcp-atlassian,vulnerable,Information Exposure,3,HIGH
|
| 123 |
+
skillsmp,model-router,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 124 |
+
skillsmp,moltchurch,vulnerable,Information Exposure,4,HIGH
|
| 125 |
+
skillsmp,nano-banana-antigravity,vulnerable,Hardcoded Credentials,2,HIGH
|
| 126 |
+
skillsmp,nest-devices,vulnerable,Information Exposure,3,HIGH
|
| 127 |
+
skillsmp,npm-proxy,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 128 |
+
skillsmp,obsidian-conversation-backup,vulnerable,Information Exposure,2,HIGH
|
| 129 |
+
skillsmp,parallel,vulnerable,Hardcoded Credentials,1,HIGH
|
| 130 |
+
skillsmp,picnic,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 131 |
+
skillsmp,polymarket-agent,vulnerable,Information Exposure,2,HIGH
|
| 132 |
+
skillsmp,security-monitor,vulnerable,Information Exposure,3,HIGH
|
| 133 |
+
skillsmp,standard-agentic-commerce-engine,vulnerable,Information Exposure,3,HIGH
|
| 134 |
+
skillsmp,strava,vulnerable,Information Exposure,2,HIGH
|
| 135 |
+
skillsmp,supermemory,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 136 |
+
skillsmp,ticktick,vulnerable,Information Exposure,3,HIGH
|
| 137 |
+
skillsmp,update-plus,vulnerable,Information Exposure,1,MEDIUM
|
| 138 |
+
skillsmp,withings-health,vulnerable,Information Exposure,1,HIGH
|
| 139 |
+
skillsmp,youtube-instant-article,vulnerable,Information Exposure,1,HIGH
|
| 140 |
+
skillsmp,fitbit-analytics,vulnerable,Information Exposure,2,HIGH
|
| 141 |
+
skillsmp,imap-idle,vulnerable,Information Exposure,3,HIGH
|
| 142 |
+
skillsmp,paytrigo-openclawbot,vulnerable,Hardcoded Credentials,1,HIGH
|
| 143 |
+
skillsmp,telegram-pairing-approver,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 144 |
+
skillsmp,universal-voice-agent,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 145 |
+
skillsmp,whoop-integration,vulnerable,Hardcoded Credentials,2,HIGH
|
| 146 |
+
skillsmp,withings-health,vulnerable,Information Exposure,2,HIGH
|
| 147 |
+
skillsmp,zeruai,vulnerable,Information Exposure,1,MEDIUM
|
| 148 |
+
skillsmp,zyla-api-hub-skill,vulnerable,Information Exposure,1,HIGH
|
| 149 |
+
skillsmp,og-openclawguard,vulnerable,Hardcoded Credentials,2,HIGH
|
| 150 |
+
skillsmp,ens-primary-name,vulnerable,Information Exposure,1,HIGH
|
| 151 |
+
skillsmp,qwen-image,vulnerable,Hardcoded Credentials;Insecure Storage,3,HIGH
|
| 152 |
+
skillsmp,dynamic-greeting,vulnerable,Hardcoded Credentials,2,HIGH
|
| 153 |
+
skillsmp,cardano-wallet,vulnerable,Information Exposure,2,MEDIUM
|
| 154 |
+
skillsmp,masumi-payments,vulnerable,Hardcoded Credentials;Information Exposure;Insecure Storage,5,HIGH
|
| 155 |
+
skillsmp,facebook-page,vulnerable,Hardcoded Credentials,1,HIGH
|
| 156 |
+
skillsmp,openclaw-runtime-monitor,vulnerable,Information Exposure,1,MEDIUM
|
| 157 |
+
skillsmp,azure-deploy,vulnerable,Information Exposure,2,HIGH
|
| 158 |
+
skillsmp,deploy-guardian,vulnerable,Information Exposure;Insecure Storage,2,MEDIUM
|
| 159 |
+
skillsmp,0xreisearch,vulnerable,Information Exposure,1,MEDIUM
|
| 160 |
+
skillsmp,0xrikt,vulnerable,Insecure Storage,1,MEDIUM
|
| 161 |
+
skillsmp,acastellana,vulnerable,Insecure Storage,1,MEDIUM
|
| 162 |
+
skillsmp,ad-ready,vulnerable,Information Exposure,1,MEDIUM
|
| 163 |
+
skillsmp,addis-assistant-stt,vulnerable,Information Exposure,4,HIGH
|
| 164 |
+
skillsmp,adrianmiller99/google-calendar,vulnerable,Information Exposure,2,HIGH
|
| 165 |
+
skillsmp,afajohn,vulnerable,Information Exposure,1,MEDIUM
|
| 166 |
+
skillsmp,agent-identity,vulnerable,Insecure Storage,2,MEDIUM
|
| 167 |
+
skillsmp,agent-sentinel,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 168 |
+
skillsmp,agentbus-relay-chat,vulnerable,Information Exposure;Insecure Storage,2,MEDIUM
|
| 169 |
+
skillsmp,aikek-api,vulnerable,Information Exposure,4,HIGH
|
| 170 |
+
skillsmp,ainekomacx,vulnerable,Information Exposure,2,HIGH
|
| 171 |
+
skillsmp,airc,vulnerable,Information Exposure,2,MEDIUM
|
| 172 |
+
skillsmp,aiusd-skills,vulnerable,Information Exposure,6,HIGH
|
| 173 |
+
skillsmp,albert-mr/arguedotfun,vulnerable,Information Exposure,3,HIGH
|
| 174 |
+
skillsmp,alebrega/zyla-api-hub-skill,vulnerable,Information Exposure,1,HIGH
|
| 175 |
+
skillsmp,alexrudloff,vulnerable,Information Exposure,2,HIGH
|
| 176 |
+
skillsmp,am-will,vulnerable,Hardcoded Credentials,1,HIGH
|
| 177 |
+
skillsmp,amanbhandula,vulnerable,Artifact Leakage;Information Exposure,2,MEDIUM
|
| 178 |
+
skillsmp,andrewjiang,vulnerable,Hardcoded Credentials,1,HIGH
|
| 179 |
+
skillsmp,andywilliams/dwlf,vulnerable,Information Exposure,2,HIGH
|
| 180 |
+
skillsmp,antigravity-image-gen,vulnerable,Information Exposure,1,HIGH
|
| 181 |
+
skillsmp,antigravity-rotator,vulnerable,Hardcoded Credentials,2,HIGH
|
| 182 |
+
skillsmp,archon-nostr,vulnerable,Information Exposure,5,HIGH
|
| 183 |
+
skillsmp,arena,vulnerable,Hardcoded Credentials,1,MEDIUM
|
| 184 |
+
skillsmp,arkade-wallet,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 185 |
+
skillsmp,arnarsson,vulnerable,Hardcoded Credentials,1,HIGH
|
| 186 |
+
skillsmp,staratheris-arya-reminders,vulnerable,Hardcoded Credentials,1,HIGH
|
| 187 |
+
skillsmp,nas-master,vulnerable,Information Exposure,1,HIGH
|
| 188 |
+
skillsmp,atakanermis,vulnerable,Information Exposure,1,MEDIUM
|
| 189 |
+
skillsmp,autonomous-agent,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 190 |
+
skillsmp,avantis-skill,vulnerable,Hardcoded Credentials;Insecure Storage,5,CRITICAL
|
| 191 |
+
skillsmp,avatar,vulnerable,Information Exposure,1,HIGH
|
| 192 |
+
skillsmp,base-wallet,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 193 |
+
skillsmp,bbdyno/email-summary,vulnerable,Information Exposure,1,HIGH
|
| 194 |
+
skillsmp,beauty-generation-free,vulnerable,Hardcoded Credentials,3,HIGH
|
| 195 |
+
skillsmp,benniethedev-clawdgigs,vulnerable,Information Exposure,3,HIGH
|
| 196 |
+
skillsmp,bilalmohamed187-cpu,vulnerable,Information Exposure,4,HIGH
|
| 197 |
+
skillsmp,bitbrujo,vulnerable,Insecure Storage,2,MEDIUM
|
| 198 |
+
skillsmp,bkrigmo1/bookmark-intelligence,vulnerable,Information Exposure,3,HIGH
|
| 199 |
+
skillsmp,blog-to-kindle,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 200 |
+
skillsmp,bobrenze-bot,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 201 |
+
skillsmp,bohdanpodvirnyi/strava,vulnerable,Information Exposure,3,HIGH
|
| 202 |
+
skillsmp,borahm,vulnerable,Information Exposure,3,HIGH
|
| 203 |
+
skillsmp,botond-rackhost/ansible-skill,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 204 |
+
skillsmp,botroast,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 205 |
+
skillsmp,briansmith80/zoho-email-integration,vulnerable,Information Exposure,3,HIGH
|
| 206 |
+
skillsmp,bring,vulnerable,Information Exposure,4,HIGH
|
| 207 |
+
skillsmp,browser-use-api,vulnerable,Information Exposure,6,HIGH
|
| 208 |
+
skillsmp,buy-anything,vulnerable,Information Exposure,2,HIGH
|
| 209 |
+
skillsmp,caicrucial/clawmind,vulnerable,Information Exposure,3,HIGH
|
| 210 |
+
skillsmp,camera-watch,vulnerable,Artifact Leakage;Information Exposure,3,HIGH
|
| 211 |
+
skillsmp,capability-evolver,vulnerable,Hardcoded Credentials,1,HIGH
|
| 212 |
+
skillsmp,cdermott7/locus,vulnerable,Information Exposure,3,HIGH
|
| 213 |
+
skillsmp,channel,vulnerable,Information Exposure,1,MEDIUM
|
| 214 |
+
skillsmp,charlievintage,vulnerable,Hardcoded Credentials,2,HIGH
|
| 215 |
+
skillsmp,chocomintx,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 216 |
+
skillsmp,chrisk60331/backboard,vulnerable,Information Exposure,1,HIGH
|
| 217 |
+
skillsmp,chuxo,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 218 |
+
skillsmp,vrtlly-claw-club,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 219 |
+
skillsmp,etrade-pelosi-bot,vulnerable,Information Exposure,6,HIGH
|
| 220 |
+
skillsmp,clawbrain-v3-skill,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 221 |
+
skillsmp,clawcolab,vulnerable,Information Exposure,3,HIGH
|
| 222 |
+
skillsmp,jameseball-clawdio,vulnerable,Information Exposure,1,HIGH
|
| 223 |
+
skillsmp,clawdsense-skill,vulnerable,Hardcoded Credentials,1,HIGH
|
| 224 |
+
skillsmp,clawdzap,vulnerable,Information Exposure;Insecure Storage,11,HIGH
|
| 225 |
+
skillsmp,clawiskill,vulnerable,Information Exposure,2,HIGH
|
| 226 |
+
skillsmp,claw-land,vulnerable,Information Exposure,4,HIGH
|
| 227 |
+
skillsmp,clawmegle-staking,vulnerable,Information Exposure,8,HIGH
|
| 228 |
+
skillsmp,ds160-autofill,vulnerable,Information Exposure,1,MEDIUM
|
| 229 |
+
skillsmp,co1onnese/quietmail,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 230 |
+
skillsmp,codecustard-kaspa-dev,vulnerable,Information Exposure,4,HIGH
|
| 231 |
+
skillsmp,openclaw-confluence-skill,vulnerable,Information Exposure,2,HIGH
|
| 232 |
+
skillsmp,contextoverflow,vulnerable,Information Exposure,1,MEDIUM
|
| 233 |
+
skillsmp,coolmanns,vulnerable,Hardcoded Credentials,6,HIGH
|
| 234 |
+
skillsmp,coreyleung-art,vulnerable,Information Exposure,2,HIGH
|
| 235 |
+
skillsmp,crazypeace,vulnerable,Information Exposure,2,HIGH
|
| 236 |
+
skillsmp,createpjf,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 237 |
+
skillsmp,crewai-workflows,vulnerable,Hardcoded Credentials,1,HIGH
|
| 238 |
+
skillsmp,custom-smtp-sender,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 239 |
+
skillsmp,cyberkov/pulse,vulnerable,Hardcoded Credentials,2,HIGH
|
| 240 |
+
skillsmp,dagmawibabi/addis-assistant-stt,vulnerable,Information Exposure,4,HIGH
|
| 241 |
+
skillsmp,daily-review,vulnerable,Hardcoded Credentials,2,HIGH
|
| 242 |
+
skillsmp,dannydvm,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 243 |
+
skillsmp,davideasaf/monarch-money,vulnerable,Information Exposure,7,HIGH
|
| 244 |
+
skillsmp,daxiongmao87/gimhub,vulnerable,Information Exposure,3,HIGH
|
| 245 |
+
skillsmp,dfinzer,vulnerable,Information Exposure,4,MEDIUM
|
| 246 |
+
skillsmp,dialpad,vulnerable,Hardcoded Credentials,1,HIGH
|
| 247 |
+
skillsmp,digitaladaption,vulnerable,Insecure Storage,1,MEDIUM
|
| 248 |
+
skillsmp,dimkag79,vulnerable,Hardcoded Credentials,3,MEDIUM
|
| 249 |
+
skillsmp,discord-server-ctrl,vulnerable,Information Exposure,3,HIGH
|
| 250 |
+
skillsmp,dokploy,vulnerable,Information Exposure,2,HIGH
|
| 251 |
+
skillsmp,dropbox-integration,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 252 |
+
skillsmp,droppingbeans,vulnerable,Information Exposure,5,MEDIUM
|
| 253 |
+
skillsmp,dxdleady,vulnerable,Information Exposure;Insecure Storage,8,HIGH
|
| 254 |
+
skillsmp,dyson-cli,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 255 |
+
skillsmp,dytto-agent-skill,vulnerable,Artifact Leakage;Information Exposure,2,HIGH
|
| 256 |
+
skillsmp,easonc13,vulnerable,Information Exposure,5,HIGH
|
| 257 |
+
skillsmp,ecto-connection,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 258 |
+
skillsmp,einstein,vulnerable,Insecure Storage,1,MEDIUM
|
| 259 |
+
skillsmp,eltontay-circle-wallet,vulnerable,Information Exposure,1,HIGH
|
| 260 |
+
skillsmp,emilankerwiik/openkrill,vulnerable,Information Exposure,3,HIGH
|
| 261 |
+
skillsmp,endlessjour9527,vulnerable,Information Exposure,10,HIGH
|
| 262 |
+
skillsmp,env-sync,vulnerable,Information Exposure,1,HIGH
|
| 263 |
+
skillsmp,esorincom,vulnerable,Insecure Storage,1,MEDIUM
|
| 264 |
+
skillsmp,eth3rnit3/alexandrie,vulnerable,Information Exposure,2,HIGH
|
| 265 |
+
skillsmp,eyebots,vulnerable,Information Exposure,2,MEDIUM
|
| 266 |
+
skillsmp,farcaster-agent,vulnerable,Information Exposure,3,HIGH
|
| 267 |
+
skillsmp,feishu-doc-reader,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 268 |
+
skillsmp,finance-news,vulnerable,Information Exposure,2,HIGH
|
| 269 |
+
skillsmp,fitbit-analytics,vulnerable,Hardcoded Credentials;Information Exposure,6,HIGH
|
| 270 |
+
skillsmp,fliz-ai-video-generator,vulnerable,Information Exposure,1,HIGH
|
| 271 |
+
skillsmp,freshrss-reader,vulnerable,Information Exposure,1,HIGH
|
| 272 |
+
skillsmp,fumarole16-afk,vulnerable,Information Exposure,4,HIGH
|
| 273 |
+
skillsmp,ga4,vulnerable,Information Exposure,2,HIGH
|
| 274 |
+
skillsmp,tencentcloud-cvm-skill,vulnerable,Information Exposure,6,HIGH
|
| 275 |
+
skillsmp,garibong-labs,vulnerable,Information Exposure,1,HIGH
|
| 276 |
+
skillsmp,garmin-connect,vulnerable,Information Exposure,10,HIGH
|
| 277 |
+
skillsmp,genecyber,vulnerable,Information Exposure,5,HIGH
|
| 278 |
+
skillsmp,gimhub,vulnerable,Information Exposure,3,HIGH
|
| 279 |
+
skillsmp,github-pat,vulnerable,Information Exposure,4,HIGH
|
| 280 |
+
skillsmp,gkeep,vulnerable,Information Exposure,2,HIGH
|
| 281 |
+
skillsmp,globalcaos,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 282 |
+
skillsmp,glory00789/moltbook-post-verified,vulnerable,Information Exposure,2,MEDIUM
|
| 283 |
+
skillsmp,godaddy,vulnerable,Information Exposure,3,HIGH
|
| 284 |
+
skillsmp,godsboy,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 285 |
+
skillsmp,agentic-spicy-food-lafeitu,vulnerable,Information Exposure,2,HIGH
|
| 286 |
+
skillsmp,bring,vulnerable,Information Exposure,3,HIGH
|
| 287 |
+
skillsmp,gstdcoin-a2a-network,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 288 |
+
skillsmp,clawdzap,vulnerable,Information Exposure,10,CRITICAL
|
| 289 |
+
skillsmp,gxsy886,vulnerable,Insecure Storage,1,MEDIUM
|
| 290 |
+
skillsmp,gzlicanyi/imap-smtp-email,vulnerable,Information Exposure,3,HIGH
|
| 291 |
+
skillsmp,hadihammurabi/gowok,vulnerable,Information Exposure,4,HIGH
|
| 292 |
+
skillsmp,heiheimaoya,vulnerable,Information Exposure,2,HIGH
|
| 293 |
+
skillsmp,hexiaochun,vulnerable,Hardcoded Credentials,3,HIGH
|
| 294 |
+
skillsmp,hga030888-blip,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 295 |
+
skillsmp,hherzai-crypto/resumeclaw,vulnerable,Information Exposure,5,HIGH
|
| 296 |
+
skillsmp,hightower6eu,vulnerable,Hardcoded Credentials;Information Exposure;Insecure Storage,35,HIGH
|
| 297 |
+
skillsmp,hisxo,vulnerable,Information Exposure,3,HIGH
|
| 298 |
+
skillsmp,hjanuschka,vulnerable,Hardcoded Credentials,1,HIGH
|
| 299 |
+
skillsmp,hotdog,vulnerable,Hardcoded Credentials,1,HIGH
|
| 300 |
+
skillsmp,hustle,vulnerable,Information Exposure,1,MEDIUM
|
| 301 |
+
skillsmp,idea,vulnerable,Hardcoded Credentials,1,HIGH
|
| 302 |
+
skillsmp,ilpvc/file-repair-skill,vulnerable,Information Exposure,1,HIGH
|
| 303 |
+
skillsmp,imap-email,vulnerable,Information Exposure,2,HIGH
|
| 304 |
+
skillsmp,imsg-autoresponder,vulnerable,Information Exposure,6,MEDIUM
|
| 305 |
+
skillsmp,in-liberty420/sec-filing-watcher,vulnerable,Hardcoded Credentials,1,HIGH
|
| 306 |
+
skillsmp,ipedrax,vulnerable,Information Exposure,2,HIGH
|
| 307 |
+
skillsmp,nanobanana-ppt-skills,vulnerable,Information Exposure,1,HIGH
|
| 308 |
+
skillsmp,jamesalmeida,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 309 |
+
skillsmp,jayphen,vulnerable,Information Exposure,1,HIGH
|
| 310 |
+
skillsmp,jb-hook-deploy-ui,vulnerable,Information Exposure,2,HIGH
|
| 311 |
+
skillsmp,jbbottoms/chaos-lab,vulnerable,Information Exposure,1,HIGH
|
| 312 |
+
skillsmp,jdrhyne,vulnerable,Information Exposure,4,HIGH
|
| 313 |
+
skillsmp,jeremymahieu-listonic,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 314 |
+
skillsmp,jestersimpps/fail2ban-reporter,vulnerable,Information Exposure,6,HIGH
|
| 315 |
+
skillsmp,weatherkit,vulnerable,Information Exposure,2,HIGH
|
| 316 |
+
skillsmp,project-context-sync,vulnerable,Information Exposure,2,HIGH
|
| 317 |
+
skillsmp,josephrp,vulnerable,Information Exposure,4,MEDIUM
|
| 318 |
+
skillsmp,dokploy,vulnerable,Information Exposure,1,HIGH
|
| 319 |
+
skillsmp,jswortz/secret-manager,vulnerable,Information Exposure,3,HIGH
|
| 320 |
+
skillsmp,justinhartbiz,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 321 |
+
skillsmp,kaankacar,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 322 |
+
skillsmp,kagi-search,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 323 |
+
skillsmp,karakeep,vulnerable,Information Exposure,2,HIGH
|
| 324 |
+
skillsmp,kellyclaudeai,vulnerable,Information Exposure;Insecure Storage,10,HIGH
|
| 325 |
+
skillsmp,kesslerio,vulnerable,Hardcoded Credentials,1,HIGH
|
| 326 |
+
skillsmp,uid-life,vulnerable,Insecure Storage,2,MEDIUM
|
| 327 |
+
skillsmp,discord-voice-memo-upgrade,vulnerable,Information Exposure,2,HIGH
|
| 328 |
+
skillsmp,obsidian-conversation-backup,vulnerable,Information Exposure,3,HIGH
|
| 329 |
+
skillsmp,lavish0000/peaq-robotics,vulnerable,Information Exposure,1,MEDIUM
|
| 330 |
+
skillsmp,lazaruseth/receipts-guard,vulnerable,Insecure Storage,1,MEDIUM
|
| 331 |
+
skillsmp,lazymonlabs,vulnerable,Information Exposure,2,HIGH
|
| 332 |
+
skillsmp,leeknowsai/clawfriend,vulnerable,Information Exposure,1,MEDIUM
|
| 333 |
+
skillsmp,legacy-testimony-skill,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 334 |
+
skillsmp,lidarr,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 335 |
+
skillsmp,linear-webhook,vulnerable,Information Exposure,3,HIGH
|
| 336 |
+
skillsmp,linkedin-monitor,vulnerable,Insecure Storage,2,MEDIUM
|
| 337 |
+
skillsmp,linux-patcher,vulnerable,Information Exposure,1,HIGH
|
| 338 |
+
skillsmp,location-safety-skill,vulnerable,Hardcoded Credentials,2,HIGH
|
| 339 |
+
skillsmp,locus,vulnerable,Information Exposure,2,HIGH
|
| 340 |
+
skillsmp,lucaspdude-persistent-private-agent-memory,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 341 |
+
skillsmp,luruibu,vulnerable,Hardcoded Credentials,6,HIGH
|
| 342 |
+
skillsmp,lycohana,vulnerable,Hardcoded Credentials,2,HIGH
|
| 343 |
+
skillsmp,macos-spm-app-packaging,vulnerable,Artifact Leakage,1,MEDIUM
|
| 344 |
+
skillsmp,archon-nostr,vulnerable,Information Exposure,2,MEDIUM
|
| 345 |
+
skillsmp,maishou,vulnerable,Information Exposure,1,MEDIUM
|
| 346 |
+
skillsmp,massiveadam,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 347 |
+
skillsmp,mastodon-publisher,vulnerable,Information Exposure,2,HIGH
|
| 348 |
+
skillsmp,matrix-meta,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 349 |
+
skillsmp,atlassian-mcp,vulnerable,Information Exposure,2,MEDIUM
|
| 350 |
+
skillsmp,mersal-orem,vulnerable,Hardcoded Credentials,1,HIGH
|
| 351 |
+
skillsmp,meshguard,vulnerable,Information Exposure,5,HIGH
|
| 352 |
+
skillsmp,microsoft-todo,vulnerable,Information Exposure,2,HIGH
|
| 353 |
+
skillsmp,miniflux,vulnerable,Information Exposure,1,HIGH
|
| 354 |
+
skillsmp,mishafyi,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 355 |
+
skillsmp,molta,vulnerable,Information Exposure,2,HIGH
|
| 356 |
+
skillsmp,moltbook-daily-digest,vulnerable,Insecure Storage,1,MEDIUM
|
| 357 |
+
skillsmp,moltcheck,vulnerable,Information Exposure,1,MEDIUM
|
| 358 |
+
skillsmp,moltguard,vulnerable,Hardcoded Credentials,2,HIGH
|
| 359 |
+
skillsmp,monarch-money,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 360 |
+
skillsmp,ms365-tenant-manager,vulnerable,Hardcoded Credentials,1,HIGH
|
| 361 |
+
skillsmp,antigravity-quota,vulnerable,Hardcoded Credentials,2,HIGH
|
| 362 |
+
skillsmp,nas-movie-download,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 363 |
+
skillsmp,nerveband,vulnerable,Hardcoded Credentials,2,HIGH
|
| 364 |
+
skillsmp,nostr-social,vulnerable,Information Exposure,2,HIGH
|
| 365 |
+
skillsmp,notebooklm,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 366 |
+
skillsmp,nowloady,vulnerable,Information Exposure,5,HIGH
|
| 367 |
+
skillsmp,npm-proxy,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 368 |
+
skillsmp,oceanswave,vulnerable,Information Exposure,1,HIGH
|
| 369 |
+
skillsmp,odds-api-io,vulnerable,Information Exposure,1,HIGH
|
| 370 |
+
skillsmp,open-broker,vulnerable,Information Exposure;Insecure Storage,2,HIGH
|
| 371 |
+
skillsmp,openclaw-backup-optimized,vulnerable,Information Exposure,1,MEDIUM
|
| 372 |
+
skillsmp,openclaw-consensus-bot,vulnerable,Information Exposure,1,MEDIUM
|
| 373 |
+
skillsmp,openclaw-doctor-pro,vulnerable,Information Exposure,3,HIGH
|
| 374 |
+
skillsmp,openclaw-email-bypass,vulnerable,Information Exposure,2,HIGH
|
| 375 |
+
skillsmp,capability-evolver,vulnerable,Hardcoded Credentials,1,HIGH
|
| 376 |
+
skillsmp,openguardrails-for-openclaw,vulnerable,Hardcoded Credentials,1,HIGH
|
| 377 |
+
skillsmp,openkm-rest,vulnerable,Information Exposure,2,HIGH
|
| 378 |
+
skillsmp,operatingdev/mintyouragent,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 379 |
+
skillsmp,ops-framework,vulnerable,Hardcoded Credentials,1,HIGH
|
| 380 |
+
skillsmp,orosha-ai,vulnerable,Hardcoded Credentials;Insecure Storage,4,HIGH
|
| 381 |
+
skillsmp,pacelabs,vulnerable,Information Exposure,6,HIGH
|
| 382 |
+
skillsmp,parallel,vulnerable,Hardcoded Credentials,1,HIGH
|
| 383 |
+
skillsmp,paytrigo-openclawbot,vulnerable,Hardcoded Credentials,2,HIGH
|
| 384 |
+
skillsmp,paytrigo-openclawbot,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 385 |
+
skillsmp,stremio-cast,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 386 |
+
skillsmp,pegasus02/xiaomi-home,vulnerable,Hardcoded Credentials,3,HIGH
|
| 387 |
+
skillsmp,pektech,vulnerable,Information Exposure,1,HIGH
|
| 388 |
+
skillsmp,pendzoncymisio,vulnerable,Information Exposure,4,HIGH
|
| 389 |
+
skillsmp,social-hub,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 390 |
+
skillsmp,pes0,vulnerable,Information Exposure;Insecure Storage,4,HIGH
|
| 391 |
+
skillsmp,youbaolian,vulnerable,Insecure Storage,1,MEDIUM
|
| 392 |
+
skillsmp,photonixlaser-ux,vulnerable,Hardcoded Credentials;Information Exposure,13,HIGH
|
| 393 |
+
skillsmp,picnic,vulnerable,Information Exposure,3,HIGH
|
| 394 |
+
skillsmp,pipethedev-polyclaw,vulnerable,Information Exposure,3,HIGH
|
| 395 |
+
skillsmp,pixiv-skill,vulnerable,Hardcoded Credentials;Information Exposure;Insecure Storage,7,HIGH
|
| 396 |
+
skillsmp,meegle-mcp-skill,vulnerable,Information Exposure,1,MEDIUM
|
| 397 |
+
skillsmp,playdadev,vulnerable,Information Exposure,2,MEDIUM
|
| 398 |
+
skillsmp,pntrivedy,vulnerable,Hardcoded Credentials,3,HIGH
|
| 399 |
+
skillsmp,polyedge,vulnerable,Information Exposure,1,CRITICAL
|
| 400 |
+
skillsmp,postiz-ext,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 401 |
+
skillsmp,ok-computers,vulnerable,Hardcoded Credentials,1,MEDIUM
|
| 402 |
+
skillsmp,preston-thiele,vulnerable,Information Exposure,4,HIGH
|
| 403 |
+
skillsmp,project-orchestrator,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 404 |
+
skillsmp,pulse,vulnerable,Hardcoded Credentials,3,HIGH
|
| 405 |
+
skillsmp,purch-agent/agentic-commerce,vulnerable,Information Exposure,15,MEDIUM
|
| 406 |
+
skillsmp,purelymail,vulnerable,Information Exposure,5,HIGH
|
| 407 |
+
skillsmp,puterjam/roon-controller,vulnerable,Information Exposure,2,HIGH
|
| 408 |
+
skillsmp,quodd,vulnerable,Information Exposure,2,HIGH
|
| 409 |
+
skillsmp,r00tid/token-alert,vulnerable,Hardcoded Credentials,1,HIGH
|
| 410 |
+
skillsmp,r2-storage,vulnerable,Information Exposure;Insecure Storage,8,HIGH
|
| 411 |
+
skillsmp,bun-runtime,vulnerable,Information Exposure,2,HIGH
|
| 412 |
+
skillsmp,rainy-cogmet/zettelkasten,vulnerable,Information Exposure,1,MEDIUM
|
| 413 |
+
skillsmp,raphbaph/grok-imagine-render,vulnerable,Information Exposure,1,HIGH
|
| 414 |
+
skillsmp,reachy-mini,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 415 |
+
skillsmp,rei,vulnerable,Information Exposure,3,HIGH
|
| 416 |
+
skillsmp,restart-guard,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 417 |
+
skillsmp,resumeclaw,vulnerable,Information Exposure,4,HIGH
|
| 418 |
+
skillsmp,project-orchestrator,vulnerable,Hardcoded Credentials;Information Exposure,4,HIGH
|
| 419 |
+
skillsmp,lifi-orchestrator,vulnerable,Information Exposure,2,MEDIUM
|
| 420 |
+
skillsmp,rita5fr,vulnerable,Hardcoded Credentials;Information Exposure,5,HIGH
|
| 421 |
+
skillsmp,roger0808,vulnerable,Hardcoded Credentials;Information Exposure,27,HIGH
|
| 422 |
+
skillsmp,rojasjuniore,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 423 |
+
skillsmp,roon-controller,vulnerable,Information Exposure,1,HIGH
|
| 424 |
+
skillsmp,rosepuppy,vulnerable,Information Exposure;Insecure Storage,4,MEDIUM
|
| 425 |
+
skillsmp,ryanhong666,vulnerable,Information Exposure,1,HIGH
|
| 426 |
+
skillsmp,sameerbajaj,vulnerable,Information Exposure,3,HIGH
|
| 427 |
+
skillsmp,sarthib7,vulnerable,Information Exposure;Insecure Storage,4,MEDIUM
|
| 428 |
+
skillsmp,sbaker5-polyedge,vulnerable,Information Exposure,1,CRITICAL
|
| 429 |
+
skillsmp,looper-golf,vulnerable,Insecure Storage,1,MEDIUM
|
| 430 |
+
skillsmp,sec-filing-watcher,vulnerable,Hardcoded Credentials,1,HIGH
|
| 431 |
+
skillsmp,security-monitor,vulnerable,Information Exposure,2,HIGH
|
| 432 |
+
skillsmp,send-me-my-files-r2-upload-with-short-lived-signed-urls,vulnerable,Information Exposure;Insecure Storage,11,HIGH
|
| 433 |
+
skillsmp,servicenow-agent,vulnerable,Information Exposure,2,HIGH
|
| 434 |
+
skillsmp,shawnminh,vulnerable,Information Exposure,12,HIGH
|
| 435 |
+
skillsmp,shekohex-miniflux,vulnerable,Information Exposure,2,HIGH
|
| 436 |
+
skillsmp,sikey53/brawlnet,vulnerable,Information Exposure,5,HIGH
|
| 437 |
+
skillsmp,kagi-search,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 438 |
+
skillsmp,skillfence,vulnerable,Information Exposure;Insecure Storage,3,MEDIUM
|
| 439 |
+
skillsmp,slack-personal,vulnerable,Information Exposure,2,HIGH
|
| 440 |
+
skillsmp,slempiam,vulnerable,Information Exposure,2,HIGH
|
| 441 |
+
skillsmp,snowshadow,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 442 |
+
skillsmp,solana-defi-agent,vulnerable,Information Exposure,2,MEDIUM
|
| 443 |
+
skillsmp,solclaw,vulnerable,Information Exposure,2,MEDIUM
|
| 444 |
+
skillsmp,soroban-trader,vulnerable,Hardcoded Credentials;Information Exposure,9,HIGH
|
| 445 |
+
skillsmp,sparkbtcbot,vulnerable,Information Exposure,3,HIGH
|
| 446 |
+
skillsmp,spiceoogway/moltmarkets-trader,vulnerable,Information Exposure,15,HIGH
|
| 447 |
+
skillsmp,spirosrap,vulnerable,Information Exposure,2,HIGH
|
| 448 |
+
skillsmp,spsneo/speedtest,vulnerable,Insecure Storage,1,MEDIUM
|
| 449 |
+
skillsmp,sschepis,vulnerable,Information Exposure,10,HIGH
|
| 450 |
+
skillsmp,arena (sscottdev),vulnerable,Hardcoded Credentials,15,HIGH
|
| 451 |
+
skillsmp,standard-agentic-commerce-engine,vulnerable,Information Exposure,3,HIGH
|
| 452 |
+
skillsmp,staratheris,vulnerable,Information Exposure,2,MEDIUM
|
| 453 |
+
skillsmp,strava,vulnerable,Information Exposure,3,HIGH
|
| 454 |
+
skillsmp,strava-cycling-coach,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 455 |
+
skillsmp,subtitles,vulnerable,Information Exposure,5,HIGH
|
| 456 |
+
skillsmp,supermarkt-prijzen,vulnerable,Hardcoded Credentials;Information Exposure,17,HIGH
|
| 457 |
+
skillsmp,sxela,vulnerable,Information Exposure,1,HIGH
|
| 458 |
+
skillsmp,synology-surveillance-skill,vulnerable,Information Exposure,3,HIGH
|
| 459 |
+
skillsmp,tedkaczynski-the-bot,vulnerable,Information Exposure,4,HIGH
|
| 460 |
+
skillsmp,telegram-cloud-storage,vulnerable,Information Exposure,1,HIGH
|
| 461 |
+
skillsmp,tencentcloud-cos-skill,vulnerable,Information Exposure,3,HIGH
|
| 462 |
+
skillsmp,tencentcloud-cvm-skill,vulnerable,Information Exposure,3,HIGH
|
| 463 |
+
skillsmp,trmnl-display,vulnerable,Information Exposure,1,MEDIUM
|
| 464 |
+
skillsmp,tesla-fleet-api,vulnerable,Information Exposure,2,HIGH
|
| 465 |
+
skillsmp,tezatezaz,vulnerable,Information Exposure;Insecure Storage,5,HIGH
|
| 466 |
+
skillsmp,therohitdas,vulnerable,Information Exposure;Insecure Storage,10,HIGH
|
| 467 |
+
skillsmp,thesethrose,vulnerable,Information Exposure,3,HIGH
|
| 468 |
+
skillsmp,thomaslwang,vulnerable,Hardcoded Credentials,2,HIGH
|
| 469 |
+
skillsmp,threads,vulnerable,Information Exposure,1,HIGH
|
| 470 |
+
skillsmp,submit-to-agentbeat,vulnerable,Information Exposure,6,HIGH
|
| 471 |
+
skillsmp,danube-tools,vulnerable,Information Exposure,4,HIGH
|
| 472 |
+
skillsmp,topitip/imap-idle,vulnerable,Information Exposure,2,HIGH
|
| 473 |
+
skillsmp,trakt-tv,vulnerable,Information Exposure,8,HIGH
|
| 474 |
+
skillsmp,transcript,vulnerable,Information Exposure,6,HIGH
|
| 475 |
+
skillsmp,transcriptapi,vulnerable,Information Exposure,4,HIGH
|
| 476 |
+
skillsmp,molttok,vulnerable,Hardcoded Credentials;Information Exposure;Insecure Storage,5,HIGH
|
| 477 |
+
skillsmp,tsheasha/reverse-proxy-local,vulnerable,Information Exposure;Insecure Storage,6,HIGH
|
| 478 |
+
skillsmp,buy-anything,vulnerable,Information Exposure,1,HIGH
|
| 479 |
+
skillsmp,tunaissacoding,vulnerable,Information Exposure,3,HIGH
|
| 480 |
+
skillsmp,twitter-search-skill,vulnerable,Information Exposure,3,HIGH
|
| 481 |
+
skillsmp,uid-node,vulnerable,Information Exposure;Insecure Storage,3,MEDIUM
|
| 482 |
+
skillsmp,unifi,vulnerable,Information Exposure,1,HIGH
|
| 483 |
+
skillsmp,universal-voice-agent,vulnerable,Hardcoded Credentials,9,HIGH
|
| 484 |
+
skillsmp,valyu-search,vulnerable,Insecure Storage,1,MEDIUM
|
| 485 |
+
skillsmp,video-transcript,vulnerable,Information Exposure,5,HIGH
|
| 486 |
+
skillsmp,vikunja-fast,vulnerable,Information Exposure,2,HIGH
|
| 487 |
+
skillsmp,visionik,vulnerable,Information Exposure,1,HIGH
|
| 488 |
+
skillsmp,voice-ui,vulnerable,Information Exposure,3,HIGH
|
| 489 |
+
skillsmp,voidborne,vulnerable,Information Exposure,4,HIGH
|
| 490 |
+
skillsmp,warm-wm,vulnerable,Information Exposure,1,HIGH
|
| 491 |
+
skillsmp,warren-deploy,vulnerable,Information Exposure,1,MEDIUM
|
| 492 |
+
skillsmp,weather-data-fetcher,vulnerable,Information Exposure,3,HIGH
|
| 493 |
+
skillsmp,weird-aftertaste,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 494 |
+
skillsmp,whoop,vulnerable,Information Exposure,2,HIGH
|
| 495 |
+
skillsmp,whoop-morning,vulnerable,Information Exposure,1,HIGH
|
| 496 |
+
skillsmp,withings-health,vulnerable,Information Exposure,1,HIGH
|
| 497 |
+
skillsmp,ec-x-video-transcribe,vulnerable,Information Exposure,4,HIGH
|
| 498 |
+
skillsmp,x402-client,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 499 |
+
skillsmp,xasus1,vulnerable,Information Exposure,2,HIGH
|
| 500 |
+
skillsmp,xian-node-skill,vulnerable,Information Exposure,2,HIGH
|
| 501 |
+
skillsmp,xiaohongshutools,vulnerable,Information Exposure,4,HIGH
|
| 502 |
+
skillsmp,claude-code-wingman,vulnerable,Information Exposure,4,HIGH
|
| 503 |
+
skillsmp,youbaolian,vulnerable,Hardcoded Credentials;Information Exposure,2,HIGH
|
| 504 |
+
skillsmp,youtube-api,vulnerable,Information Exposure;Insecure Storage,14,HIGH
|
| 505 |
+
skillsmp,youtube-search,vulnerable,Information Exposure,3,HIGH
|
| 506 |
+
skillsmp,yt,vulnerable,Information Exposure,6,HIGH
|
| 507 |
+
skillsmp,yt-to-blog,vulnerable,Hardcoded Credentials;Information Exposure,3,HIGH
|
| 508 |
+
skillsmp,yukihamada-voice-ui,vulnerable,Information Exposure,4,HIGH
|
| 509 |
+
skillsmp,zenixp,vulnerable,Information Exposure,2,HIGH
|
| 510 |
+
skillsmp,zeph-ai-dev,vulnerable,Hardcoded Credentials,1,HIGH
|
| 511 |
+
skillsmp,siyuan-task-skill,vulnerable,Hardcoded Credentials,2,HIGH
|
| 512 |
+
skillsmp,generating-compliance-reports,vulnerable,Information Exposure,2,HIGH
|
| 513 |
+
skillsmp,arxiv-search,vulnerable,Insecure Storage,1,MEDIUM
|
| 514 |
+
skillsmp,medrxiv-search,vulnerable,Information Exposure;Insecure Storage,3,HIGH
|
| 515 |
+
skillsmp,anthropic-token-refresh,vulnerable,Information Exposure,4,HIGH
|
| 516 |
+
skillsmp,memento,vulnerable,Information Exposure;Insecure Storage,9,HIGH
|
| 517 |
+
skillsmp,gemini-gen,vulnerable,Hardcoded Credentials,2,HIGH
|
| 518 |
+
skillsmp,backup-restore,vulnerable,Information Exposure,3,HIGH
|
| 519 |
+
skillsmp,team-reconcile,vulnerable,Information Exposure,1,MEDIUM
|
| 520 |
+
skillsmp,masumi-payments,vulnerable,Information Exposure,5,HIGH
|
| 521 |
+
skillsmp,agent-inbox,vulnerable,Information Exposure,2,HIGH
|