View Single Post
Old 07-13-2007, 11:58 PM  
FakeNick
Confirmed User
 
Join Date: May 2007
Posts: 739
Quote:
Originally Posted by V_RocKs View Post
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"); 


?>
__________________
this is my sig, it is the only one i have which is why it is mine
FakeNick is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote