Quote:
Originally Posted by V_RocKs
Create a script to check for where the surfers are coming from. If they come from *password* or *passes* or *torrent*, etc... flag the account... Then a human just need to check 10 accounts per day and can the offenders. Whitelist the ok ones...
Would take a programmer about 10 minutes and an employee about 1 hour a week.
|
like this you mean
PHP Code:
<?
// Redirect "password" traffic
$refer_full_path = "$HTTP_REFERER"."$PATH_INFO";
if(( preg_match("/pass/i", $refer_full_path)) ||
( preg_match("/passes/i", $refer_full_path)) ||
( preg_match("/password/i", $refer_full_path)) ||
( preg_match("/passwords/i", $refer_full_path))) {_
header("Location: $refer_full_path");
exit;_
}
?>
PHP Code:
<?
$words=array("pass","passes","password","passwords");
for($i=0;$i<count($words);$i++){
if(eregi($words[$i],$HTTP_REFERER)){
header("Location: http://www.adultfriendfinder.com");
}
}
?>