1

我正在尝试编写一个工具来检测远程网站是否使用 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 的标题信​​息等。

任何建议都会有所帮助。

4

1 回答 1

0

据我了解,flash可以通过javascript加载。所以你应该执行网页。为此,您必须使用这样的工具: http: //seleniumhq.org/docs/02_selenium_ide.html#the-waitfor-commands-in-ajax-applications

我不认为它可以从 php 中使用。

于 2012-12-13T22:43:33.520 回答