Whois
Domain Name: OLEMARTIN.COM
#!/bin/env python
import sys, socket, re s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(("com.whois-servers.net", 43)) s.send("olemartin.com\r\n") while True: d = s.recv(4096) for line in [l for l in d.split("\n") if re.match("\s+.+",l)]: print line if d=='': break s.close() |
Contact informationMail:PGP key: |
StuffYour IP: 184.73.74.47
#!/bin/env python
import socket print "Your IP: %s"%(socket.gethostbyname( socket.gethostname()) ) |

