IP Lookup:
It would be nice with a integrated search box for IP numbers for a quick check if the IP should be blocked or not. Something you could add to make the plugin ever better? There are a lot of free IP services that offers API connection.
Maintenance:
It would also be nice to have the option to choose other user levels than just admin to block from the site when testing everything in staging.
I looked at several plugins, and all most give is the IP and ISP network/referrer; is there a way to leverage Google Analytics or a plugin to gather more accurate/detailed info? I saw a few paid monthly services but would prefer a free/inexpensive plugin.
]]>I can not perform a Whois lookup, in Firefox I get the follwoing fatal error:
Fatal error: Cannot redeclare class idna_convert in /wp-content/plugins/all-in-one-wp-security-and-firewall/lib/whois/whois.idna.php on line 55
In Safari there is a blank screen after I hit the “lookup”-button.
Currently I am under heavy bruteforce-attacks and need the function.
Wordfence lookup works fine…
Grateful for help! thx
https://www.ads-software.com/plugins/all-in-one-wp-security-and-firewall/
]]>Any hint, anyone?
https://www.ads-software.com/extend/plugins/wp-ban/
]]><?php
$ip = getenv(“REMOTE_ADDR”) ;
echo “Your IP Address Is : <b><u>$ip</u></b> “;
?></br>
[
<?php
GetHostByName($REMOTE_ADDR);
echo php_uname();
?>
]
</br>
[
<?php
function getip() {
if (isSet($_SERVER)) {
if (isSet($_SERVER[“HTTP_X_FORWARDED_FOR”])) {
$realip = $_SERVER[“HTTP_X_FORWARDED_FOR”];
} elseif (isSet($_SERVER[“HTTP_CLIENT_IP”])) {
$realip = $_SERVER[“HTTP_CLIENT_IP”];
} else {
$realip = $_SERVER[“REMOTE_ADDR”];
}
} else {
if ( getenv( ‘HTTP_X_FORWARDED_FOR’ ) ) {
$realip = getenv( ‘HTTP_X_FORWARDED_FOR’ );
} elseif ( getenv( ‘HTTP_CLIENT_IP’ ) ) {
$realip = getenv( ‘HTTP_CLIENT_IP’ );
} else {
$realip = getenv( ‘REMOTE_ADDR’ );
}
}
return $realip;
}
//print out the ip and browser information
echo $_SERVER[“HTTP_USER_AGENT”]
?>
]