web service

smithcarvo

New Member
Messages
1
Reaction score
0
Points
0
Hi all,

Can Any One elp me,How will I protect / secure a web service?


I will highly appreciate your feed back.

Thanks in advance.


 
Last edited:

xPlozion

New Member
Messages
868
Reaction score
1
Points
0
Are you looking to secure a webform from invaders getting their hands on any information (such as a checkout form or "secured form")?
- Purchase an SSL Certificate

Are you trying to prevent MySQL injections?
- Make sure that you escape your db queries, and never let any variable sent by the user ($_POST or $_GET) get inserted into the database without first properly sanitizing it.

Other than those two topics, I don't know what more you could be talking about.

-xP
 
Last edited:
Top