Unix/Linux : How to test user agents blocked successfully ?
This is actually a continuation from the tutorial on how to configure nginx to block certain user agents. To test if a web server will response with the configured response status... you can use curl
command.
For example :
curl -I https://www.somewebsite.com
will return HTTP/1.1 200 OK
status
and if the Nginx or Apache web server is configured to block certain user agents .... let say wget
try adding -H 'User-agent: wget'
parameter to the curl command like below
curl -I -H 'User-agent: wget' https://www.somewebsite.com
and it will return HTTP/1.1 403 Forbidden
status
Hope this quick tutorial is helpful for you to check if your Nginx configuration or Apache configuration to block certain user agents is working successfully or not.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.4k Golang : How to check if a file is hidden?
+6.8k Golang : Gorrila mux.Vars() function example
+44k Golang : Use wildcard patterns with filepath.Glob() example
+7.8k Golang : Auto-generate reply email with text/template package
+18.6k Golang : Calculate entire request body length during run time
+4.3k MariaDB/MySQL : How to get version information
+14k Golang : Parsing or breaking down URL
+11.1k Golang : Generate DSA private, public key and PEM files example
+14.6k Golang : Accurate and reliable decimal calculations
+15.1k Golang : Intercept Ctrl-C interrupt or kill signal and determine the signal type
+9k Golang : How to protect your source code from client, hosting company or hacker?