Agent toolkit

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.059 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 html = await fetch(url).then(r => r.text());
  const pii = await x402Fetch(`https://pii-detector.api.klymax402.com/api/detect`, { method: "POST", body: JSON.stringify({ text: html }) });
  const ports = await x402Fetch(`https://port-scanner.api.klymax402.com/api/scan`, { method: "POST", body: JSON.stringify({ host: new URL(url).hostname }) });
  return { gdpr_passing: gdpr.score > 90, pii_leaks: pii.findings, open_ports: ports.open };
}
← All bundles