# CyberPulse Attack Surface Assessment

> CyberPulse Attack Surface Assessment is a paid API for AI agents from cyberpulse-six.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Performs external attack-surface reconnaissance on a company or domain, returning exposed assets, tech-stack fingerprints, email security posture, supply-chain risks, and a prioritized remediation roadmap.

## Facts

- Endpoint: GET https://cyberpulse-six.vercel.app/api/cyber/attack-surface
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyberpulse-attack-surface-assessment-50dedf12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PalANvfXSBJuAI4VB4XTT

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-attack-surface-assessment-50dedf12
```

Example prompt: Run an external attack-surface assessment on acmecorp.com — I want to see all internet-exposed assets, what tech stack they're running, their email security configuration, any supply-chain or identity exposure risks, and a prioritized remediation roadmap.

## When to prefer this

Use this endpoint when you need a comprehensive external recon profile of a company or domain in a single call, covering assets, tech stack, email security, and supply-chain risk together with remediation guidance. Prefer this over individual OSINT or Shodan lookups when you want a synthesized, prioritized security posture summary rather than raw data from a single source.

## Known failure modes

- Invalid or unresolvable domain — returns error indicating domain not found
- Rate limiting or quota exceeded — returns 429 or payment-related error
- Payment not processed — returns 402 requiring x402 payment
- Domain with no significant internet presence — returns sparse or empty asset list
- Timeout on reconnaissance tasks for very large organizations — may return partial results

## How this service works

External attack-surface assessment (EASM) for any company and domain — internet-exposed assets, tech-stack fingerprinting, email-security posture, supply-chain and identity exposure, and a prioritized remediation roadmap, for security and red-team-context agents. Authorized defensive use only.

## Output

Returns a structured report covering: internet-exposed assets and open services, technology stack fingerprints (frameworks, CDNs, servers), email security posture (SPF/DKIM/DMARC status), supply-chain and third-party identity exposure indicators, and a ranked remediation roadmap with actionable recommendations.

## 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)"
      },
      "domain": {
       "type": "string",
       "description": "Primary domain — e.g. \"acme.com\" | \"techstartup.io\" | \"globalbank.co.uk\""
      },
      "company": {
       "type": "string",
       "description": "Company name — e.g. \"Acme Corporation\" | \"TechStartup Inc\" | \"GlobalBank\""
      }
     }
    }
   },
   "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": {
  "domain": "acme.com",
  "company": "Acme Corporation",
  "risk_grade": "C",
  "email_security": {
   "spf": "pass",
   "dkim": "missing",
   "dmarc": "none",
   "bec_risk": "HIGH",
   "email_spoofing_possible": true
  },
  "executive_summary": "Acme Corporation has critical RDP exposure and no DMARC — enabling email spoofing attacks. Immediate actions: block RDP port, implement DMARC reject policy.",
  "high_risk_findings": [
   {
    "risk": "CRITICAL",
    "effort": "Quick win",
    "finding": "RDP port 3389 exposed to internet on subsidiary IP",
    "remediation": "Block RDP at perimeter firewall; use VPN + MFA for remote access",
    "attack_scenario": "Brute force or credential stuffing could yield initial access"
   }
  ],
  "overall_risk_score": 68,
  "attack_scenarios_most_likely": [
   "Phishing targeting finance team",
   "Credential stuffing on customer portal",
   "Exploitation of exposed RDP"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyberpulse-attack-surface-assessment-50dedf12/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)
