Jump to content

[SOLVED] Help with gethostbyaddr inside loop


Katanius

Recommended Posts

Hi all!

Im new to this forum so plz forgive me if am not posting in the right section and if needed move my post.

 

Im writing a simple script that retuns the hosts for a given ip range(im later going to use it as a function).

 

<?php

$startofrange='62.112.192.1';
$endofrange='62.112.192.50';

$ipstart=ip2long($startofrange);
$ipend=ip2long($endofrange);

for( $ip=$ipstart ; $ip<=$ipend ; $ip++ )
{
echo long2ip($ip)."=";
echo $ip."=";
$hostname = gethostbyaddr($ip);
echo $hostname."<br>";
}

?>

 

The broblem is that at some point it just stops in the middle of the loop an does not finish the scan of the given ips eventhough at the time it stops it has not reached the ip given as the end of the ip range. It just stops...

 

I really cant figure out whats wrong.. Im not realy experienced in php so plz, could anyone help me with this?

What am i doing wrong?

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.