Email Address Protection From Spam Bots

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #15) by delivi on Dec 24 2007, 08:13 AM. (Line Breaks Removed)
QUOTETo be honest, I don't mind spam. I don't get many emails so any email makes me happy. xPThe Anti-Spam or spam protection service is one of the hot industries in the current IT sector. If no one cares about spams then this industry will be doomed
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > The Internet > Website Discussion

Email Address Protection From Spam Bots

delivi
I've developed a nifty small javascript file that will protect the email address in the webpages from spam bots.

all you need to do is to download safeMail from http://blog.delivi.info/get/safeMail

include the javascript file in between the <head> & </head> tags in the following format.

CODE
<script type="text/javascript" src="PATH/safeMail.js"></script>


here PATH is the location where you've uploaded the safeMail.js file

then include the email address in your web page in the following format,

CODE
<span class="safemail">username [at] domain [dot] com</span>


the class 'safemail' is used by the script to identify the mail address and generate the valid code as shown below.

CODE
<span class="safemail"><a href="mailto:username@domain.com">username@domain.com</a></span>


the generated code will not be visible to the spam bots so you protect your email from spams.

Please try this script and post your comments and suggestions here or at http://blog.delivi.info/javascript/safemail/

 

 

 


Reply

BuffaloHELP
QUOTE(delivi @ Dec 7 2007, 03:38 AM) *
the generated code will not be visible to the spam bots so you protect your email from spams.


How can we be of certain? Is there a way to test this in the eyes of spam bot? Spam bots are getting better where they are able to read JAVA scripts in action.

jlhaslip and I were in the middle of something similar to your quick and awesome email replacement using dynamic image--where your email address will show as jpg but to use it, the code would be very similar to yours.

If spam bots truly cannot see the converted email address, you're sitting on a goldmine here delivi! smile.gif

Another thought: what about home based pc spammers? They use auto surf and programs to click all URLs on a site to collect email addresses. This won't be protected from these manual email collectors since a browser translates into a real email address...?

 

 

 


Reply

delivi
you are right BH, but the spam bots have a lot of information out there to crawl at, so they wont be wasting time running all the javascript codes. this will consume a lot of server power. So as of now we can be assured that the spam bots will not see as the email address is generated on the fly and they dont care to execute the javascript codings.

as about the human spammers I dont think that there is a proper solution for it.

I was planning about the Image replacement, but it affects the usability and accessability of the email address. People prefer to click on the email and send message or atleast copy it. You cannot do both on an image.

The best possible solution would be to use flash. smile.gif

Reply

t3jem
Ok, I see what you guys are getting at, but couldn't you protect your email by using a PHP mailer function so that not even the regular users can find your email? I'm doing that right now, I just made a form for my users to send email to me with and I thought this would protect my email since PHP is executed servside, but I could be wrong.

Reply

jlhaslip
QUOTE(t3jem @ Dec 7 2007, 02:47 PM) *
Ok, I see what you guys are getting at, but couldn't you protect your email by using a PHP mailer function so that not even the regular users can find your email? I'm doing that right now, I just made a form for my users to send email to me with and I thought this would protect my email since PHP is executed servside, but I could be wrong.

I belive you are correct in your assumpitions about the Bots not gathering your email address via php server side scripting.
If you look in my Siggy, there is a link to a page I have written that provides the code for an obfuscated mailto: link which you can place on to your page and I suspect that tyhe Bots are not *yet* able to find the email address from it.

Gawd, I hate spam... mad.gif

Reply

truefusion
Interesting code. But i must ask a question similar to BuffaloHELPs: How do we know there aren't spam bots that have an advanced form of digging out e-mails in a page? I mean, what if a spam bot was programmed to search out e-mails in the following syntax: username [at] domain [dot] com?

QUOTE(delivi @ Dec 7 2007, 03:58 AM) *
People prefer to click on the email and send message or atleast copy it. You cannot do both on an image.

I don't know about that. Actually, i'ma see this as a challenge and try to create a script that makes use of an e-mail image that is clickable. I'll make a new topic on it if i can get it to work by any means possible. ph34r.gif

Reply

Csshih
I agree with t3jem again.
Just make a form where clients can just fill out information, and sort out the weird ones.

Reply

anwiii
QUOTE(Csshih @ Dec 7 2007, 07:52 PM) *
I agree with t3jem again.
Just make a form where clients can just fill out information, and sort out the weird ones.


i agree. i have been thinking about illiminating spam on my new upcoming website and all i could think of is to make a form for email. since i can mark all spam in bulk, all i have to do is go through it every day and do some upkeep. any good webmaster does this anyway.

i wouldn't trust the javascript code that was posted vaguely. i went to the site and just too many holes in it. may illiminate some, just like creating a form, but not all. i haven't looked at how haslip has written his code. i'm going to take a peek smile.gif

and true fusion is exactly right. why i wouldn't trust it. if i wanted to create a bot, it would also be very general so i can capture what looks to be an address but isin't. if i send mail, it will just get ruturned and i delete it out of my database. but general in the terms with ".<all extensions>" would be really general but if i include it to look for an @ sign before the extension, then you have a really good bot and i wouldn't care if it picked up some text that wasn't an email address. i would know soon enough.

i'm not too familiar with these dynamic graphic images, but these bots can pick up those now too i hear. i'm not an expert at programming now either though(used to be smile.gif) and it seems like most anything that is created to deter bots right now wont work in the future so you would always have to keep changing your code around.

aside from the what i will probably end up doing with my form, i'd like to expand on the idea of the original poster. i don't know if this is possible, but create a jpg or gif image, allow it to be clickable, but create a script that encripts letters and numbers within the html code.....the bot will see the script, but not the algorythm, and what shows up on the site itself that's viewable would be different than what you see in the source code.

anyway....did i confuse? smile.gif dunno if this can be done though. i have to see what haslip did.



well, i went to the site you listed in your sig and checked if you used the code for your email at the bottom....and yup! smile.gif good job. is that your real email or a test email to see if you get spam from that webpage? if it's a test email, have you gotten any spam yet? have you posted your like in any high profile forums?

script seems to have holes in it as far as spam bot capabilities but i think out of all the scripts i've seen so far in researching, i have to say i like this one the best bust i am going to look at the script more closely. i have it saved. i'm rusty in a few areas and want to decipher it better.

still wondering why someone can't just create something in a database that would decipher misc. code that is pasted in the html. i think you would have to force the visitor to a hidden page for the code to be triggered, but is this possible or am i just nuts and should put my thinking cap back on? smile.gif

nice code btw haslip. i don't know why you wouldn't be marketing it right now. it seems very efficient for what i have noticed and in another year, i doubt it will be of any use since i think the bots are going to become alot smarter within that time. or is this just a hobby of yours smile.gif

Reply

Liam_CF
This sounds pretty good, but I'm not going to use it as I don't have an email on my website.

Reply

truefusion
QUOTE(anwiii @ Dec 7 2007, 10:27 PM) *
aside from the what i will probably end up doing with my form, i'd like to expand on the idea of the original poster. i don't know if this is possible, but create a jpg or gif image, allow it to be clickable, but create a script that encripts letters and numbers within the html code.....the bot will see the script, but not the algorythm, and what shows up on the site itself that's viewable would be different than what you see in the source code.

That was similar to what i had in mind. Since PHP can decode base64 encoding, i could use the GET method to help with the dynamic generation of the image. I could use a JavaScript function that decodes base64, as well, which would get the value attached to the image link, and have JavaScript convert the image into selectable text or a clickable link.

Reply

Latest Entries

delivi
QUOTE
To be honest, I don't mind spam. I don't get many emails so any email makes me happy. xP


The Anti-Spam or spam protection service is one of the hot industries in the current IT sector. If no one cares about spams then this industry will be doomed smile.gif

Reply

MiniK
To be honest, I don't mind spam. I don't get many emails so any email makes me happy. xP

Reply

delivi
I'm working an a newer and better solutions that will be more secure and effecient than the present solutions.

I'll be using AJAX and flash to process the email address. this will definitely be the most effective solution to keep the spam bots at the bay. smile.gif

Reply

truefusion
QUOTE(delivi @ Dec 12 2007, 04:46 AM) *
* the reason why I choose the email format to be

CODE
myname [at] anydomain [dot] com

is because even if the browser doses not support javascript the email address will still be in readable and understandable format. This increases the usability and for the screen reeders.

Although your script would work without the need of a server-side scripting language, and the munged up e-mail would still be viewable by the user if JavaScript is disabled, according to this webpage (link), they do not recommend munging up e-mail addresses, because there are already spam bots out there that look for these munged-up e-mail addresses, which defeats the whole purpose of this script. There may be spam bots that can read images with an e-mail address on them, but it seems like that is rare, if any. However, security can be increased if you warp the text on the image while still keeping it good enough to be read by human eyes. Because, i'm assuming, reading an image is the same as having a PDA type letters out by writing on the screen with an attached pen (like those things you see in super markets or when you get a delivery). Warping the text would make it very hard for the spam bot to translate the warped text accurately.

