+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11

Thread: to much spam getting thru

  1. #1
    Join Date
    Feb 2006
    Posts
    21

    Default to much spam getting thru

    Hello:

    One of my clients that I recently setup to use formmail.php is getting loads of spam all of a sudden now that forms have been added to the site. What can I do if anything to slow it down or stop it?

  2. #2
    Join Date
    Jul 2005
    Posts
    175

    Default Re: to much spam getting thru

    hi

    use the "AT_MANGLE" feature (formmail.php ~ line 2893)
    PHP Code:
    define("AT_MANGLE","AT"); 
    regarding this feature I highly recommend you to read the following thread:
    http://tectite.com/vbforums/showthread.php?t=807
    there're very good examples about how to use it best and most effective

    erik

  3. #3
    Join Date
    Mar 2004
    Posts
    2,224

    Default Re: to much spam getting thru

    also, now that a spammer has the email address, there's nothing you can do other that change the email address and disable (delete) the old one.

    AT_MANGLE works, but it's generally too late to close the barn door when the horse has already bolted.

  4. #4
    Join Date
    Feb 2006
    Posts
    21

    Default Re: to much spam getting thru

    You are right about it just may being to late as I am doing this after the fact and the site being up for about two weeks.

    Also one other problem which formmail has no control over and that is there are a few just regular email (mailto) links on the site. Even if I activated the define("AT_MANGLE","AT"); before putting the site up it most likely still would have not matter with the regular email mailto links.

  5. #5
    Join Date
    Jul 2005
    Posts
    175

    Default Re: to much spam getting thru

    yep, too late

    also it's better to avoid regular mailto links, at least i do so
    there exist different methods to handle that, for example by using javascript ...
    just search google for this topic, there you'll find a lot
    Last edited by asket; 21-Feb-2006 at 02:24 PM.

  6. #6
    Join Date
    Feb 2006
    Posts
    21

    Default Re: to much spam getting thru

    You're saying you don't have to use mailto ?

    Can you send me example that you are using?

    What exact words would I use to search?

  7. #7
    Join Date
    Feb 2006
    Posts
    21

    Default Re: to much spam getting thru

    Disable or delete is impossible now due to this site belonging to a business and the domain.com cannot be changed of course and all the usernames in front of the @ symbol are already in place. In fact I am not even using the usual names like info, sales, and so forth. Every usernames is specific.

    Quote Originally Posted by crabtree
    also, now that a spammer has the email address, there's nothing you can do other that change the email address and disable (delete) the old one.

    AT_MANGLE works, but it's generally too late to close the barn door when the horse has already bolted.

  8. #8
    Join Date
    Jul 2005
    Posts
    175

    Default Re: to much spam getting thru

    not exactly "no mailto", but:

    for example:
    http://www.net-force.nl/tools/anti-spam/

    or:
    http://www.polycoder.de/was-macht-de...str2ascii.html
    (sorry, site only in german)

    or:
    <script language="JavaScript"><!--
    var name = "protected";
    var domain = "domain.com";
    document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
    document.write(name + '@' + domain + '</a>');
    // --></script>
    or an extremely simply one from Phloo (a member from spotleid)
    <a href="mailto:info_at_domain_point_de" onmouseover="this.href=this.href.replace('_at_','@');this.href=this.href.replace('_point_','.');">Mail me!</a>
    there exist a lot more possibilities, scripts and also freeware apps


    e: maybe too late for getting no spam, but not too late for getting less spam

  9. #9
    Join Date
    Feb 2006
    Posts
    21

    Default Re: to much spam getting thru

    Yeah, I think you are right, won't eliminate what has been done but could help any new spam bots scanning. Thanks for the great help.

    I tried the encoding method, wow, talk about the way it encodes if you use one of the automated procedures.

    Quote Originally Posted by asket
    not exactly "no mailto", but:

    for example:
    http://www.net-force.nl/tools/anti-spam/

    or:
    http://www.polycoder.de/was-macht-de...str2ascii.html
    (sorry, site only in german)

    or:


    or an extremely simply one from Phloo (a member from spotleid)


    there exist a lot more possibilities, scripts and also freeware apps


    e: maybe too late for getting no spam, but not too late for getting less spam

  10. #10
    Join Date
    Jul 2005
    Posts
    175

    Default Re: to much spam getting thru

    till yet i haven't really used one of the automated methods
    but the first one (net-force.nl) looks rather "heavy"
    » Description
    Spambots search / crawl the web for e-mail addresses to send you crap. For webmasters there are different ways to show an e-mail address on a web page, while hiding the address for spambots. For example, you can display a picture with the address on it, instead of the html link.

    The script below uses two different ways to hide an e-mail address from spambots. First of all, it encodes the text to HTML entities. The browser displays these entities without a problem, but many spambots are fooled by this. The 'Less simple' and 'Heavy' way also use Javascript to hide the '<a href="mailto:">' tag and split up the e-mail address, so a spambot won't even detect it is a link.

    Summary of methods:

    Simple
    HTML Entities
    Less simple
    HTML Entities, Javascript
    Heavy
    HTML Entities, Javascript, Split up
    (quoted from http://www.net-force.nl/tools/anti-spam/)


    regarding the second link (polycoder.de) there's to read that this encoding method is not exactly safe anymore, because in the meantime some searchengine-robots can readout such encrypted passages.
    therefore I prefer a method using javascript or both, for paranoid ones ie the "heavy" method from net-force.nl

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Spam protection
    By osluk in forum FormMailEncoder/Decoder
    Replies: 5
    Last Post: 02-Aug-2006, 09:53 PM
  2. Help - Potential SPAM with formmail.php
    By fullfocus in forum Community Support
    Replies: 2
    Last Post: 23-Mar-2006, 10:20 PM
  3. Qestion about spam bots
    By milez in forum FormMail Subscription Support
    Replies: 1
    Last Post: 14-Nov-2005, 04:32 PM
  4. Someone trying to exploit script to relay spam
    By auren in forum FormMail Subscription Support
    Replies: 6
    Last Post: 06-Sep-2005, 10:58 PM
  5. Anti-spam question
    By antispam in forum FormMail Subscription Support
    Replies: 1
    Last Post: 03-Mar-2005, 11:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts