Miasma: A tool to trap AI web scrapers with poisoned data

What Miasma does
Miasma is a tool designed to trap AI web scrapers by serving them poisoned training data alongside multiple self-referential links, creating what the developers call an "endless buffet of slop for the slop machines." The tool is built to be fast with minimal memory footprint.
Installation and setup
Install with Cargo: cargo install miasma or download pre-built binaries from releases.
Start with default configuration: miasma
View all configuration options: miasma --help
How to trap scrapers
The typical setup involves:
- Embedding hidden links on your site pointing to a specific path (e.g.,
/bots) with attributes that make them invisible to human visitors but visible to scrapers:<a href="/bots" style="display: none;" aria-hidden="true" tabindex="1">Amazing high quality data here!</a>
- Configuring a reverse proxy (like Nginx) to route that path to Miasma:
location ~ ^/bots($|/.*)$ { proxy_pass http://localhost:9855; } - Running Miasma with specific parameters:
miasma --link-prefix '/bots' -p 9855 -c 50
The -c 50 flag limits max in-flight connections to 50, which results in 50-60 MB peak memory usage. Requests exceeding this limit receive a 429 response.
Configuration options
--port: Default 9999 - The port the server should bind to--host: Default localhost - The host address the server should bind to--max-in-flight: Default 500 - Maximum number of allowable in-flight requests--link-prefix: Default / - Prefix for self-directing links (should match your hosting path)--link-count: Default 5 - Number of self-directing links to include in each response page--force-gzip: Default false - Always gzip responses regardless of Accept-Encoding header--poison-source: Default https://rnsaffn.com/poison2/ - Proxy source for poisoned training data
Important considerations
The developers recommend protecting friendly bots and search engines in your robots.txt file:
User-agent: Googlebot User-agent: Bingbot User-agent: DuckDuckBot User-agent: Slurp User-agent: SomeOtherNiceBot Disallow: /bots Allow: /
Miasma is licensed under GPL-3.0 and the developers note that "primarily AI-generated contributions will be automatically rejected."
📖 Read the full source: HN AI Agents
👀 See Also

Claude Code v2.1.144: Background Sessions, /model Scoping, and 15s Startup Timeout
Claude Code v2.1.144 adds /resume for background sessions, scopes /model to current session only, and fixes a 75s startup hang when api.anthropic.com is unreachable with a 15s timeout.

Tycono: Open-Source AI Agent Harness with Org Chart and Autonomous Improvement Loops
Tycono is an open-source harness where you define AI agent roles in YAML (CTO, engineer, QA, etc.) and they work together following an org chart with autonomous improvement loops. The system ran 17 rounds overnight on a pixel running game task, generating 6,796 lines of code across 43 commits.

Chamber: AI Agent for GPU Infrastructure Management
Chamber is an AI agent that manages GPU infrastructure by handling tasks like provisioning clusters, diagnosing failed jobs, and managing workloads. It provides structured operations with validation and rollback, not just raw shell commands.

onWatch: Open-source local API quota tracker with SQLite storage
onWatch is a local-first API quota tracker that stores all data in a local SQLite database with no cloud service, telemetry, or account creation. It's a single binary (~13MB) that runs as a background daemon using <50MB RAM and serves a dashboard on localhost.