# CyberPulse Vulnerability Scan & CVE Lookup

> CyberPulse Vulnerability Scan & CVE Lookup is a paid API for AI agents from cyberpulse.theaslangroupllc.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Scans any software, product, or package version for known vulnerabilities, returning NVD CVEs, CISA KEV matches, OSV results, version risk assessment, and prioritized patch guidance.

## Facts

- Endpoint: GET https://cyberpulse.theaslangroupllc.com/api/cyber/vuln-scan
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyberpulse-vulnerability-scan-cve-lookup-acb20ba5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zooKYUAjIQ8qBMYk8-XmU

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-scan-cve-lookup-acb20ba5
```

Example prompt: Can you scan log4j version 2.14.1 for known vulnerabilities — I want to see any NVD CVEs, whether it shows up in the CISA KEV list, OSV results, how risky the version is, and what patches I should prioritize?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source vulnerability check for a specific software product or package version, combining NVD CVEs, CISA KEV active-exploitation flags, and OSV open-source results in a single call. Prefer this over a raw CVE ID lookup (which requires a known CVE ID upfront) when you have a product name and version and want full vulnerability discovery with patch prioritization. Ideal for dependency-security agents, vulnerability management pipelines, and CI/CD security gates.

## Known failure modes

- Unknown or unrecognized software name returns empty results or no CVE matches
- Invalid version string may return no results or a version-not-found error
- Rate limiting or payment failure returns 402 Payment Required
- Obscure or niche packages may have limited OSV/NVD coverage
- Network timeout if upstream NVD/CISA/OSV APIs are slow
- Ambiguous product name with multiple vendor matches may return unexpected results

## 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

Returns a structured report including matching NVD CVE entries with CVSS scores, CISA Known Exploited Vulnerability (KEV) matches, OSV open-source/dependency vulnerability results, a version-level risk assessment, and prioritized patch recommendations for the queried software/package 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-scan-cve-lookup-acb20ba5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cyberpulse.theaslangroupllc.com](https://www.zero.xyz/host/cyberpulse.theaslangroupllc.com/llms.txt)
