doubleje
mercredi 19 décembre 2007 à 18:19
Voici un outil pouvant faire ce genre de choses ou même plus (abus de connection, flood, ddos)

Télécharger :
FireWall anti DDOS, Flood, SpamOn peut l'installer aussi bien pour IPB, phpBB que pour vBulletin
Voici le cas d'IPB
CODE
Description:
Allows you to protect the site from flooding and
to prevent an SQL injection attack from single IP.
This script probably won't stop EVERY variation of such an attack,
but it'll give you some measure of security.
Disclaimer:
You should only use this script to test the security of your own web applications
or those you are authorized to do so. I, ntd1712, will take no responsibility for any problems
or unfortunate consequences brought about by the use of InV-Firewall Script.
Requirement:
PHP >= 4.1.0
*/
File to edit:
./.htaccess
./init.php
./ipchat.php
./lofiversion/index.php
File to upload:
.\.htaccess --> ./.htaccess
.\.htpasswd --> ./.htpasswd
.\firewall\*.* --> ./firewall/*.*
CHMOD folder 'firewall' to 0777
---------------------------------------------------------------------------------------------
Open: ./.htaccess
Find & replace the existing url with your board url: http://(www\.)?yourdomain.com/
---------------------------------------------------------------------------------------------
Open: ./init.php
Find:
//-----------------------------------------------
// Use custom handler?
//-----------------------------------------------
if ( CUSTOM_ERROR )
{
set_error_handler("my_error_handler");
}
Add below:
$firewall = ROOT_PATH.'firewall/firewall.php';
if( file_exists($firewall) ){ require_once($firewall); }
---------------------------------------------------------------------------------------------
Open: ./ipchat.php
Find:
define( 'KERNEL_PATH', ROOT_PATH.'ips_kernel/' );
Add below:
$firewall = ROOT_PATH.'firewall/firewall.php';
if( file_exists($firewall) ){ require_once($firewall); }
---------------------------------------------------------------------------------------------
Open: ./lofiversion/index.php
Find:
define( 'KERNEL_PATH', ROOT_PATH.'ips_kernel/' );
Add below:
$firewall = ROOT_PATH.'firewall/firewall.php';
if( file_exists($firewall) ){ require_once($firewall); }
---------------------------------------------------------------------------------------------
That's all! :)
©2006 ntd1712