Security Audit Toolkit

Scan a web app for GDPR, PII, ports, and crypto weakness in seconds.

Use case

Plug into your CI to check a deployed app for GDPR cookie violations, leaked PII in HTML, open ports, weak password policies, and decoded JWT contents. Block deploys on red signals.

APIs in this bundle (6)

Cycle cost ≈ $0.030 USDC
Network Base L2
Settle <2s
Signup none

Code example

import { x402Fetch } from "x402-agent-tools";

async function auditWebApp(url: string) {
  const gdpr = await x402Fetch(`https://gdpr-scanner.api.klymax402.com/api/scan?url=${url}`);
  const pii = await x402Fetch(`https://pii-detector.api.klymax402.com/api/detect?url=${url}`);
  const ports = await x402Fetch(`https://port-scanner.api.klymax402.com/api/scan?host=${new URL(url).hostname}`);
  return { gdpr_passing: gdpr.score > 90, pii_leaks: pii.findings, open_ports: ports.open };
}
Install npm package Full API catalog (llms.txt) Live activity