I have started getting a lot of spam through our Actinic contact form. It appears that they are generated automatically. Anyone have any idea of how to stop this?
Announcement
Collapse
No announcement yet.
Contact Form Spam
Collapse
X
-
I guess you need to add a 'captcha' test.
Mike-----------------------------------------
First Tackle - Fly Fishing and Game Angling
-----------------------------------------
Comment
-
We are being used for this too - lots today. This is a major flaw in Actinic, and I'm surprised it is there. Basic formmail security issue. Obviously someones found Actinic is popular and is now sending betting spam to people. I'd appreciate any clues on how to remove the email link completely until this is fixed. I presume it is the same in v8, or should I upgrade immediately?
MatthewMatthew
Comment
-
Hi Guys
I do not think that this is appropriate for the wishlist I would say it needs to go to the top of an urgent security update?
JMHO
RegardsAffordable solutions for busy professionals.
Website Maintenance | UK Web Hosting
Comment
-
I just worked out it is Act_ContactUs.html, and can of course comment out the form, but that doesn't stop any of the spammers as they will be calling the Perl directly with a Post. Fixing this spam leak should be a high priority - the form must never send to anyone other than a designated destination otherwise it is a spammers paradise.Matthew
Comment
-
Originally posted by Owen DrummDesign Options > Navigation and remove the Contact us details or if you have hard coded it remove the NETQUOTEVAR:NAVBMAIL.
MatthewMatthew
Comment
-
A temporary work around would be to substitute the Contact us link with the following code, it will look like a normal link to customers, but will protect your email address:
<script type=text/javascript>
var _u = "sales";
var _d = "domain.co.uk";
var _l = _u + "@" + _d;
var _m = "click to email us";
document.write("<a href='mailto:"+_l+"'>"+_m+"</a>");
</script>
Change the 'sales' and 'domain.co.uk' to your own email address.
Kind regards,Bruce King
SellerDeck
Comment
-
Bruce,
Thanks for the info, but that doesn't solve the problem. Once a spammer has identified your site as an Actinic site, they can access the .pl file directly. No fiddling with the form will help. The fix has to be to the script that does the emailing, and it just has to not email the email address, only yours.
MatthewMatthew
Comment
Comment