If I use $_GET function to send passwords, then apart from the fact that the password will be visible in my browser’s address bar, are there any more security vulnerabilities which are not already there in $_POST method ? Because in any case the password will only be visible in the users’ browser and not to anyone else.
If I use $_GET function to send passwords, then apart from the fact that
Share
Using
$_GETMethod the website urlwill be logged in history or browser and proxy serversthis won’t possible with$_POST.in
$_GETpassword is appened in URL and$_POSTpassword is sent in next packet so in both method password is sent in clear-text so solution is$_POSTwith SSL to encrypt the communication.