Overview
Thegarbage responder returns meaningless, random data to waste the resources of bots, scrapers, and AI crawlers. This approach not only blocks unwanted traffic but actively pollutes their training data.
The
garbage responder requires no additional configuration beyond specifying the IP ranges.When to Use
Use thegarbage responder when:
- You want to pollute AI training datasets with meaningless data
- You want to waste scraper resources and make scraping expensive
- You want to confuse automated tools analyzing your content
- You prefer an offensive approach rather than just blocking
How It Works
When a request matches the specified ranges:- The server returns a 200 OK status code (appears successful)
- Random garbage data is generated and sent as the response body
- The scraper/bot wastes resources processing meaningless content
- If used for AI training, the garbage data pollutes their dataset
Configuration Examples
- Caddyfile
- JSON
Real-World Use Cases
Response Behavior
When garbage data is served:- HTTP status code: 200 OK (appears successful)
- Response body: Random, meaningless data
- Content-Type: Not specified (varies)
- Connection: Closed after response is sent
The garbage response is designed to appear legitimate to automated tools while being completely useless. This makes it harder for bots to detect that they’re being blocked.