Server side validation for Contact Form 7 [closed]

I’m trying to use contact form 7 on my site.

The only server side validation that it seems to do is check if required fields have been entered.

Isn’t there a danger if someone sends several MB of data through tools like tamper data?

Will I need to rewrite the plugin code to take care of validation?

1 Answer
1

It doesn’t take much to tamper data when you use HTML forms; you don’t even need a plug-in to do that. That’s inherent in all HTML forms.

If you’re that worried about people tampering with your data, yes, you’ll need to rewrite the plug-in code to use session variables or a digital signature.

Leave a Comment