Created
May 3, 2026 09:41
-
-
Save hg/f0488d6659eca20d965faee9c73dcad7 to your computer and use it in GitHub Desktop.
nginx spoonfeding garbage to badly behaved bots
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ($http_user_agent ~* "foo.ai") { | |
| limit_rate 1k; | |
| default_type application/octet-stream; | |
| proxy_buffering off; | |
| alias /dev/urandom; | |
| return 200; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment