Is either GET or POST more secure than the other?

前端 未结 27 2108
没有蜡笔的小新
没有蜡笔的小新 2020-11-22 05:13

When comparing an HTTP GET to an HTTP POST, what are the differences from a security perspective? Is one of the choices inherently more secure than the other? If so, why?

27条回答
  •  孤独总比滥情好
    2020-11-22 05:57

    Post is the most secured along with SSL installed because its transmitted in the message body.

    But all of these methods are insecure because the 7 bit protocol it uses underneath it is hack-able with escapement. Even through a level 4 web application firewall.

    Sockets are no guarantee either... Even though its more secure in certain ways.

提交回复
热议问题