Version Description
Download this release
Release Info
Developer | error |
Plugin | Bad Behavior |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.1.4 to 2.1.5
- README.txt +1 -1
- bad-behavior-wordpress.php +1 -1
- bad-behavior/banned.inc.php +2 -2
- bad-behavior/core.inc.php +1 -1
- bad-behavior/version.inc.php +1 -1
README.txt
CHANGED
@@ -3,7 +3,7 @@ Tags: comment,trackback,referrer,spam,robot,antispam
|
|
3 |
Contributors: error, MarkJaquith, Firas, skeltoac
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=error%40ioerror%2eus&item_name=Bad%20Behavior%20%28From%20WordPress%20Page%29&no_shipping=1&cn=Comments%20about%20Bad%20Behavior&tax=0¤cy_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8
|
5 |
Requires at least: 1.5
|
6 |
-
Tested up to: 3.0
|
7 |
Stable tag: 2.0.38
|
8 |
|
9 |
Welcome to a whole new way of keeping your blog, forum, guestbook, wiki or
|
3 |
Contributors: error, MarkJaquith, Firas, skeltoac
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=error%40ioerror%2eus&item_name=Bad%20Behavior%20%28From%20WordPress%20Page%29&no_shipping=1&cn=Comments%20about%20Bad%20Behavior&tax=0¤cy_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8
|
5 |
Requires at least: 1.5
|
6 |
+
Tested up to: 3.0.1
|
7 |
Stable tag: 2.0.38
|
8 |
|
9 |
Welcome to a whole new way of keeping your blog, forum, guestbook, wiki or
|
bad-behavior-wordpress.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Bad Behavior
|
4 |
-
Version: 2.1.
|
5 |
Description: Deny automated spambots access to your PHP-based Web site.
|
6 |
Plugin URI: http://www.bad-behavior.ioerror.us/
|
7 |
Author: Michael Hampton
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Bad Behavior
|
4 |
+
Version: 2.1.5
|
5 |
Description: Deny automated spambots access to your PHP-based Web site.
|
6 |
Plugin URI: http://www.bad-behavior.ioerror.us/
|
7 |
Author: Michael Hampton
|
bad-behavior/banned.inc.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
|
6 |
require_once(BB2_CORE . "/responses.inc.php");
|
7 |
|
8 |
-
function bb2_display_denial($settings, $key, $previous_key = false)
|
9 |
{
|
10 |
define('DONOTCACHEPAGE', true); // WP Super Cache
|
11 |
if (!$previous_key) $previous_key = $key;
|
@@ -13,7 +13,7 @@ function bb2_display_denial($settings, $key, $previous_key = false)
|
|
13 |
// FIXME: lookup the real key
|
14 |
}
|
15 |
// Create support key
|
16 |
-
$ip = explode(".", $
|
17 |
$ip_hex = "";
|
18 |
foreach ($ip as $octet) {
|
19 |
$ip_hex .= str_pad(dechex($octet), 2, 0, STR_PAD_LEFT);
|
5 |
|
6 |
require_once(BB2_CORE . "/responses.inc.php");
|
7 |
|
8 |
+
function bb2_display_denial($settings, $package, $key, $previous_key = false)
|
9 |
{
|
10 |
define('DONOTCACHEPAGE', true); // WP Super Cache
|
11 |
if (!$previous_key) $previous_key = $key;
|
13 |
// FIXME: lookup the real key
|
14 |
}
|
15 |
// Create support key
|
16 |
+
$ip = explode(".", $package['ip']);
|
17 |
$ip_hex = "";
|
18 |
foreach ($ip as $octet) {
|
19 |
$ip_hex .= str_pad(dechex($octet), 2, 0, STR_PAD_LEFT);
|
bad-behavior/core.inc.php
CHANGED
@@ -16,7 +16,7 @@ function bb2_banned($settings, $package, $key, $previous_key=false)
|
|
16 |
sleep(2);
|
17 |
|
18 |
require_once(BB2_CORE . "/banned.inc.php");
|
19 |
-
bb2_display_denial($settings, $key, $previous_key);
|
20 |
bb2_log_denial($settings, $package, $key, $previous_key);
|
21 |
if (is_callable('bb2_banned_callback')) {
|
22 |
bb2_banned_callback($settings, $package, $key);
|
16 |
sleep(2);
|
17 |
|
18 |
require_once(BB2_CORE . "/banned.inc.php");
|
19 |
+
bb2_display_denial($settings, $package, $key, $previous_key);
|
20 |
bb2_log_denial($settings, $package, $key, $previous_key);
|
21 |
if (is_callable('bb2_banned_callback')) {
|
22 |
bb2_banned_callback($settings, $package, $key);
|
bad-behavior/version.inc.php
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
<?php if (!defined('BB2_CWD')) die("I said no cheating!");
|
2 |
-
define('BB2_VERSION', "2.1.
|
3 |
?>
|
1 |
<?php if (!defined('BB2_CWD')) die("I said no cheating!");
|
2 |
+
define('BB2_VERSION', "2.1.5");
|
3 |
?>
|