我正在尝试编写一个工具来检测远程网站是否使用 php 使用 flash。到目前为止,我已经编写了一个脚本来检测是否存在嵌入或对象,这表明它有可能被安装,但是一些站点加密了他们的代码,因此使这个函数变得无用。
include_once('simple_html_dom.php');
$flashTotalCount = 0;
function file_get_contents_curl($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$html = file_get_contents_curl($url);
$doc = new DOMDocument();
@$doc->loadHTML($html);
foreach($html->find('embed') as $pageEmbed){
$flashTotalCount++;
}
foreach($html->find('object') as $pageObject){
$flashTotalCount++;
}
if($flashTotalCount == 0){
echo "NO FLASH";
}
else{
echo "FLASH";
}
有没有人知道一种方法来检查网站是否使用 Flash,或者如果可能的话,获取正在使用 Flash 的标题信息等。
任何建议都会有所帮助。