Billy and others, I'll set up the code you sent.
Many thanks on the Spam Bot issues. I created a spam bot trap page listing every governmental official in the Korean government. They now get any SPAM, including the pornography. We spoke with the secretary to the Ambassador of Republic of Korea on the issue, and demanded action. Our next step is to ask all recipients of Korean related SPAM to call the Embassy direct. Our mailing list is over 40,000, so this could cause action. I petitioned Senator Gramm today to criminalize email harvesters through federal legislation, both civil and criminal. This is draconian, but SPAM is getting out of hand. Some courts have ruled under the trespass by chattel theory, and I would like to see it expanded to include use of SPAM Bots in general. Thanks DFWCFUG Hal ----- Original Message ----- From: "Billy Cravens" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 12:47 PM Subject: RE: Email Harvesting > Yeah, I actually wrote a spam bot trap. Pretty easy, just dump this > code into a page and link to it (can be an "invisible" link, the bots > don't care): > > <cfset alphaNumList = > "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,0,1,2,3,4,5,6,7,8,9 > "> > > > <cfloop index="i" from="1" to="1000"> > <cfset email = ""> > <cfloop index="i" from="1" to="10"> > <cfset email = email & listGetAt(alphaNumList, > randRange(1,listLen(alphaNumList)))> > </cfloop> > <cfset email = email & "@"> > <cfloop index="i" from="1" to="10"> > <cfset email = email & listGetAt(alphaNumList, > randRange(1,listLen(alphaNumList)))> > </cfloop> > <cfset email = email & ".com"> > <cfoutput><a href="mailto:#email#">#email#</a></cfoutput> > </cfloop> > > <br><br> > > <cfoutput><a href="#cgi.script_name#">click here</a></cfoutput> > > > This will totally trash their email lists. > > > Other ideas: > > - don't display email address - use a contact form that cfmail's the > desired recipient (there's some issues here, but you can manage this). > Then, the recipient will have the originator's email, and can contact > them if they'd like. > > - obfuscate the email address - either place something like > [EMAIL PROTECTED] in there (which you randomize on a regular > basis) and educate your users appropriately or htmlEncodedFormat the > email address (so the source trashes the email address, but the user can > see the actual email address when it is rendered) or put some comments > in there - > billy@<!-- die spamming losers! -->architechx.com > Another idea would be to dynamically generate the emails in images. > (create a GIF/JPG that contains the actual text. > > Of course none of these will work if you are using mailto: links - but > losing these links may be worth saving your users (not to mention that > many free email users can't take advantage of mailto: links, depending > on their browser). Most user feel comfortable enough with writing down > an email address or copy/pasting it into their email client/provider. > > --- > Billy Cravens > > ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org
