GIDForums  

Go Back   GIDForums > Webmaster Forums > Web Design Forum
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #11  
Old 28-Feb-2004, 22:30
BobbyDouglas's Avatar
BobbyDouglas BobbyDouglas is offline
Regular Member
 
Join Date: Aug 2003
Posts: 789
BobbyDouglas has a spectacular aura aboutBobbyDouglas has a spectacular aura about
Thanks a bunch for the code Walt. I am using it on a client's site.

Reason why I use YOUR code vs the one above is:
My code takes the same first part of the e-mail. Ex: "something"@domain.com where I say the first part = something, it also displays the e-mail address text as "something". So if I wanted to have <a href="mailto:something@something.com">And say something other than something@something.com</a> I would have to use YOUR code.

My code would only work good for:
HTML Code:
<a href="mailto:something@something.com">something@something.com</a>

I hope you can understand the differences.
__________________
Mr. Bob's Web Design - Tirelessly looking for ways to enhance the customer base of your business.
  #12  
Old 29-Feb-2004, 19:21
MadCow MadCow is offline
New Member
 
Join Date: Feb 2004
Location: Tampa Florida
Posts: 9
MadCow is on a distinguished road
This is great info, thank you for putting it together. Does this still allow someone to click on the address and launch their email client?
  #13  
Old 29-Feb-2004, 19:52
BobbyDouglas's Avatar
BobbyDouglas BobbyDouglas is offline
Regular Member
 
Join Date: Aug 2003
Posts: 789
BobbyDouglas has a spectacular aura aboutBobbyDouglas has a spectacular aura about
Yes it does. Both versions "work."
__________________
Mr. Bob's Web Design - Tirelessly looking for ways to enhance the customer base of your business.
  #14  
Old 29-Feb-2004, 19:57
WaltP's Avatar
WaltP WaltP is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Midwest US
Posts: 3,335
WaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to all
Quote:
Originally Posted by MadCow
This is great info, thank you for putting it together. Does this still allow someone to click on the address and launch their email client?
Of course. Otherwise it would be useless

The browser will take the code and translate it into the exact code you would have used had you used the email address itself. If you'd like to see it, go to http://wildeware.com and look at the contact page. View the source for the page and try clicking the link. You'll see it operate as you expect, but you won't be able to find the email address. It's part of the javascript in the source. Try various ideas on a test page of your own making.
  #15  
Old 29-Feb-2004, 20:11
MadCow MadCow is offline
New Member
 
Join Date: Feb 2004
Location: Tampa Florida
Posts: 9
MadCow is on a distinguished road
great stuff!
  #16  
Old 08-Jun-2004, 08:41
zhou zhou is offline
New Member
 
Join Date: Jun 2004
Posts: 1
zhou is on a distinguished road

Hide, not scramble, e-mail address from human and spambot


Quote:
Originally Posted by BobbyDouglas
Title says it all. I will demonstrate one of the better methods used to hide your e-mail address from the nasty eyes of SPAM Bots.


What about a script to hide from not only spambot but also human? The few scripts I have found on the Internet do not realy HIDE e-mail address. They only SCRABLE e-mail address in one way or the other.

A few years back, I visited a web site and sent an e-mail to the webmaster. When I clicked on the "e-mail me" button, a form poppd up, I wrote a comment and clicked the "send" button. The e-mail was sent but I had no clue to where it was sent. I viewed the source of the form but still saw no e-mail address.

How is this done?
Last edited by JdS : 08-Jun-2004 at 09:00. Reason: fixed typo in post
  #17  
Old 08-Jun-2004, 09:01
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
Hello Zhou,

This is not as complicated as it seems, it's just that the email / contact us form is using server-side scripting to process the input.

The email address to send the information to is stored inside the server-side script, so you never actually get to see it on a web page no matter how much you look.
  #18  
Old 08-Jun-2004, 21:53
WaltP's Avatar
WaltP WaltP is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Midwest US
Posts: 3,335
WaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to all
Quote:
Originally Posted by JdS
Hello Zhou,

This is not as complicated as it seems, it's just that the email / contact us form is using server-side scripting to process the input.

The email address to send the information to is stored inside the server-side script, so you never actually get to see it on a web page no matter how much you look.

But unless the email address is encrypted on the server, bots will still get it even though you can't. Plus with the latest changes to browsers it's getting harder to use a form for emailing. You almost have to have a formmail cgi script available.
__________________

During the election they said Obama could only be elected when pigs fly. Well, we currently have an epidemic of Swine Flu. Coincidence?
  #19  
Old 10-Jun-2004, 08:27
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
I am not sure spam-bots can get to your email addresses even if they're unencrypted on the server. If it's possible, I cannot imagine how this can be done - maybe you need to explain how this 'vulnerability' can exist in these kinds of situations?
  #20  
Old 10-Jun-2004, 22:13
WaltP's Avatar
WaltP WaltP is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Midwest US
Posts: 3,335
WaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to allWaltP is a name known to all
Quote:
Originally Posted by JdS
I am not sure spam-bots can get to your email addresses even if they're unencrypted on the server. If it's possible, I cannot imagine how this can be done - maybe you need to explain how this 'vulnerability' can exist in these kinds of situations?
The same way a program can find all the files that contain a specified text string over your entire hard disk.
  • find a server
  • start at the root directory
  • open each file in each directory
    • search file for the character @
    • if found
      • check characters before @ for legal email characters A-Z, 0-9, ., etc
      • check characters after @
      • store everything found
  • continue search for another server
__________________

During the election they said Obama could only be elected when pigs fly. Well, we currently have an epidemic of Swine Flu. Coincidence?
 
 

Recent GIDBlogProblems with the Navy (Chiefs) by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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 Off
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 14:24.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.