Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想演示使用简单的 html 表单和 php 脚本来加密发布到服务器的数据。我正在使用 xampp,我想使用 xampp 包附带的默认证书。
我安装了wireshark,我还安装了firebug以供将来测试,因为我还想查看GET请求是否已加密。
我的任务需要什么工具?
Wireshark 是您唯一需要的工具。
只需配置一个过滤器来捕获在端口 443 上发送到您的 Web 服务器的数据包,然后向下钻取它们。
首先发布没有 HTTPS 的表单(端口 80),然后比较两者。
请注意,您无法从 PHP 证明数据是加密发送的,因为这是由 Web 服务器独立于 PHP 处理的。