我从这里尝试PEAR Net_Nmap包:
https://pear.php.net/package/Net_Nmap/
我的Windows 10计算机上安装了Nmap。 我找到了应该完成这项工作的以下代码。 在使用PEAR之前,我应该配置一些东西吗?
我得到2个错误:
警告:require_once(XML / Parser.php):无法打开流:第31行的C:\ xampp \ htdocs \ Net_Nmap-master \ Net \ Nmap \ Parser.php中没有此类文件或目录
致命错误:require_once():无法打开所需的XML / Parser.php'第31行的C:\ xampp \ htdocs \ Net_Nmap-master \ Net \ Nmap \ Parser.php中的(include_path =' C:\ xampp \ php \ PEAR')
<?php
// Scan network to retrieve hosts and services information.
require_once 'Net/Nmap.php';
//Define the target and options
$target = array('193.95.13.16','www.google.com');
$options = array('nmap_binary' => 'C:\Program Files (x86)\Nmap');
try {
$nmap = new Net_Nmap($options);
$nmap_options = array(
'os_detection' => true,
'service_info' => true,
'port_ranges' => 'U:53,111,137,T:21-25,80,139,8080',
// Only specified ports
);
$nmap->enableOptions($nmap_options);
// Scan
$res = $nmap->scan($target);
// Get failed hosts
$failed_to_resolve = $nmap->getFailedToResolveHosts();
if (count($failed_to_resolve) > 0) {
echo 'Failed to resolve given hostname/IP: ' .
implode (', ', $failed_to_resolve) .
"\n";
}
//Parse XML Output to retrieve Hosts Object
$hosts = $nmap->parseXMLOutput();
//Print results
foreach ($hosts as $key => $host) {
echo 'Hostname: ' . $host->getHostname() . "\n";
echo 'Address: ' . $host->getAddress() . "\n";
echo 'OS: ' . $host->getOS() . "\n";
echo 'Status: ' . $host->getStatus . "\n";
$services = $host->getServices();
echo 'Number of discovered services: ' . count($services) . "\n";
foreach ($services as $key => $service) {
echo "\n";
echo 'Service Name: ' . $service->name . "\n";
echo 'Port: ' . $service->port . "\n";
echo 'Protocol: ' . $service->protocol . "\n";
echo 'Product information: ' . $service->product . "\n";
echo 'Product version: ' . $service->version . "\n";
echo 'Product additional info: ' . $service->extrainfo . "\n";
}
}
}
catch (Net_Nmap_Exception $ne) {
echo $ne->getMessage();
}
?>
答案 0 :(得分:0)
您没有使用PEAR installer安装net_nmap package,但可能已下载.tgz
文件并将其解压缩。
现在您缺少Net_NMap页面左下角列出的依赖项。安装它们。