scan_library_vulnerabilities
Scan and identify vulnerabilities in code libraries across multiple ecosystems using OSINT sources. Generate detailed security reports with severity levels and actionable recommendations.
Instructions
Comprehensive vulnerability scan using OSINT sources (OSV, GitHub Advisories, Safety DB).
Args:
library_name: Name of the library to scan (e.g., "fastapi", "react")
ecosystem: Package ecosystem ("PyPI", "npm", "Maven", "Go", etc.)
Returns:
Detailed security report with vulnerabilities, severity levels, and recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ecosystem | No | PyPI | |
library_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ecosystem": {
"default": "PyPI",
"title": "Ecosystem",
"type": "string"
},
"library_name": {
"title": "Library Name",
"type": "string"
}
},
"required": [
"library_name"
],
"title": "scan_library_vulnerabilitiesArguments",
"type": "object"
}