2007-04-03 14:10:23 +00:00
#!/usr/bin/php
2009-09-07 11:07:59 +00:00
< ? php
2010-02-27 14:44:38 +00:00
include ( " includes/defaults.inc.php " );
2007-04-03 14:10:23 +00:00
include ( " config.php " );
include ( " includes/functions.php " );
2008-04-10 14:52:51 +00:00
shell_exec ( " rm ips.txt && touch ips.txt " );
2007-04-03 14:10:23 +00:00
$handle = fopen ( " ips.txt " , " w+ " );
2010-06-12 20:14:41 +00:00
$query = mysql_query ( " SELECT * FROM `ipv4_networks` " );
2007-04-03 14:10:23 +00:00
while ( $data = mysql_fetch_array ( $query )) {
2010-06-12 20:14:41 +00:00
$cidr = $data [ 'ipv4_network' ];
list ( $network , $bits ) = preg_split ( " @ \ /@ " , $cidr );
2007-04-03 14:10:23 +00:00
if ( $bits != '32' && $bits != '32' && $bits > '22' ) {
2008-04-10 14:52:51 +00:00
$broadcast = trim ( shell_exec ( $config [ 'ipcalc' ] . " $cidr | grep Broadcast | cut -d \" \" -f 2 " ));
2007-04-03 14:10:23 +00:00
$ip = ip2long ( $network ) + '1' ;
$end = ip2long ( $broadcast );
while ( $ip < $end ) {
$ipdotted = long2ip ( $ip );
2010-06-12 20:14:41 +00:00
if ( mysql_result ( mysql_query ( " SELECT count(ipv4_address_id) FROM ipv4_addresses WHERE ipv4_address = ' $ipdotted ' " ), 0 ) == '0' && match_network ( $config [ 'nets' ], $ipdotted )) {
2007-04-03 14:10:23 +00:00
fputs ( $handle , $ipdotted . " \n " );
}
$ip ++ ;
}
}
}
`fping -t 100 -f ips.txt > ips-scanned.txt` ;
?>