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!
Probably, check your logs. To prevent it, add captchas, don’t accept undefined values, etc.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.