npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
Greenbone Vulnerability Management (GVM) is the open-source framework behind OpenVAS, providing comprehensive vulnerability scanning with over 100,000 Network Vulnerability Tests (NVTs). The python-gvm library provides a Python API to interact with GVM through the Greenbone Management Protocol (GMP), enabling programmatic creation of scan targets, task management, scan execution, and report ret...
Deploys and operates Greenbone/OpenVAS vulnerability scanning using python-gvm to create targets, run scans via GMP, and parse reports into JSON with CVSS severity breakdowns.
Deploys and operates Greenbone/OpenVAS vulnerability management using python-gvm library via GMP protocol: creates scan targets, executes scans, parses XML reports into JSON summaries with CVSS scores. Useful for automated vulnerability scanning.
Configures and executes authenticated vulnerability scans using OpenVAS/GVM with SSH and SMB credentials for detailed host-level security assessments and audits.
Share bugs, ideas, or general feedback.
Greenbone Vulnerability Management (GVM) is the open-source framework behind OpenVAS, providing comprehensive vulnerability scanning with over 100,000 Network Vulnerability Tests (NVTs). The python-gvm library provides a Python API to interact with GVM through the Greenbone Management Protocol (GMP), enabling programmatic creation of scan targets, task management, scan execution, and report retrieval. This skill covers connecting to GVM via Unix socket or TLS, authenticating, creating scan configs and targets, launching scans, and parsing XML-based vulnerability reports to produce actionable findings.
python-gvm (pip install python-gvm)pip install python-gvmUnixSocketConnection or TLSConnectiongmp.authenticate(username, password)gmp.create_target(name, hosts=[...], port_list_id=...)gmp.create_task(name, config_id, target_id, scanner_id)gmp.start_task(task_id)gmp.get_task(task_id)gmp.get_report(report_id, report_format_id=...)A JSON report containing total vulnerabilities found, severity breakdown (critical/high/medium/low), per-host findings with CVE references and CVSS scores, and scan metadata including duration and NVT feed version.