通过HTTPS POST数据是否足够安全?

时间:2013-04-23 13:06:11

标签: post ssl https

我有一个页面,我需要通过post发送参数(比如param1)并且网站正在运行 通过HTTPS,任何人都可以破解这些信息是否安全,这是正确的 通过https发送信息的解决方案?

下面是JSP页面,实际上信息是通过HTTPS发送的,但用户可以看到查看源代码 看到param1和param2的值,我们会使用一些加密标准还是jsp taglib 该用户无法查看源代码,因为无法读取param1和param2值。

testPage.jsp

This is a parent page , in this a second jsp is included


<form id="myForm" target="iframe" method="post"   action="http://www.abc.com/jsp/dGrid.jsp">
    <input type="hidden" name="param1" value="77"/>
    <input type="hidden" name="param2" value="SS"/>
</form>

<iframe name="iframe" width="1500px" scrolling="no" height="1170px" frameborder="0"   allowtransparency="">
</iframe>

<script type="text/javascript">
 document.getElementById('myForm').submit();
</script>

0 个答案:

没有答案