The Lizard Lounge
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsCommunityThe Lizard Lounge

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old January 13th, 2004, 08:09 PM
robsta robsta is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Pacific NW, U.S.A.
Posts: 146 robsta User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
&#64; and spam bots

Howdie,

Does using the number code [&#64] in place of the @ symbol in an e-mail address out wit the spam bots from harvesting a mailto address?

If not, what's the generally accepted practice?

Thanks,
Robsta
__________________
http://www.fond-regards.com

Reply With Quote
  #2  
Old January 13th, 2004, 09:50 PM
FrankieShakes FrankieShakes is offline
Frank The Tank!
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: Jun 2002
Location: Toronto, Canada
Posts: 1,246 FrankieShakes User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to FrankieShakes Send a message via MSN to FrankieShakes
Robsta,

I've heard the same myself... Although I haven't had any experience with it, I can't see the harm in trying it out...

Can't be any worse than the amount of spam you may be receiving now... I know my inbox is full of it!!

Reply With Quote
  #3  
Old January 13th, 2004, 10:20 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 8 m 57 sec
Reputation Power: 9
Send a message via ICQ to stumpy Send a message via MSN to stumpy
Ere's how I do it: http://www.nightwatchmen.com/v2/contact.asp
View source. Cept it relies on JS.

Reply With Quote
  #4  
Old January 13th, 2004, 10:28 PM
FrankieShakes FrankieShakes is offline
Frank The Tank!
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: Jun 2002
Location: Toronto, Canada
Posts: 1,246 FrankieShakes User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to FrankieShakes Send a message via MSN to FrankieShakes
stumpster,

Have you noticed a decline in your spam? I wonder how it would affect those with JS disabled... I've heard that using the hex equivalent (I believe it was hex) will do the trick as well...

Reply With Quote
  #5  
Old January 13th, 2004, 10:30 PM
robsta robsta is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Pacific NW, U.S.A.
Posts: 146 robsta User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Hey Frankie,

Quote:
Although I haven't had any experience with it, I can't see the harm in trying it out...


I started doing this on one of the sites I developed - my first instinct was - «surely the bots are wise to this». I've not given it enough time to see if it works - still getting the rock hard abs, SEO, and viagara junk mail... unless someone's trying to tell me something

- Robsta

Reply With Quote
  #6  
Old January 13th, 2004, 10:32 PM
FrankieShakes FrankieShakes is offline
Frank The Tank!
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: Jun 2002
Location: Toronto, Canada
Posts: 1,246 FrankieShakes User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to FrankieShakes Send a message via MSN to FrankieShakes
Robsta,

LOL! They're trying to tell you that you need to be an SEO who's all buffed up and hopped on viagra! Man... The wonders that would do!

On a more serious note... I hope it does solve the problem. If it does, I'm gonna have to change the way my emails are listed as well... As of now, the spam is really starting to tick me off!

Reply With Quote
  #7  
Old January 13th, 2004, 10:42 PM
robsta robsta is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Pacific NW, U.S.A.
Posts: 146 robsta User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Quote:
Originally posted by stumpy
Ere's how I do it: http://www.nightwatchmen.com/v2/contact.asp
View source. Cept it relies on JS.

Hey Stumpy,

Looks good - the bots'll never find it . I'll give it a spin.
Code:
<script language=javascript>
<!-- 
var username = "name";
var hostname = "domainname.com";
var linktext = username + "@" + hostname;
document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>")
//-->
</script>


Thx!
Robsta


p.s. What would happen if a user doesn't have js enabled?

Reply With Quote
  #8  
Old January 13th, 2004, 10:46 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 8 m 57 sec
Reputation Power: 9
Send a message via ICQ to stumpy Send a message via MSN to stumpy
I've only ever received 2 spams at my work & home addresses, so I guess it works (I have a yahoo address I use to signup to things online, which is my spam catcher, but even that doesn't get any... go figure.)

With JS off, nothing in between the <script> tags is processed. That means, nothing will show up.

Reply With Quote
  #9  
Old January 13th, 2004, 10:58 PM
robsta robsta is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Pacific NW, U.S.A.
Posts: 146 robsta User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Quote:
Originally posted by stumpy
I've only ever received 2 spams at my work & home addresses, so I guess it works


Hey Stumpy,

With a spam filter that good how would ya know if you won a prize in one of those «You've been selected...» sweepstakes? C'mon!

- Robsta

Reply With Quote
  #10  
Old January 14th, 2004, 10:11 AM
MadCowDzz's Avatar
MadCowDzz MadCowDzz is offline
I'm Internet Famous
Dev Articles Frequenter (2500 - 2999 posts)
 
Join Date: Jan 2003
Location: Toronto, Canada
Posts: 2,890 MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 1 Week 16 h 14 m 9 sec
Reputation Power: 8
I've heard the javascript example works... similarly, I can't help but enjoy PHP's documentation forum where they display the address like: user AT host DOT com... i think its kind of cute =)

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsCommunityThe Lizard Lounge > &#64; and spam bots


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT