Report this

What is the reason for this report?

Is my website being crawled?

Posted on January 30, 2018

I have a mean-stack website hosted in a DigitalOcean & nginx & ubuntu server.

In the website, there is a webpage with a button to allow users to send me a message:

<button type="submit" class="btn btn-lg btn-theme" ng-click="mySubmit()">Send Message</button>

in the controller:

$scope.mySubmit = function () {
    return $http.post('/httpOnly/request/addRequest', { "name": $scope.name, "mail": $scope.mail, "message": $scope.message })
}

Then, in the backend, it uses https://github.com/sendgrid/sendgrid-nodejs to send me emails.

Previously, everything was fine. However, for 1 week, I received every day 7 mails in a row with undefined values. The 7 mails arrived at almost same time every day.

Does anyone know what is happening? Is my website being crawled? If so, is there a way to avoid that?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Probably, check your logs. To prevent it, add captchas, don’t accept undefined values, etc.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.