想要用php寫個文件探測的,可是悲劇的發現php是單線程的,速度很慢,先記錄下,晚上回來在修改。
<?php
set_time_limit(0);
$file = 'PHP.txt';
$content = file_get_contents($file);
//echo $content;
$array = explode("\r\n", $content);
//print_r($array);
$url = 'http://xssxss.com';
for($i=0; $i<count($array); $i++)
{
$header_array = get_headers ( $url.$array[$i] );
if ($header_array [0] == 'HTTP/1.1 200 OK') {
echo '<a href="'.$url.$array[$i].'">'.'文件存在</br>';
echo 'scan is finish';
} else {
}
}
?>
本文固定鏈接: http://www.xssxss.com/fuck/325.xss | Shine的聖天堂-〃敏〃