BBQ Firewall – Customize Rules
BBQ Firewall is a lightweight, super-fast plugin that protects your site against a wide range of threats. BBQ checks all incoming traffic and quietly blocks bad requests containing nasty stuff like eval(
, base64_
, and excessively long request-strings. This is a simple yet solid solution for sites that are unable to use a strong Apache/.htaccess firewall.
Contents
- About Customize Rules addon
- Remove rules from firewall (whitelist)
- Add rules to firewall (blacklist)
- Download addons
- More addons
About Customize Rules addon
BBQ is kept as lightweight as possible, so there are no options to configure the firewall rules. The default rules are context-neutral and work great on any WordPress setup. But there may be cases where you want to add or remove patterns from the firewall rules. So to give the plugin more flexibility, here are a couple of free addons that enable you to customize firewall patterns as desired.
Remove rules from firewall (whitelist)
If you’re running BBQ and discover that it’s blocking some legitimate URL, you can “whitelist” the offending pattern to restore access. Let’s look at an example. Let’s say that BBQ is blocking a page located at the following URL:
http://example.com/page/?referer=http://example.org/
This URL is blocked by BBQ because of the colon :
, which is a reserved character.
To resolve the issue, we can install the BBQ whitelist plugin and remove the matching pattern from $request_uri_array
, which matches against the requested URI. To do so, open the plugin file and edit the “whitelist items” like so:
$bbq_whitelist_request_uri_items = array('\/http\:', '\:\/\/');
Here we have added two items to the whitelist array, \/http\:
and \:\/\/
. Save, upload, and done. BBQ now will ignore the specified patterns and thus restore access to the URL. This solution can be used to resolve any false positive.
Another example
The previous example shows how to allow/whitelist the specified strings in the request URI. In this example, we want to allow instances of a string in all fields: request URI, query string, user agent, and referrer. To do it, open the whitelist plugin and replace the four empty variables near the top of the file with this:
$bbq_whitelist_request_uri_items = array('allow-some-string');
$bbq_whitelist_query_string_items = array('allow-some-string');
$bbq_whitelist_user_agent_items = array('allow-some-string');
$bbq_whitelist_referrer_items = array('allow-some-string');
$bbq_whitelist_post_items = array('allow-some-string');
Then replace allow-some-string
with whatever string you want to allow. Save changes, upload and done.
Add rules to firewall (blacklist)
On the other side of the coin, let’s say that you have some string that you would like BBQ to block. For example, the infamous fckeditor
seems to be a perpetual target for malicious scanning and wannabe exploits. So let’s block once and for all by adding it to BBQ. To do it, first install the BBQ blacklist plugin. Then open the plugin file and edit the “blacklist items” like so:
$bbq_blacklist_request_uri_items = array('fckeditor');
$bbq_blacklist_query_string_items = array('fckeditor');
$bbq_blacklist_user_agent_items = array('fckeditor');
$bbq_blacklist_referrer_items = array('fckeditor');
$bbq_blacklist_post_items = array('fckeditor');
Here we have added the offending string to each of the four blacklist arrays, so we’re covered if the string appears in the request URL, query string, user agent, referrer, and/or POST data. Then save, upload, and done. BBQ now will block the pesky fckeditor
pattern whenever and wherever it’s found.
Download addons
Here you may download the BBQ Block List (blacklist) and Allow List (whitelist). These are 100% free addons licensed via GPL version 2 or later.
More addons
Here are some available addons for BBQ Firewall (free version).
- BBQ Firewall – Count Blocked Requests
- BBQ Firewall – Customize Features
- BBQ Firewall – Customize Rules
- BBQ Firewall – Customize Rules GUI (Thanks to LyntServices)
5 responses to “BBQ Firewall – Customize Rules”
Hi Jeff,
So to block buttons-for-website.com traffic/bots/whatever-they-are from my WordPress site (Linux/WP hosting on MediaTemple if that matters) I would add:
(1) to BBQ Blacklist:
Is it really that easy, or am I missing something? Or,
(2) I would add this to my .htaccess file:
with no
RewriteRule
needed (like theRewriteRule ^(.*)$ http://semalt.com/ [L]
seen in .htaccess) ????Thanks for clarifying for me. Awesome plugin/s; much appreciated!
Cheers, Steve
First method, as described in the article :)
Hey Jeff,
I found an infoo.php file in the root of my website. Inside the file it has the following code:
<?phpinfo();?>
Do you think this is malicious script? Or maybe it was placed in my root directory by a plugin perhaps?
I’ve got your 5G firewall in place, do you have an updated version? I can only see a 6G Beta from a while ago.
Many thanks
That PHP function displays information about your server, PHP, Apache, etc. Whether or not it’s malicious depends on who put it there and for what reason. If you or maybe one of your associates put the file, then it’s probably nothing to worry about. Otherwise, if you are sure it was placed there by some unauthorized person/script, then yeah I would investigate asap. Bottom line is that it should not be there, or it should be locked down to prevent anyone else from accessing it.
Hi, I made a simple plugin to manage custom rules for BBQ.
I prefer the original way – edit files by hand (plugin uses DB, so there is a little impact in the performance), but it may be useful for somebody.
https://github.com/LyntServices/bbq-gui