473,548 Members | 2,691 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

E-Mail Harvesting

May be a bit off-topic...

When bots scan the web for e-mail address to use for spam, do they look at
what the browser is displaying, or scan through the underlying HTML markup
for e-mail addresses?

At work, we have stopped displaying our webmaster e-mail on our pages and
created a form that uses cgi to process and send the message. Our e-mail
however, is hard coded as a variable in the form and sent to the script.
Will harvesters still be able to get the address, or does it have to be
displayed on the page?

Or do e-mails get harvested in this way at all?

Thanks in advance...
--
SamMan
Rip it to reply

Jul 20 '05 #1
16 2657
SamMan wrote:
May be a bit off-topic...
It's arguable; but it is discussed here from time to time.
When bots scan the web for e-mail address to use for spam, do they
look at what the browser is displaying, or scan through the
underlying HTML markup for e-mail addresses?
AFAIK, they look for mailto: links and for text that looks like an
email address, i.e., a series of letters and numbers, an @ sign, and
more letters and numbers, with certain punctuation.
At work, we have stopped displaying our webmaster e-mail on our
pages and created a form that uses cgi to process and send the
message.
Best practice is to provide both a form and an email address.
Our e-mail however, is hard coded as a variable in the form and
sent to the script.
Which script are you using? The NMS formmail script allows one to
define an alias in config file outside of the directories accessible
by the web.
Will harvesters still be able to get the address, or does it have
to be displayed on the page?


Yes.

--
Brian
follow the directions in my address to email me

Jul 20 '05 #2
SamMan wrote:
At work, we have stopped displaying our webmaster e-mail on our pages and
created a form that uses cgi to process and send the message. Our e-mail
however, is hard coded as a variable in the form and sent to the script.


Change the script so that it contains the address. If you have to use a
3rd party (ISP) script that you cannot control, then you may be able to
use character references in the form, like @ for "@" and . for
".", I do this and my ISP's script accepts it (using character
references is surprisingly effective against harvesting).

Having said that, I have no proof that email harvesters read form
parameter values, but better safe than sorry imo.

--
Spartanicus
Jul 20 '05 #3
Spartanicus pounced upon this pigeonhole and pronounced:
SamMan wrote:
At work, we have stopped displaying our webmaster e-mail on our pages and
created a form that uses cgi to process and send the message. Our e-mail
however, is hard coded as a variable in the form and sent to the script.
Change the script so that it contains the address. If you have to use a
3rd party (ISP) script that you cannot control, then you may be able to
use character references in the form, like @ for "@" and . for
".", I do this and my ISP's script accepts it (using character
references is surprisingly effective against harvesting).


Try this page. (some days it is slow to load)
http://alicorna.com/cgi/obfuscator.cgi
Having said that, I have no proof that email harvesters read form
parameter values, but better safe than sorry imo.


Neither have I proof, other than to say that all addresses at my sites
that began life obfuscated in this fashion have never received spam.

--
-bts
-This space intentionally left blank.
Jul 20 '05 #4
Beauregard T. Shagnasty wrote:
(using character
references is surprisingly effective against harvesting).


Try this page. (some days it is slow to load)
http://alicorna.com/cgi/obfuscator.cgi


It only takes 1 character to be converted to a character reference "@"
is @, easy to remember. There's no need to convert the entire
address to character references, that will only serve to make it
unreadable by humans.

--
Spartanicus
Jul 20 '05 #5
Spartanicus pounced upon this pigeonhole and pronounced:
Beauregard T. Shagnasty wrote:
(using character
references is surprisingly effective against harvesting).


Try this page. (some days it is slow to load)
http://alicorna.com/cgi/obfuscator.cgi


It only takes 1 character to be converted to a character reference "@"
is @, easy to remember. There's no need to convert the entire
address to character references, that will only serve to make it
unreadable by humans.


Heh, humans rarely read the source of the page. <g>

--
-bts
-This space intentionally left blank.
Jul 20 '05 #6
Beauregard T. Shagnasty wrote:
It only takes 1 character to be converted to a character reference "@"
is @, easy to remember. There's no need to convert the entire
address to character references, that will only serve to make it
unreadable by humans.


Heh, humans rarely read the source of the page. <g>


One may hope that the author is also human :)

--
Spartanicus
Jul 20 '05 #7
Spartanicus pounced upon this pigeonhole and pronounced:
Beauregard T. Shagnasty wrote:
It only takes 1 character to be converted to a character reference "@"
is @, easy to remember. There's no need to convert the entire
address to character references, that will only serve to make it
unreadable by humans.


Heh, humans rarely read the source of the page. <g>


One may hope that the author is also human :)


Well, that certainly is a point. One could only hope then, that if the
author is smart enough to know how the obfuscation works, that is does not
present a problem. <more_smileys >

