darn.

they have stopped targeting the index.cfm and are now targeting the 
Application.cfm...

for the sake of anyone who may have experienced something similar, the 
following is what is prepended to my application script:

---------------

<cfset domain = cgi.remote_addr> 
<cfset userag = cgi.http_user_agent> 
<cfset refer = cgi.HTTP_REFERER> 
<cfset stop_ip_mask = 
"66\.249\.[6-9][0-9]\.[0-9]+|74\.125\.[0-9]+\.[0-9]+|65\.5[2-5]\.[0-9]+\.[0-9]+|74\.6\.[0-9]+\.[0-9]+|67\.195\.[0-9]+\.[0-9]+|72\.30\.[0-9]+\.[0-9]+|38\.[0-9]+\.[0-9]+\.[0-9]+|93\.172\.94\.227|212\.100\.250\.218|71\.165\.223\.134|70\.91\.180\.25|65
 ... \.74"> 
<cfset stop_useragents = "http| google| slurp| msnbot| bot| crawl| spider| 
robot| HttpClient| curl| PHP| Indy Library| 
WordPress|Charlotte|wwwster|Python|urllib|perl|libwww|lynx|Twiceler|rambler|yandex">
 
 
<cfif (REFindNoCase(stop_useragents,userag) GT 0) OR 
(REFindNoCase(stop_ip_mask,domain) GT 0)> 
 
<cfset links = ' <a href="badurl">pharmacy related string</a> 
<a href="badurl">pharmacy related string</a>
<a href="badurl">pharmacy related string</a>
... the list is huge !! ...
<a href="badurl">pharmacy related string</a>'> 
<cfset arr = listToArray (links, "#chr(10)##chr(13)#")> 
 
<cfset CreateObject( 
"java", 
"java.util.Collections" 
).Shuffle( 
arr 
) /> 
 
<cfset myList = ArrayToList(arr, " ")> 
> 
 
<cfoutput>#myList#</cfoutput> 
</cfif> 
<!---pharmacylinks---> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339948
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to