我想尝试确定网站是否使用 CDN。这有点毛骨悚然,但我只想检查源代码是否包含“cdn”,基于此我可以假设该站点正在使用一个。- 可怕我知道。不确定任何其他方法。
这就是我所拥有的
$url = $_GET['url'];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$subject = curl_exec($ch);
curl_close($ch);
//cdn check
if (preg_match("/(cdn)/", $subject)) {
$cdn = true;
} else {
$cdn = false;
}
它在检查包含此 HTML 的网站时起作用:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
但在检查包含此 HTML 的网站时失败:
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
尽管“cdn”在两者中。
有任何想法吗?谢谢