whois

Objective C: Terminal output into NSString

Hello! I'm trying to execute "whois search domainname.tld". I'm currently using system("whois search domainname.tld"); however i need to get the output into a NSString variable to output to the user. How can i do this? ...

Reverse ip, find domain names on ip address.

Hello, How and from where websites like this http://www.yougetsignal.com/tools/web-sites-on-web-server/ are getting this information from? How can I develop such tool? Thank you. ...

Whcms domain whois API doesn't work

So here is my code: <?php $url = "http://www.site.com/whcms/includes/api.php"; # This is not the original url, just an exapmle $username = "user"; # Admin username goes here $password = "pass"; # Admin password goes here $postfields["username"] = $username; $postfields["password"] = md5($password); $postfields["action"] = "domainwhois...

Get WHOIS "descr" value from IP address and insert into HTML table

I am using an SQL query to extract web statistics from my website. This is done with the MySQL comand line tool and outputted as a HTML table. The table is currently formatted like this: <TABLE> <TR><TH>Keyword</TH><TH>Date</TH><TH>IP/WHOIS</TH></TR> <TR><TD>random phrase</TD><TD>2010-10-11</TD><TD>1.2.3.4</TD></TR> </TABLE> The tabl...

How to resolve an IP address to an organization (with caching)

I would like to resolve IP(v4) addresses to owner organizations, from the registry of IP address allocations. To do it, I don't want to become an expert in whois protocols and templates or the structure of the registries themselves. I just want a function that takes an IP address (allocated anywhere in the world) and returns a short st...