I'm building a contact form (PHP file, design has been already made) which will communicate with the PHP via AJAX. I need to secure the contact form to deny any spam, for the client side, I'll be using ReCaptcha for the validation on client side ... But, how can I secure the script from being tampered with or sending arbitrary codes?

I mean, if the spammer/hacker uses the form and submits a PHP code that could affect the server, how can I prevent this from happening?

link|improve this question

61% accept rate
What are you doing with the user input which could cause submitted PHP to "affect the server"? – Quentin Jan 25 at 10:08
feedback

2 Answers

up vote 0 down vote accepted

The text that has been entered in your contact form should never be executed, only passed along in an e-mail message. So, whatever a hacker would submit, the worst it should be able to do is show up in the mailbox behind the form.

It's also always a good idea to use htmlentities on the content sent from your contact form, so if any HTML characters are used, they can't do any harm.

link|improve this answer
Ok, that is great ... But, this doesn't validate the user input! I need 2 do 2 step validation, user side and client side. – sikas Jan 25 at 10:08
just in case the user disables the JS – sikas Jan 25 at 10:09
@sikas — What does the input need validating for? – Quentin Jan 25 at 10:13
This is a contact form ... it will have email, phone number (this may be entered in various ways) a message, name and a Recaptcha – sikas Jan 25 at 10:16
1  
@sikas — How does your complaint about this answer not addressing input validation relate to your question which is about security? – Quentin Jan 25 at 10:18
show 1 more comment
feedback

have a read

Validate form with php

link|improve this answer
This article is great, but it is only talking about securing the DB though. – sikas Jan 25 at 10:18
added another link on validating forms in php – Stevanicus Jan 25 at 10:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.