Scan dependencies with trivy grype and pip audit
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill vulnerability-scanning --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vulnerability Scanning?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-vulnerability-scanning)More formats (shields.io, HTML) on the badges page.
---
name: vulnerability-scanning
description: "Scan dependencies with trivy grype and pip audit"
---
# Vulnerability Scanning
## Python Dependencies
```bash
pip install pip-audit
pip-audit
pip install safety
safety check
```
## Containers (Trivy)
```bash
trivy image myapp:latest
trivy fs --scanners vuln .
```
## Grype
```bash
grype myapp:latest
grype dir:.
```
## CI Integration
```yaml
- run: pip-audit || true # Warnings only
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!