Re: [PHP] Reverse IP lookup

2009-02-16 Thread tedd

At 9:17 PM -0500 2/15/09, Andrew Ballard wrote:

You mean like this one?

http://www.yougetsignal.com/tools/web-sites-on-web-server/

I don't know how reliable or up-to-date it is.


Now that's something I would like to know how it works.

Anyone have any ideas as to how that works?

Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-16 Thread Robert Cummings
On Mon, 2009-02-16 at 10:11 -0500, tedd wrote:
 At 9:17 PM -0500 2/15/09, Andrew Ballard wrote:
 You mean like this one?
 
 http://www.yougetsignal.com/tools/web-sites-on-web-server/
 
 I don't know how reliable or up-to-date it is.
 
 Now that's something I would like to know how it works.
 
 Anyone have any ideas as to how that works?

It tells you how it's done.

Cheers,
Rob.
-- 
http://www.interjinn.com
Application and Templating Framework for PHP


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-16 Thread Eric Butera
On Sun, Feb 15, 2009 at 9:17 PM, Andrew Ballard aball...@gmail.com wrote:
 On Sun, Feb 15, 2009 at 1:22 PM, דניאל דנון danondan...@gmail.com wrote:

 Hello,

 Is there anyway to get a list of sitess that are on a specific IP?

 I looked, But I couldn't find anything.

 I tried to make some with dns_get_record and gethostbyaddr, but couldn't
 make anything

 Thank

 Daniel


 You mean like this one?

 http://www.yougetsignal.com/tools/web-sites-on-web-server/

 I don't know how reliable or up-to-date it is.


 Andrew


Move ZIG for great justice!

-- 
http://www.voom.me | EFnet: #voom

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-16 Thread tedd

At 10:26 AM -0500 2/16/09, Robert Cummings wrote:

On Mon, 2009-02-16 at 10:11 -0500, tedd wrote:

 At 9:17 PM -0500 2/15/09, Andrew Ballard wrote:
 You mean like this one?
 

  http://www.yougetsignal.com/tools/web-sites-on-web-server/

 
 I don't know how reliable or up-to-date it is.

 Now that's something I would like to know how it works.

 Anyone have any ideas as to how that works?


It tells you how it's done.

Cheers,
Rob.


That's a good start.

What I meant to say, is any idea of how to do it via coding?

However, I received a very detailed explanation of the problem from 
Nathan and I understand the complexity much better now.


Thanks,

tedd

--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-16 Thread Thodoris



Hello,

Is there anyway to get a list of sitess that are on a specific IP?

I looked, But I couldn't find anything.

I tried to make some with dns_get_record and gethostbyaddr, but couldn't
make anything

Thank

Daniel

  


Well actually you can't basically because of the way the Name Service 
reverse resolution works.


AFAIK you may assign many domain names to a single IP as A records (main 
resolution option) or as CNAME (aliases) but you can't assign multiple 
IP's on the same domain name (meaning you can't make many PTR records 
for the same IP).


So perhaps there are solutions to this using search engines but you 
can't know for sure.


This is the way it works.

--
Thodoris


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-16 Thread Steve Holmes
On Sun, Feb 15, 2009 at 9:17 PM, Andrew Ballard aball...@gmail.com wrote:

 On Sun, Feb 15, 2009 at 1:22 PM, דניאל דנון danondan...@gmail.com wrote:

  Hello,
 
  Is there anyway to get a list of sitess that are on a specific IP?
 
  I looked, But I couldn't find anything.
 
  I tried to make some with dns_get_record and gethostbyaddr, but couldn't
  make anything
 
  Thank
 
  Daniel
 

 You mean like this one?

 http://www.yougetsignal.com/tools/web-sites-on-web-server/

 I don't know how reliable or up-to-date it is.


 Andrew


From my test I can say it doesn't work. I put in our web server (which has a
couple of virtual hosts on it) and got 16 host names back most of which are
for completely different servers - all at purdue.edu, but not even in the
same department.

Steve.


Re: [PHP] Reverse IP lookup

2009-02-15 Thread Richard Heyes
 Is there anyway to get a list of sitess that are on a specific IP?

Not AFAIK. You can get the name associated with that IP adress (IIRC),
but one IP could be serving multiple sites using virtual hosting.

-- 
Richard Heyes

HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari:
http://www.rgraph.org (Updated February 14th)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Reverse IP lookup

2009-02-15 Thread Andrew Ballard
On Sun, Feb 15, 2009 at 1:22 PM, דניאל דנון danondan...@gmail.com wrote:

 Hello,

 Is there anyway to get a list of sitess that are on a specific IP?

 I looked, But I couldn't find anything.

 I tried to make some with dns_get_record and gethostbyaddr, but couldn't
 make anything

 Thank

 Daniel


You mean like this one?

http://www.yougetsignal.com/tools/web-sites-on-web-server/

I don't know how reliable or up-to-date it is.


Andrew