Browsing all articles tagged with network
Prefix WhoIs in Python
Part of a project I’m into requires me to dig for some details on IP addresses. Normal whois query (default to whois.apnic.net) don’t give me the information that I really need for, and upon searching I came to the Prefix Whois Project. They have came up with whob, and from the website I get to know that I can even get part of whob’s functionality by just to query for whois from their server. Let’s try with our favorite’s TMNut Screamyx DNS
shakir@herugrim ~ $ whois -h whois.pwhois.org 202.188.0.133 IP: 202.188.0.133 Origin-AS: 4788 Prefix: 202.188.0.0/19 AS-Path: 6079 4788 AS-Org-Name: Org-Name: Asia Pacific Network Information Centre Net-Name: APNIC-CIDR-BLK Cache-Date: 1195082506 Latitude: 3.167000 Longitude: 101.700000 City: - Region: - Country: MALAYSIA
I’ve just started to learn, and like Python, and let’s see my Python example to extract the whois info;
import commands
def main():
whoisServer = "whois.pwhois.org"
IPAddr = "202.188.0.133"
status, output = commands.getstatusoutput('whois -h ' + whoisServer + " " + IPAddr)
result = {}
for i in output.splitlines():
stripped = i.split(':')
result[stripped[0]] = stripped[1]
print result
if __name__ == "__main__":
main()
Connect with me
What I'm Doing (via twitter)...
- is applying for US visa. The website is not helping at all http://twitpic.com/16hvxp 5 days ago
- @abumuaaz want to focus on my wireless project (yes, I get paid for that) and some development work. Ada job to pass ka? :) in reply to abumuaaz 6 days ago
- is running 'sudo dd if=/dev/zero of=/dev/sda' on his laptop. Will it work, my computer forensic friends? 6 days ago
- is on his first day of being jobless, hahaha. 1 week ago
- finished reading Crowdsourcing: Why the Power of the Crowd Is Driving the Future of Business, in 32 hours. Next, Wikinomics. 1 week ago
- is on his way to island hopping. Woohoo! 1 week ago
- is leaving on a jetplane, don't know when he'll be back again... 1 week ago
- missed his flight to KK. Will need to take the first flight tomorrow and pray he'll make it for his 9am meeting. 1 week ago
- More updates...
Categories
Tags
bash
blog
book
database
debian
embedded
gutsy
howto
hsdpa
html
kde
kubuntu
linux
lpi
nature
network
Photoblog
photography
php
pylons
python
recovery
script
security
shell
sqlalchemy
ssh
ubuntu
vim
wireless
wordpress











