# CyberPulse External Attack Surface Assessment

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

Performs a comprehensive external attack surface assessment (EASM) for a company or domain, mapping internet-exposed assets, tech-stack, email security, supply-chain, and identity exposure with a prioritized remediation roadmap.

## Facts

- Endpoint: GET https://cyberpulse.theaslangroupllc.com/api/cyber/attack-surface
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyberpulse-external-attack-surface-assessment-a60ce625
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MjjYOIIwcGEPy8OMjbv55

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-external-attack-surface-assessment-a60ce625
```

Example prompt: Run a full external attack surface assessment on acmecorp.com — I want to see all internet-exposed assets, their tech stack, email security posture, any supply-chain or identity exposure risks, and a prioritized list of what we should fix first.

## When to prefer this

Choose this endpoint when you need a holistic external attack surface view of a specific company or domain, especially when the goal is to enumerate all publicly exposed assets, assess email and supply-chain risk, and receive a prioritized remediation roadmap in one call — as opposed to narrower lookups like a single CVE check, OSINT IP scan, or dark-web monitoring.

## Known failure modes

- Invalid or non-existent domain returns an error indicating the target could not be resolved
- Insufficient payment (x402) causes a 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 error
- Private or internal-only domains with no external footprint may return sparse results
- Domain recently registered may have limited data available

## 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 hosts, tech-stack fingerprinting results, email security posture (SPF/DKIM/DMARC), supply-chain and third-party exposure indicators, identity exposure signals, and a prioritized remediation roadmap for the assessed company or domain.

## 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-external-attack-surface-assessment-a60ce625/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)
