English 中文(简体)
PHP s fopen () 在访问 https 资源时, 是否防止典型攻击?
原标题:Does PHP s fopen() protect against typical attacks when accessing https resources?

如果我使用 PHP s fopen () 函数从 HTPS 网站检索数据,那么人们会称之为安全 HTPS 连接。 也就是说, 它是否提供保护, 防止中继和偷听攻击?

问题回答

不是默认的,不是。

它总是会提供某种形式的保护,防止简单的窃听攻击,因为数据总是加密的(只要您连接的 SSL 服务器允许至少使用一个加密密码- 是的, HTTPS 连接: Roll-eyes 中允许使用空加密密码 : Roll- eyes : ) 但是,默认情况下,它不会保护中线人,因为它验证了服务器证书,因此您无法相信您已经连接了预定服务器。

证书验证可以打开。 要做到这一点, 您需要提供一个 root 证书捆绑, 并将第四个参数用于 fopen , 这样您就可以指定流上下文。 流上上下文允许您修改流的运行方式。 下面的开关示例导致证书在指定的捆绑文件中被根证书验证 。

$context = stream_context_create( array(
     ssl  => array(
         cafile       =>  ca_bundle.crt ,
         verify_peer  => true
    )
));

$file = fopen( $url,  r , false, $context );




相关问题
Signed executables under Linux

For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...

MALICIOUS_CODE EI_EXPOSE_REP Medium

I run findbugs against all of my code and only tackle the top stuff. I finally got the top stuff resolved and now am looking at the details. I have a simple entity, say a user: public class User ...

XSS on jsbin.com

Anyone know if jsbin.com implements any protection for XSS or other javascript attacks? I see jsbin links used fairly regularly on sites like this one and I can t find any indication from the site ...

Make md5 strong

Im making a website that will intergrate with game that only support md5 hashing metod (atm). Which ofc is not especially safe anymore. But how could i make it stronger? Should I just generate long ...

Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...