Click any tag below to further narrow down your results
Links
This GitHub repo provides a coding-agent skill that runs automated security audits in six phases—recon, hunting, validation, reporting, structured output, and independent verification—to identify exploitable vulnerabilities. It uses parallel agents to generate and disprove findings, outputs structured JSON conforming to a schema, and independently verifies each claim against the source code. Each run reads prior findings to skip known issues and improve coverage.
- Cloudflare open-sourced the actual skill behind their own vulnerability discovery harness, structured as six phases: recon, hunting, validation, reporting, structured output, and independent verification.
- Findings are adversarially checked—the agent that finds a bug never validates it, and separate fresh agents re-verify each claim against the source code before reporting.
- A single audit pass only catches about half of total vulnerabilities, so the tool reads prior findings.json runs to skip known issues and improve coverage over repeated runs.
- Output is enforced as machine-readable JSON validated against a schema via a zero-dependency Node.js script, alongside human-readable REPORT.md and FINDINGS-DETAIL.md files.
SpiderFoot is an open-source Python 3 framework for automating OSINT reconnaissance via a web UI or CLI. It includes over 200 modules, a YAML-driven correlation engine, data exports, TOR support and integrates with tools like Nmap, SHODAN and HaveIBeenPwned. For teams and large-scale scans, SpiderFoot HX adds cloud hosting, multi-user collaboration, REST APIs and change alerts.
- SpiderFoot has 200+ modules pulling from SHODAN, HaveIBeenPwned, GreyNoise, AlienVault OTX and more, with a YAML-based correlation engine running 37 pre-built rules to link findings like leaked emails to vulnerable subdomains.
- It's free, MIT-licensed, and runs via a local web UI or CLI (Python 3.7+, SQLite backend), chaining into tools like Nmap, CMSeeK and DNSTwist for port scans and typo-domain checks.
- Targets span IPs, ASNs, emails, phone numbers and even Bitcoin wallets, with most modules working without paid API keys.
- The paid SpiderFoot HX adds cloud hosting, multi-user/2FA access, Splunk/ElasticSearch/Slack integration, attack-surface monitoring with change alerts, and a REST API.
As AI agents automate tasks like filling forms and managing accounts, organizations struggle to tell legitimate automation from malicious bots or humans. The article argues that security teams must move beyond bot detection to achieve full visibility and verify the intent behind every automated action.
- Bot detection alone is obsolete—AI agents now log into accounts, fill forms, and initiate transactions, making harmless automation indistinguishable from malicious activity at a glance.
- Security teams need full visibility (dashboards tracking every API call, session, and form submission) plus intent-profiling models to distinguish routine tasks from recon or exfiltration attempts.
- Alerting should shift from raw volume spikes to deviations from an agent's defined playbook, like a payment bot suddenly hitting an unexpected merchant portal.
- Governance requires tagging every agent with business justification and owner, plus cross-team rules on database write access, code audits, and pen-testing frequency.
The author describes a pattern of prototyping workflows with AI agents then refactoring into code-driven processes, using agents only for tasks that require human-like judgment. A security vulnerability alert system illustrates how webhooks filter and route high-priority issues, delegating owner identification to an agent and formatting alerts via a second agent for reliable Slack notifications.
- Prototyping a workflow fully inside an agent prompt (filtering, assigning, formatting all in one) broke down under load, letting high/medium severity alerts slip through undetected.
- The fix was refactoring deterministic steps (filtering, batching, data extraction) into plain code, reserving agents only for tasks needing human-like judgment, like matching people to code ownership.
- The resulting hybrid pipeline (code filters/batches → agent assigns owners via CODEOWNERS/commits → second agent formats Slack messages) runs reliably without spamming non-critical alerts.
- The author's general pattern—prototype in pure agent, then refactor toward code with only a few targeted agent calls—is framed as producing faster, cheaper, more reliable automation than prompt tinkering or building strict evals.
Claude Bootstrap is an opinionated system designed for initializing projects with a focus on test-driven development (TDD), security, and simplicity. It automates iterative coding loops, ensures mandatory code reviews, and helps maintain clarity and security in AI-generated code. The framework encapsulates best practices learned from numerous AI-assisted projects across various programming environments.
- Bakes TDD, security checks, and mandatory code review directly into Claude Code's project scaffolding rather than leaving them to developer discipline
- Automates iterative coding loops so AI-generated code gets continuously tested and refined instead of accepted on first pass
- Distills lessons from many prior AI-assisted projects into one opinionated, reusable initialization framework across languages/environments