• Resolved Lubyg

    (@paontheweb)


    I see you took out empty user-agents by default some time back. How do I add an empty user-agent block? What the heck goes in there? I’ve looked all over doing Google searches and only find .htaccess lines but I don’t understand what part of it is the empty user-agent. Here is an .htaccess I found but did not know how to add it to my existing .htaccess. Brought my whole site down. We’re not all coders here.

    RewriteEngine on
    # BEGIN block access for empty user agents – 403 error
    RewriteCond %{HTTP_USER_AGENT} ^$
    RewriteRule ^(.*)$ – [F,L]
    # END block access for empty user agents

    When I’m in the iThemes ban user-agent what part of the lines above will block empty or blank user-agents?

    Thanks.

    https://wordpress.org/plugins/better-wp-security/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Empty user-agents are not blocked using the iTSec plugin “Ban Users” feature “Ban User Agents” part.

    Instead enable the “Reduce Comment Spam” checkbox in the WordPress Tweaks section.

    This will add the following lines to the .htaccess file:

    # Rules to help reduce spam
    RewriteCond %{REQUEST_METHOD} POST
    RewriteCond %{REQUEST_URI} ^(.*)wp-comments-post\.php*
    RewriteCond %{HTTP_REFERER} !^(.*)dbrijnmond-23.nl.*
    RewriteCond %{HTTP_REFERER} !^http://jetpack\.wordpress\.com/jetpack-comment/ [OR]
    RewriteCond %{HTTP_USER_AGENT} ^$
    RewriteRule ^(.*)$ – [F]

    The 2 bold lines will block empty user agents.

    If the above info answers your question please mark this topic as ‘resolved’.

    dwinden

    Thread Starter Lubyg

    (@paontheweb)

    I’ve pasted in a small part of my one .htaccess file. Would the bold lines be placed correctly or should there be an [OR] somewhere. Just not sure where to place it. Thanks so much for your help dwinden!

    RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Zeus [OR]
    RewriteCond %{HTTP_USER_AGENT} ^$
    RewriteRule ^(.*)$ – [F]

    Thread Starter Lubyg

    (@paontheweb)

    Nevermind. I found the feature in Wordfence. It worked during a real time attack. The trick was to remove the deprecated Brute Protect plugin which returned a Status 403 but allowed the IP to keep hammering on one of our sites. I removed Brute Protect then, enabled
    Block IP’s who send POST requests with blank User-Agent and Referer
    In Wordfence Options. Problem solved.

    Thread Starter Lubyg

    (@paontheweb)

    Ooops, forgot to hit resolved.

    It looks fine. Just add the NC flag like this and make sure to turn the RewriteEngine on (it might already be included in your .htaccess):

    RewriteEngine on
    RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [NC,OR]
    RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [NC,OR]
    RewriteCond %{HTTP_USER_AGENT} ^Zeus [NC,OR]
    RewriteCond %{HTTP_USER_AGENT} ^$
    RewriteRule ^(.*)$ – [F]

    [NC] = tells Apache to treat this rule as case-insensitive.

    dwinden

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Empty user-agent’ is closed to new replies.