What is the best way to secure login proccess via ajax

149 Views Asked by At

when you post form via ajax, you can read password in plain text there. I thing that is security issue. Which possibilities are to hide password or disallowed to read it in firebug console for example?

1

There are 1 best solutions below

0
On BEST ANSWER

Nothing is really secure when you don't use HTTPS. Attackers could intercept your Ajax JS code and do a man-in-the-middle attack on your login process.

Use HTTPS.