snowball I'm under ddos attack how can i prevent request like this: /0803929962. I try to add rule /\d* in GET-URL filter but It block all requests to my server.
snowball I did, but i thought if i could block from url (/number) in GET-URL filter then it would be better
avijit For Nginx location ~ ^/\d+$ { return 404; } For Apache RewriteEngine On RewriteRule ^/\d+$ - [R=404,L]
snowball avijit I tried like this ^/[0-9]+$ (it's similars with you). but the attacker change the request to: /rr443tt . Random texts and digits