how to secure POST method without using SSL?

前端 未结 5 983
一整个雨季
一整个雨季 2020-12-19 10:37

I\'m developing website where user submit credentials using ajax,php and using POST method and i want to protect login credentials not in plain text but i don\'t want to use

5条回答
  •  独厮守ぢ
    2020-12-19 10:57

    You cannot completely secure the credentials without some out-of-channel verification (which SSL provides); a man in the middle attack will always be possible.

    Put simply, there is no way for the client to be completely sure that they are talking to the server instead of a fake server inserted somewhere in between.

提交回复
热议问题