# CyberPulse Vulnerability Scanner

> CyberPulse Vulnerability Scanner is a paid API for AI agents from cyberpulse-six.vercel.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Returns known CVEs for any software or product and version, enriched with NVD data, CISA KEV matches, OSV results, risk assessment, and patch guidance

## Facts

- Endpoint: GET https://cyberpulse-six.vercel.app/api/cyber/vuln-scan
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyberpulse-vulnerability-scanner-3427ccde
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MmiQ0vA_j9_lVR4Yoc5Fv

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cyberpulse-vulnerability-scanner-3427ccde
```

Example prompt: Can you pull all known CVEs for Apache Log4j version 2.14.1 — I need the NVD severity data, any CISA KEV matches, OSV results, and a prioritized list of patches I should apply first?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source vulnerability report for a specific software product and version, combining NVD, CISA KEV, and OSV data in one call with prioritized patch guidance — rather than querying each database individually or using a generic CVE search.

## Known failure modes

- Unknown product or version returns no CVE results
- Version string malformed or unrecognized causes lookup failure
- NVD or OSV upstream data temporarily unavailable causing incomplete results
- Payment not accepted or x402 auth failure returns 402 error
- Rate limiting returns 429 error for high-frequency scans

## How this service works

Vulnerability scan / known-CVE lookup for any software, product, or package version. Returns NVD CVEs, CISA KEV matches, OSV open-source/dependency vuln results, version risk assessment, and prioritized patch guidance, for vuln-management and dependency-security agents.

## Output

A structured report containing: matched CVE identifiers with NVD severity scores and metadata, whether any CVEs appear in the CISA Known Exploited Vulnerabilities (KEV) catalog, matching OSV open-source vulnerability database entries, a version-specific risk assessment score, and prioritized patch or remediation guidance for the queried software and version.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "version": {
       "type": "string",
       "description": "Version string — optional but improves accuracy — e.g. \"2.14.0\" | \"3.0.8\" | \"22.3R3\""
      },
      "software": {
       "type": "string",
       "description": "Software name — e.g. \"Apache Log4j\" | \"OpenSSL\" | \"Spring Boot\" | \"Cisco IOS\" | \"Ivanti Connect Secure\" | \"VMware vCenter\""
      },
      "ecosystem": {
       "type": "string",
       "description": "Package ecosystem — optional — e.g. \"npm\" | \"PyPI\" | \"Maven\" | \"Go\" | \"crates.io\" | \"NuGet\""
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "software": "Apache Log4j",
  "version_queried": "2.14.0",
  "top_vulnerabilities": [
   {
    "cve_id": "CVE-2021-44228",
    "severity": "CRITICAL",
    "cvss_score": 10,
    "description": "Log4Shell — remote code execution via JNDI injection",
    "patch_version": "2.17.1",
    "exploit_status": "Actively exploited",
    "patch_available": true
   }
  ],
  "vulnerability_summary": {
   "high": 3,
   "critical": 2,
   "in_cisa_kev": 2,
   "total_known_cves": 8,
   "actively_exploited": 2
  },
  "version_risk_assessment": {
   "upgrade_urgency": "IMMEDIATE",
   "recommended_version": "2.23.1",
   "queried_version_status": "End of Life"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyberpulse-vulnerability-scanner-3427ccde/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cyberpulse-six.vercel.app](https://www.zero.xyz/host/cyberpulse-six.vercel.app/llms.txt)
