From 11e0ed7d7759d550b2c0b2456945353f7831b279 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 18 Apr 2012 23:16:39 +0200 Subject: Reaktor: cleanup --- commands/revip | 48 +----------------------------------------------- commands/subdomains | 1 + 2 files changed, 2 insertions(+), 47 deletions(-) mode change 100755 => 120000 commands/revip create mode 120000 commands/subdomains (limited to 'commands') diff --git a/commands/revip b/commands/revip deleted file mode 100755 index b4920f5..0000000 --- a/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/commands/revip b/commands/revip new file mode 120000 index 0000000..e2c3b7a --- /dev/null +++ b/commands/revip @@ -0,0 +1 @@ +../repos/revip/revip \ No newline at end of file diff --git a/commands/subdomains b/commands/subdomains new file mode 120000 index 0000000..0489555 --- /dev/null +++ b/commands/subdomains @@ -0,0 +1 @@ +../repos/consolidate_dns/index \ No newline at end of file -- cgit v1.2.3