Reply

anwiii
well i think you BOTH did an excellent job writing your code. i've researched and it's the best i've seen off a simple google search. unfortunately, both still have holes and the code will be outdated sometime next year.

i think truefusion is talking about something innovative though. this is what someone needs to create so it will last a couple years with no spam. and if something like what truefusion or my idea(similar concept) can be done, i just don't see any bot capturing any email addresses anytime soon. how could they?

problem here is that spam bots are ahead of their time and there is a lot of money to be made with spam bots. unfortunately there isn't alot of money to be made creating a wall for the bots.....at least not until now since an early stage concept to deter bots and how they collect email addresses.

i still think you two should be selling your script in an ebook or off clickbank or something similar. at least have it pay for your time because both scripts were excellent for what they can do right NOW and i haven't seen any similar code written....at least with my google searches....and both your webpages never did come up in any of my searches either.

i like free scripts and all which go along the same lines as open source, but by selling scripts like this, it could create a trend and more demand for something that will work better in the future. since i am now on the beginning stages of my business website, i will always be searching for that perfect code. until then, i will have to decide which script i i wish to use between the two of ya. yours was simpler to understand for me. i am still trying to decipher part of haslips code. also, in the beginning of his code, it says it doesn't verify if the email address is valid but at the end of the html document, it seems like it does.

has anyone set up a test email on a webpage to see if the bots are capturing after doing some seo and submitting to the search engines and posting the web page to a few high profile forums? i'd be interested in some results of someone wants to test it.

anyway, i think you both did an awesome job from what i could see and it's not a matter of which is better because both have their pros and cons

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Recent Queries:-
  1. protection from spam bots in java - 166.13 hr back. (1)
  2. php hid email from spambots - 818.47 hr back. (1)
  3. hid email address in the mailer funciton from spam bots - 992.59 hr back. (1)
Similar Topics