--
-bts
-This space intentionally left off to football.
Jul 20 '05 #8
"Spartanicu s" <me@privacy.net > wrote in message
news:7t******** *************** *********@news. spartanicus.utv internet.ie...
SamMan wrote:
At work, we have stopped displaying our webmaster e-mail on our pages and
created a form that uses cgi to process and send the message. Our e-mail
however, is hard coded as a variable in the form and sent to the script.


Change the script so that it contains the address. If you have to use a
3rd party (ISP) script that you cannot control, then you may be able to
use character references in the form, like @ for "@" and . for
".", I do this and my ISP's script accepts it (using character
references is surprisingly effective against harvesting).

Having said that, I have no proof that email harvesters read form
parameter values, but better safe than sorry imo.

--
Spartanicus

Thanks for all of the answers & tips.

On my personal site, I have a technique in place, and would like to know if
this is also good for obfuscation.

I have an external JavaScript file that takes each part of the email and
assigns it to a variable (beg, mid, end).
beg = myname;
mid = @;
end = something.com;

In the actual page, the values are written ... document.write( beg + mid +
end)...

Is this a good way to hide emails too?

Thanks again!
--
SamMan
Rip it to reply
Jul 20 '05 #9
"SamMan" <ps*@psfdevri p-it.com> wrote in message
news:Cf******** ***********@twi ster.rdc-kc.rr.com...
"Spartanicu s" <me@privacy.net > wrote in message
news:7t******** *************** *********@news. spartanicus.utv internet.ie...
SamMan wrote:
At work, we have stopped displaying our webmaster e-mail on our pages andcreated a form that uses cgi to process and send the message. Our e-mailhowever, is hard coded as a variable in the form and sent to the
script.
Change the script so that it contains the address. If you have to use a
3rd party (ISP) script that you cannot control, then you may be able to
use character references in the form, like @ for "@" and . for
".", I do this and my ISP's script accepts it (using character
references is surprisingly effective against harvesting).

Having said that, I have no proof that email harvesters read form
parameter values, but better safe than sorry imo.

--
Spartanicus

Thanks for all of the answers & tips.

On my personal site, I have a technique in place, and would like to know

if this is also good for obfuscation.

I have an external JavaScript file that takes each part of the email and
assigns it to a variable (beg, mid, end).
beg = myname;
mid = @;
end = something.com;

In the actual page, the values are written ... document.write( beg + mid +
end)...

Is this a good way to hide emails too?

.... of course, I for got to put quotes around my values... i.e. beg =
"myname";
--
SamMan
Rip it to reply
Jul 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
5916
by: john Q | last post by:
I found a PHP based email obfuscator for use in websites, where the source HTML (PHP, actually) file doesn't contain the actual email address in the Mailto tag, but generates it and that generated page (containing a full and conventional Mailto: tag) is what is ultimately presented to the user. The intent is to thwart Spam bots and...
2
2452
by: Jim | last post by:
I have contact info including email address in MySQL. If I use php to extract them into online directory, can a spambot harvest the address? or does the spambot read the raw php code? I previously used javascript to hide my email addresses but more and more people are disabling javascripting for security reasons. I need to find a way to...
20
1482
by: TomatoeMan | last post by:
I'm using the following script on my web site. I have done this in order to keep web spider programs from harvesting my email address. I want to have the "Subject" line filled in also. Does anyone know how I can do that? Thanks ---------------------------------------------
88
12363
by: Mike | last post by:
Is there a way to determine what a user's default email client is? I read a post from 3 years ago that said no. I guess I'm hoping something has come along since then.
8
2738
by: pcchong | last post by:
what is the simplest way to put the email address on the homepage so that it is not readable by email extractor or search engine? I remember someone wrote a simple script to do that, but I can't find it now. Anyone know about this? Thanks. pcchong
117
11751
by: Steevo | last post by:
Any suggestions as to the best programs for cloaking email addresses? Many thanks -- Steevo
4
5178
by: web_design | last post by:
I put this together from some other scripts I am using on a site. I'm trying to make a better email hiding script. It isn't working. Also, it causes Internet Explorer 6 SP2 to block the script as "active content". :( The idea is that if the user doesn't have JavaScript enabled, they will see an image of the email address (that can't be...
2
3218
by: jieelee | last post by:
Hi, I am Jieun I am working on e-mail redirecting for preventing email harvesting using iframe. When clicking on email and then click on another link on the page. Then press back button, the email client reppears with the email address that was clicked in the previous page. How can I avoid this behavior? Here's the code. HTML ...
17
2136
by: HornyLaBelle | last post by:
I'm hiding the email address on a website with this javascript which works fine: --------------------------------- <p>Send your comments and questions to our <script language=javascript> <!-- var contact = "Newsletter Editor"
0
7518
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7444
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7467
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7805
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5367
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3497
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3478
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1054
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
755
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.