Spam via non-existent contact form ???

The last couple of days I'm receiving increasing amounts of
spam emails
through the contact form of one of my websites. The contact
form is filled
in with random texts about gambling and the sender's address
is always fake.
I can see how a 'spam robot' would be able to fill in this
form and send it
to me.
But the strange thing is that yesterday, as an experiment, I
completely
deleted the page with the contact form from the site and the
same spam
emails still keep coming ?!?
The emails are still exactly formatted the way my server-side
process would
originally format them... I don't understand how this is
done.
Does anyone here have an idea how this is done and/or how to
prevent this?
Thanks in advance.
Regards, Marja

On 11 Aug 2006 in macromedia.dreamweaver, Marja de Vroed
wrote:
> The last couple of days I'm receiving increasing amounts
of spam
> emails through the contact form of one of my websites.
The contact
> form is filled in with random texts about gambling and
the sender's
> address is always fake.
>
> I can see how a 'spam robot' would be able to fill in
this form and
> send it to me.
> But the strange thing is that yesterday, as an
experiment, I
> completely deleted the page with the contact form from
the site and
> the same spam emails still keep coming ?!?
>
> The emails are still exactly formatted the way my
server-side
> process would originally format them... I don't
understand how this
> is done.
>
> Does anyone here have an idea how this is done and/or
how to prevent
> this?
Have you also deleted the script which processes the form?
They could
have set up a form or script which takes advantage of your
script. The
other possibility is latency - there were still some mails
waiting to
make their way through the system when you took the form
down.
Joe Makowiec
http://makowiec.net/
Email:
http://makowiec.net/email.php

Similar Messages

  • Spam Email via MUSE Contact Form

    I've been experiencing a high volume of spam via my MUSE contact form on one of my websites. I know that the captcha tool is available but only if I use the Business Catalyst hosting. Using BC hosting is not an option for this website. Do you have any suggestions or solutions?
    -Ben

    You can use the module {module_visitoripaddress} which displays the IP address of the visitor on pages ,with form you would need to insert an input field ( custom field )
    <input type="hidden" name="BCNAMECODE" value="{module_visitoripaddress}">
    In addition I would also suggest to enable harder captcha which will lower down the spam submission.
    http://take.ms/V9isQ
    Thanks,
    Sanjit

  • Having problems with spam on contact form

    I typed this once only to have Adobe delete it so I could type it all again to submit it. So this will be the shorter version.
    Basically I am getting spam from the contact form on a non business cataylst hosted page (hosted with bluehost). I have 35 other sites non muse made on other systems and in 8 years have never received one spam message. Now with Muse I get several a week only having been live a few months. So something is definitely going on. Adobe was zero help and basically told me they only can help if it was on Business cataylist.
    Have you guys found any ways around this? I know wordpress sites have apps to add to help it, but I didn't know if Muse had anything like that or code that could be entered to help it. I'd love to avoid Captcha's if humanly possible because I think they look horrible on websites and I want as few barriers for customers as possible to submit true contacts.
    Any thoughts is appreciated. Thanks

    Please refer to the response from Zak to your similar post here - http://forums.adobe.com/message/6129694#6129694.
    Thanks,
    Vinayak

  • If I enter a new contact in Address Book on my MacBook Pro it copies onto my iPhone via iCloud but editing an existing contact does not copy to the iPhone

    I have set up my new iPhone 4 to sync with my MacBook Pro using iCloud as default.  This works fine with Calendars on iCal in both directions.  However, I am struggling with Contacts because new entries on the iPhone appear on my Mac's Address Book fine but erratically the other way.  New entries on the Mac seem to appear OK on the iPhone but edits to existing accounts do not appear.  Also, many entries were missing when I imported the main list from Mac to iPhone but that was done by cable through iTunes before setting up iCloud.

    Welcome to the Apple community.
    First check that all your settings are correct, that contact syncing is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the contacts you are adding are added to your 'iCloud' group and not an 'On My Mac', 'On My Phone' or other non iCloud group (you can do this by checking in groups), non iCloud contacts will not sync.
    If you are sure that everything is set up correctly and your contacts are in the iCloud group, you might try unchecking contact syncing in the iCloud settings, restarting your device and then re-enabling contact syncing.

  • My iPHONE added a  1 to all existing messages. So none my contacts are linked in my messages or in recent contacts??

    My iPHONE added a  1 to all existing messages. So none my contacts are linked in my messages or in recent contacts??

    If you are a Verizon user, try this:
    Open the phone and dial *228. This is a Verizon over-the-air programming number.
    When the system answer press 1 for "Program or activate your phone"
    Wait for the call to disconnect. You should get a prompt stating "Settings updated."
    Double tap the Home button to bring up the recently used apps list at the bottom.  Locate the Phone, Message, and Contacts apps, swiping if necessary, and press and hold until they jiggle then press the red minus sign to stop them.
    Wait a 3-5 minutes.
    Open the Message App to see if they're fixed.

  • Making a Contact Forms Anti-Spam Work

    I can't get this anti-spam .php code to work, Important Note: The coding worked before I added the anti-spam label/.php coding. Any obvious faults in the coding?
    HTML:
    <link rel="stylesheet" href="css/site-feedback-part-two.php" type="text/css" media="screen" />
        <form method="post" action="site-feedback-part-two.php">
       <label>Name</label>
        <input name="name" placeholder="Type Here">
        <label>Email *</label>
        <input name="email" type="email" placeholder="Type Here">
        <label>Suggested Feedback *</label>
        <textarea name="message" placeholder="Type Here"></textarea>
        <label>What is (20+5)/5? (Anti-spam) *</label>
      <input name="human" placeholder="Type Here">
        <div><input id="submit" name="submit" type="submit" value="Submit"></div>
            </form>
    PHP:
    <?php
        $name = $_POST['name'];
        $email = $_POST['email'];
        $message = $_POST['message'];
        $from = 'From: Contact Form';
        $to = '[email protected]';
        $subject = 'Site Feedback';
        $body = "From: $name\n E-Mail: $email\n Message:\n $message";
    if ($_POST['submit']) {
    if (&& $human == '5') {
        if (mail ($to, $subject, $body, $from)) {
            echo '<p>Your message has been sent!</p>';
        } else {
            echo '<p>Something went wrong, go back and try again!</p>';
      } else {
      ($_POST['submit'] && $human != '5') {
        echo '<p>You answered the anti-spam question incorrectly! This means that your message has not been sent</p>';
    ?>
    Thanks for the help.

    <?php
    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $from = 'From: Contact Form';
    $to = '[email protected]';
    $subject = 'Site Feedback';
    $body = "From: $name\n E-Mail: $email\n Message:\n $message";
    if(isset($_POST['submit'])) {
    if($_POST['human'] != 5) {
    echo '<p>You answered the anti-spam question incorrectly! This means that your message has not been sent</p>';
    elseif ($_POST['human'] == 5) {
    mail($to, $subject, $body, $from);
    echo '<p>Your message has been sent!</p>';
    else {
    echo '<p>Something went wrong, go back and try again!</p>';
    ?>

  • Php contact form spam

    I published a website two weeks ago and in the first week the contact form started getting hit with spam.  Here is an example of one of many similiar, note the email address is always different but yet a gmail acct:
    Name: クãƒã‚¨ 財布 公式
    Phone Number: クãƒã‚¨ 財布 公式
    Email Address: [email protected]
    Message: <a href="http://gagastore.meningitisfacts.com/">ガがミラノ 時計 人気</a>初直営店がいよいよOPEN! http://gagastore.meningitisfacts.com/
    Today, I have set up filters on the email (GoDaddy) blocking anything with a "http://" and the "ガがミラノ 時計 人æ°" markings.
    I am trying ever which way not to use Captcha because it is such a pain.  I did read up on the timer where if it is filled out in less then 5 seconds to discard. I did place a hidden field last week and to date that has made zero difference.
    My question is - Is there a good latest and greatest code that I can update to my form to combat against these JERKS?
    BTW - so far it appears they only start hitting the site's contact form from Friday til Saturday.  Makes me wonder if it is a human rather than a bot.

    jlkappler wrote:
    I published a website two weeks ago and in the first week the contact form started getting hit with spam.  Here is an example of one of many similiar, note the email address is always different but yet a gmail acct:
    Name: クãƒã‚¨ 財布 公式
    Phone Number: クãƒã‚¨ 財布 公式
    Email Address: [email protected]
    Message: <a href="http://gagastore.meningitisfacts.com/">ガがミラノ 時計 人気</a>初直営店がいよいよOPEN! http://gagastore.meningitisfacts.com/
    Today, I have set up filters on the email (GoDaddy) blocking anything with a "http://" and the "ガがミラノ 時計 人æ°" markings.
    I am trying ever which way not to use Captcha because it is such a pain.  I did read up on the timer where if it is filled out in less then 5 seconds to discard. I did place a hidden field last week and to date that has made zero difference.
    My question is - Is there a good latest and greatest code that I can update to my form to combat against these JERKS?
    BTW - so far it appears they only start hitting the site's contact form from Friday til Saturday.  Makes me wonder if it is a human rather than a bot.
    One way to test if it is human or bot is to return the contents of the 'honeypot' field in the mail too . (Once you establish if its human or a bot you can do something about it or not as the case may be). To me it looks like a bot and the honeypot field will contain information as well.

  • Why are Contact Forms being pounded with SPAM?

    Is anyone else experience an unusually high volume of SPAM in thier contact forms?
    I have two clients getting pounded with SPAM. 
    Thanks in advance for your help.

    The spam stopped once we applied the filters for the Comments and the Akismet is sitting there in the system now so they just need to fully role out the control into forms which will do a lot.
    The Amazing thing with that which I need to check with the engineers that I thought is that BC is run by BC, so if they are using Akismet I want to check to see if they are pooling all the spam filters applied on all BC sites into one central database that ALL sites have access too. If they are doing this - SWEET, if not I am going to suggest they do.
    THat would mean if your being spammed what you block will mean sites I build will not get those same spam and so on.
    Making the captcha more secure agaisnt OCR will make them harder to use so there is negatives you got to weigh up.

  • Is it possible to create a contact form via Flash cs5.5 and package out app for desktop?

    I need to create a desktop app for windows.  Im using Flash cs5.5 and I wanted to know of an easy to way to create a simple contact form that would work once installed on a desktop/
    Thanks guys for any input!

    If you want a contact form you can either use StageWebView or HTMLLoader to show an HTML page in your web server with a contact form.
    Or you can create the form with Flash textfields and then send the whole thing with a POST request to a PHP script in the server, for example.

  • Is it possible to call non-registered contacts via...

    I am interested to use skype-to-go for business callls but like to know if you can also call non-registered contacts within skype-to-go? So my questions is: Could I simply call my skype-to-go number from my mobile/landline and then subsequently call any number/person (besides/outside my few registered contacts - I guess they only allow 10 different registered contacts)?
    Otherwise I have to change my registered contacts all the time which is time consuming....and I also don't have internet at hand all the time.
    cheers, Pieter
    EDIT : title/message case changed

    pieterbedaux wrote:
    1. Could I simply call my skype-to-go number from my mobile/landline and then subsequently call any number/person
    2. - I guess they only allow 10 different registered contacts)?
    Hello Pieter,
    1. Yes - you can call worldwide - not just your registered contacts.
    2. We have a maximum of 9 registered contacts.
    http://www.skype.com/intl/en-us/features/allfeatur​es/skype-to-go-number/
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How to add ability to insert Annotations via Reader to an existing PDF form

    I have an existing PDF form created in LiveCycle ES2/Acrobat X, with fillable text boxes and all that stuff.  I want to add the ability for Reader users to insert items from the Annotations menu, but can't seem to figure out how to add that permission.  When I look at the Document Restrictions Summary in the PDF properties, it has "Commenting: Not Allowed".
    So how can I keep the existing form working as is, but add the ability for anyone to insert Annotations through Reader?

    You have two choices
    1) You can use JavaScript in your AIR application to communicate with the JavaScript in the PDF to fill in the form directly. This can all be done inside of your AIR app. This is certainly the best route to go and there is (IIRC) a sample in the AIR SDK.
    2) You can create an XFDF file from your XML data and then have Acrobat/Reader open the XFDF file to fill in the data.
    Both methods will work with Acrobat and Reader - HOWEVER, Reader users won't be able to save the PDF unless it has been Reader Enabled.
    Leonard

  • Block spam on HTML contact form.

    Group,
    Are there any free scripts to add a spam blocker to an HTML form.  Something like the sites that have an image of a letter combination and the user must type the correct letters to submit the form.  The actual form script is controled by my web host (Godaddy.com), so I don't know how much control I have over that code.  Something simple and free is what I am looking for.  I am just starting to get spam submissions, and I would like to find a way to block them before they get out of hand.
    I am still on DW8
    Any help is greatly appreciated!

    I wouldn't use it, honestly.  Why?  Because you have to use THEIR stuff and register with them.
    It's easy enough to do on your own if you have any knowledge of server scripting.
    And by the way, such topics as this really belong on the Dreamweaver General Discussion forum.

  • Contact form, sent via other email

    Hello,
    I have made a website for a customer that contains a contact form and that website is hosted on businesscatalyst. So far, so good.
    However, the messages that my customer receives through that contact form have my email address as the sender. How can I change that?
    Thanks,
    Marinka

    Hi Marinka,
    You can change it from Site manager > System pages > Default "From" email address from the site's admin panel on BC.
    Regards,
    Aish

  • Hijacked Contact Form - Originally Created in Adobe Muse

    I have a Contact Form for a client website (which has since been removed) that appears to be hijacked. The posts didn't seem like spam mail where strange products/services were being offered but appeared as if individuals were using it as a message or discussion system. Below are a few of the post that I received via form submission notification:
    Name:
    EEhGFR3I
    Email:
    Message:
    Ppl like you get all the brsina. I just get to say thanks for he answer.
    Name:
    mRphSXUi
    Email:
    Message:
    I saw it in the NNW sky around 10:20 PM told eoenyvre I knew they thought I was nuts, of course. I looked out the window saw what I thought was a planet. It was a large glowing Red orange orb that became brighter and brighter. After abut 3-5 mins it looked like fire and then it just kinda burned out.
    Name:
    SxDR3OWYJi9
    Email:
    Message:
    hi MinaJust been catching up with your blog posts.... some stiunnng cards there... particularly the ones in my fav colour!!Btw - if you pop on over to my blog today, you\'ll see we\'re launching a new challenge blog for lovers of pink... we\'d love you to join in the fun and help spread the word!So glad to hear that you\'ve chosen and bought your new house.... hope everything goes through well.... and no I can\'t advise - we moved three years ago after being in a house 6 years also, and my best advice would probably be \'get pickfords in to pack!!\'!! LOL! I didn\'t, and OMG.... my aching back! They did the removal, but we packed everything into banana boxes first!HugsChristine x
    Name:
    PrGzBAgaFX
    Email:
    Message:
    Stunning! Can\'t wait to see the gorgeous dinnig room and you and Lisha and Tristan and, well everyone at KC. Love the new blog and format. Cheers and Happy New Year to all! Joy
    Name:
    b4ZSUB0OPD
    Email:
    Message:
    Cool! That\'s a clever way of looikng at it!
    Name:
    bv3v5AXT9z
    Email:
    Message:
    Oh my goodness, I tollaty need this!My husband and I love taking photos...but carrying my camera along with my purse is soo impractical. This bag is perfect. ::crossing my fingers::
    These are only a few of the recent submissions. I didn't think that there would be an issue posting the actual submission as the form is obviously being misused.
    I removed the email addresses in case they belonged to innocent victims of the misuse.
    The contact form was created using the forms widget in Muse and the files were uploaded to the hosting server via FileZilla. Does anyone know what this is, how it happend and possibly how I can fix or prevent it from happening again?

    The issue is not really with Muse although the fact that Adobe doesn’t support Captcha on none Business Catalyst sites is frustrating.
    The form generated with Muse will be using your ISP’s standard PHP mail script so the issues are with your ISP.  If your ISP cannot help then consider using a third party service such as jotform (http://www.jotform.com/).
    Don’t forget to complain to Adobe, the only way we are likely to get good working forms on non-BC sites is to complain, also ask for other items which are sadly lacking such as drop down boxes and radio buttons.
    Alternatively host it on BC and use the Captcha feature, you can do this by pointing the other site to BC site.  This is very simple within BC.

  • Very slow or non-existent broadband in the evening...

    Why is it that when you contact BT about a slow or non-existent BT broadband every evening, they doggedly maintain that testing the line and waiting seven days will solve the problem? My BT broadband works wonderfully well during the daytime but slows to a standstill in the evening, not really a line problem, rather a bit of exchange congestion I think, unless of course you believe in conspiracies.
    What if BT are actually setting the lines that have the old white HomeHub and Internet phone to a lower priority than the Infinity lines, to boost the performance of the new connections and encourage, (force), the current HomeHub users to upgrade? I rather like having two telephone lines, and would rather not upgrade and lose the second line, but I feel that this is not what BT want.
    So if I'm forced to upgrade and lose the Internet phone it's off to Sky, those Murdochs need all the help they can get.
    Solved!
    Go to Solution.

    Hi evm001 & Ropy
    I am really sorry that you have had problems getting this sorted out.  I'll be happy to get involved and make sure we get your service fixed if you can give us one more chance?
    Could you drop me in an email please? Use the 'contact us' form in my forum profile under the 'about me' section. You can find it by clicking on my username.
    Thx
    Craig 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for