Keywords : email, address, protection, spam, bots

  1. Privacyprotect
    Is it spam? (5)
  2. Besides Email Notification, What Does PayPal Offer?
    (8)
    I've never worked with pay pal before and I was going to open an online store. Being the php
    freak that I am, I coded my own shopping cart so that isn't really an issue. I was just
    wondering how my website would know when somebody has payed or not? Can I have paypal load a php
    page or is it only through email? Pretty much any information about pay pal would be nice.
    Thanks!....
  3. Which Email Service Is Best And Why?
    General discussion about email services (7)
    I will like to start with the 3 email services that I have been using for long time - Gmail Beta
    (GB), Yahoo Beta (YB) and Hotmail Beta (HB - also known as Live Mail). GB provides 2.65 GB of space
    till date. YB - 1 GB where as HB provides 2 GB but out of these 3, only GB is live and you can get
    GB account over phone or by invitation whereas in case of YB and HB, you need to be on the waiting
    list unless you use hacks (which are illegal) to get the account. GB is compatible with most of the
    browsers including IE, Firefox, Netscape, Opera & Safari. YB is compatible with ....
  4. Ip Address For Web Page Hosting
    (1)
    Hi, me and a friend are planning to put up our own server to host the future web pages that we will
    be making, and to sell hosting. Right now we are stuck with the Ip address, anybody know if
    trap17.com sells an ip address or someone else that does? I have dsl at home where I was planning
    to put the server, I called the internet service provider and they told me that I would need to
    upgrade to the enterprise package which would cost $100 dollars plus what I am paying for the
    internet, which would total to about $139 dollars a month. Which is too expensive for ....
  5. Lycos Upgrading Free Email Accounts
    (2)
    You may or may not know this, but a while ago I was checking my lycos mail. They are now going to
    supposedly offer 3 GB of storage rather than their 5 MB. I'm still waiting for them to upgrade
    my account, but they're getting there. To put it in perspective - that's around .5 GB more
    than a gmail account, and doesn't require a cell phone to get one.....
  6. Longest Email Address Ever
    (11)
    I ran across a site the other day that gives you the longest email address ever. I dont get why
    anyone would want one, but here's what they say it does: -Some web forums cannot read -Some
    email software cannot be configured -Companies think it is fake It's free, so you guys can try
    it. I havent yet, but I might soon. Tell me what you guys think
    http://www.abcdefghijklmnopqrstuvwxyzabcde...bcdefghijk.com/ ....
  7. Help! Email Service With 20+meg Attachment
    I need help with finding an email service (5)
    Hello, I would like to know if any of you all know of a free email service that lets you send an
    email with an attachmentent that is around 20 - 25 megs. in size. The reason for this is because Im
    entering a contest in which I will send a multimedia program made in flash, and thats what the size
    is going to be around when I finish it later today, so it cant be one of those places were you
    upload a file and people download it, it has to be more personal. Please help, I have to send it
    before 12 am tomorrow. Thanks.....
  8. I'm Trying To Think Of A Name For The Web Address
    (7)
    I'm trying to think of subdomain for my webpage in this format: http:// something .trap17.com I
    am going to make it into a website about games. Maybe more specifically about Dance Dance Revolution
    or about the whole lineup of game of The Legend of Zelda. Maybe the lineup of Dancing Games or all
    games that require a lot of movement. Or maybe everything I've listed here. I was also thinking
    of just putting my username in the subdomain. Can you help me make a name?....
  9. Email?
    what email do you use? (2)
    please will you tell me what email you use?? i couldnt do a poll so i thought hey, why not just ask.
    please reply with the email providerr u use i use gmail by the way thanks If you would have just
    search the forum like I asked you to, you would have found this topic and read it (instead of
    starting a new one) http://www.trap17.com/forums/index.php?sho...ndpost&p=145014 Topic closed. ....
  10. Which Email Provider Do You Use?
    (108)
    .....GMX, Hotmail, Gmail or another? I use GMX and Gmail and I'm very satisfied with them....
    /blink.gif' border='0' style='vertical-align:middle' alt='blink.gif' /> ....
  11. Paypal Scam Warning!
    New email attempt to hack your account (21)
    I've been getting those stupid scam emails for years, where they tell you to update your
    security info. I hope EVERYBODY knows those are a scam and NEVER click through. The proper response
    is to forward them to SPOOF@PAYPAL.COM, then delete the message without going to the site. Now
    there's a new one--at least this is the first time I've gotten one. This time they tell you
    that you've added a new email address and they want you to confirm. Again, the answer is to
    forward to SPOOF@PAYPAL.COM without clicking through or going to that site, then delete the ....
  12. Domain Name Email Account
    can i have email's account with my domain extension (4)
    Hi, I bought a couple of domain names in godaddy, but i did not buy any email accounts. I would like
    to have an email account like this: info@mydomainname.com Is there any way i could redirect that
    email name to one of my email accounts or do i need to buy them to godaddy. Thanks in advanced for
    your feedback. PD. Sorry that i post this topic here but i did not find an appropiate forum.....
  13. How Do You Fight Spam On Your Site?
    (4)
    I am currently using wordpress for blogging. There are always some annoying spammers who would use
    some anonymous proxies for spamming. They must have been bots for even at one time I mistakenly hid
    the commenting box due to some errors with the php script, they still manage to spam on my site. Of
    course, I can turn off commenting or specify that all comments be moderated, but I would also like
    my blog to be as “free” as possible. I have been using blacklist, but it seems to be quite reactive
    instead of proactive. Do you have any other means to fight blog spammers?....
  14. Little Icon Next To Address
    How to get them? (11)
    ive noticed lots of sites when i use opera have a little icon to the left of the address bar:
    and i saw this frog when i was uploading the first 2 /tongue.gif' border='0'
    style='vertical-align:middle' alt='tongue.gif' /> They look quite cool and since i dont know
    what they use (php or html etc)to get there im asking here if anyone knows how to get them?.(another
    reason is that most of the forums are hiding under a complicated sub-folder sort of thing) Thanks
    in advance....
  15. Email Help
    (4)
    hay does anyone know how to put a email signature on the bottom of all your outgoing emails. i want
    to do it in gmail and hotmail but i dont know how. if anyone knows how to, please help me i am
    impaired. these are the signatures i have. and ....
  16. 100 Gb Free For Email Only
    alsow great don't you think? (10)
    here it is: CODE http://www.hriders.com/ I have just registered 5 minutes ago, so,
    go see it. Carpe diem.....
  17. Free 3 Gb Storage For Just Email
    It's great (4)
    Here it is: CODE http://www.unitedemailsystems.com/ What do you get? Free 3 GB
    storage - up to 150,000% more than other free e-mail providers! Free virus scanning for e-mail
    attachments! Access from anywhere you have a Web connection! POP3 / IMAP and WAP
    Acess! SMS System / Forum / Interactive Services Auto Message Responders & Auto Forwarders
    Never Have To Delete Again I already have an account, it's great, the graphics are very good
    and they are like outlook, and by the way you can integrate with with outlook. Carpe diem.....

    1. Looking for email, address, protection, spam, bots

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for email, address, protection, spam, bots

*MORE FROM TRAP17.COM*
advertisement



Email Address Protection From Spam Bots



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE