From asi
Deploys and operates Greenbone/OpenVAS vulnerability management using python-gvm to create scan targets, execute scans, and parse GMP reports for findings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asi:implementing-vulnerability-management-with-greenboneThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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...
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.
npx claudepluginhub plurigrid/asi --plugin asiDeploy and operate Greenbone/OpenVAS vulnerability management using python-gvm to create scan targets, execute scans, and parse GMP reports into actionable findings.
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.