From 14eea1de9f193d8e31e8381ea12d34703d6d5ad3 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 18 Apr 2012 11:16:21 +0200 Subject: Reaktor: add revip command --- Reaktor/commands/revip | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 Reaktor/commands/revip (limited to 'Reaktor/commands/revip') diff --git a/Reaktor/commands/revip b/Reaktor/commands/revip new file mode 100755 index 00000000..1d20037d --- /dev/null +++ b/Reaktor/commands/revip @@ -0,0 +1,46 @@ +#!/usr/bin/python +# fork from darkb0t v0.4 +# modularized and extended +import sys +import os +import json +import socket +import httplib +try: + target = sys.argv[1] +except: + print "Usage: %s [target]" % sys.argv[0] + exit(0) + +print "Reverse IP Search" +print "Target: ",target +try: + hostname,aliases,ip = socket.gethostbyaddr(target) +except: + print "Cannot resolve `%s`!" % target + exit (1) +print "IP: ",ip[0] +sites = {target : "", hostname : ""} # make entries unique +for a in aliases: + sites[a] = "" +offset = 0 +appid = os.environ.get("BING_APPID",'7A0B8DA3E913BE5ECB4AF11C7BC398B43000DC1C') +while offset < 50: + url ="/json.aspx?AppId=%s&Query=ip:%s&Sources=Web+RelatedSearch+News+Image+Video&Version=2.2&Market=en-us&Web.Count=50&Web.Offset=%s&Web.Options=DisableQueryAlterations" % (appid, ip, offset) + conn = httplib.HTTPConnection("api.bing.net") + conn.request("GET", url) + res = conn.getresponse() + doc = json.load(res) + try: + results = doc["SearchResponse"]["Web"]["Results"] + conn.close() + for res in results: + sites[res['DisplayUrl']] = "" + offset += 50 + except: + break +print "Total: ", len(sites), " dns name(s)\n" +num = 1 +for s in sites: + print "["+str(num)+"/"+str(len(sites))+"] : "+s + num += 1 -- cgit v1.2.3 From 2a739377f53d7e7f9000683eff00ed40f56b14aa Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 18 Apr 2012 11:28:20 +0200 Subject: fix url parser --- Reaktor/commands/revip | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Reaktor/commands/revip') diff --git a/Reaktor/commands/revip b/Reaktor/commands/revip index 1d20037d..b4920f52 100755 --- a/Reaktor/commands/revip +++ b/Reaktor/commands/revip @@ -6,6 +6,7 @@ import os import json import socket import httplib +from urlparse import urlparse try: target = sys.argv[1] except: @@ -25,7 +26,7 @@ for a in aliases: sites[a] = "" offset = 0 appid = os.environ.get("BING_APPID",'7A0B8DA3E913BE5ECB4AF11C7BC398B43000DC1C') -while offset < 50: +while offset < 300: url ="/json.aspx?AppId=%s&Query=ip:%s&Sources=Web+RelatedSearch+News+Image+Video&Version=2.2&Market=en-us&Web.Count=50&Web.Offset=%s&Web.Options=DisableQueryAlterations" % (appid, ip, offset) conn = httplib.HTTPConnection("api.bing.net") conn.request("GET", url) @@ -35,7 +36,7 @@ while offset < 50: results = doc["SearchResponse"]["Web"]["Results"] conn.close() for res in results: - sites[res['DisplayUrl']] = "" + sites[urlparse(res['Url'])[1]] = "" offset += 50 except: break -- cgit v1.2.3 From 4d756ac98601b17be326882207e42f842e23cacc Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 18 Apr 2012 23:16:39 +0200 Subject: Reaktor: cleanup --- Reaktor/commands/revip | 48 +----------------------------------------------- 1 file changed, 1 insertion(+), 47 deletions(-) mode change 100755 => 120000 Reaktor/commands/revip (limited to 'Reaktor/commands/revip') diff --git a/Reaktor/commands/revip b/Reaktor/commands/revip deleted file mode 100755 index b4920f52..00000000 --- a/Reaktor/commands/revip +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/python -# fork from darkb0t v0.4 -# modularized and extended -import sys -import os -import json -import socket -import httplib -from urlparse import urlparse -try: - target = sys.argv[1] -except: - print "Usage: %s [target]" % sys.argv[0] - exit(0) - -print "Reverse IP Search" -print "Target: ",target -try: - hostname,aliases,ip = socket.gethostbyaddr(target) -except: - print "Cannot resolve `%s`!" % target - exit (1) -print "IP: ",ip[0] -sites = {target : "", hostname : ""} # make entries unique -for a in aliases: - sites[a] = "" -offset = 0 -appid = os.environ.get("BING_APPID",'7A0B8DA3E913BE5ECB4AF11C7BC398B43000DC1C') -while offset < 300: - url ="/json.aspx?AppId=%s&Query=ip:%s&Sources=Web+RelatedSearch+News+Image+Video&Version=2.2&Market=en-us&Web.Count=50&Web.Offset=%s&Web.Options=DisableQueryAlterations" % (appid, ip, offset) - conn = httplib.HTTPConnection("api.bing.net") - conn.request("GET", url) - res = conn.getresponse() - doc = json.load(res) - try: - results = doc["SearchResponse"]["Web"]["Results"] - conn.close() - for res in results: - sites[urlparse(res['Url'])[1]] = "" - offset += 50 - except: - break -print "Total: ", len(sites), " dns name(s)\n" -num = 1 -for s in sites: - print "["+str(num)+"/"+str(len(sites))+"] : "+s - num += 1 diff --git a/Reaktor/commands/revip b/Reaktor/commands/revip new file mode 120000 index 00000000..e2c3b7ab --- /dev/null +++ b/Reaktor/commands/revip @@ -0,0 +1 @@ +../repos/revip/revip \ No newline at end of file -- cgit v1.2.3