Skip to content

Instantly share code, notes, and snippets.

@lksnyder0
Last active September 16, 2015 20:18
Show Gist options
  • Save lksnyder0/6a5b3110e900b43f0b15 to your computer and use it in GitHub Desktop.
Save lksnyder0/6a5b3110e900b43f0b15 to your computer and use it in GitHub Desktop.
Linking kippo attackers with graphs
#!/usr/bin/env python3
"""
This is a program to link attackers together. I have designed it to create a
graph from a CSV file containing information from kippo honeypots. The
fields in the CSV can be customized but mine are:
"src_ip","client_country","client_city",username,password,url,filehost,filename,shasum,session,"_time"
These are all available from the version of Kippo available at
https://github.com/micheloosterhof/kippo. I am using splunk to create this
CSV but anything will do.
Next the links are defined in the JSON file links.json that should be included.
There the links can also be customized. An example of a link one might add
would look like:
{
"src": {
"dataType": "attacker",
"field": "src_ip"
},
"dst": {
"dataType": "geolocation",
"field": "client_city"
}
}
This links the attacker to a city. I am using Max Mind geoip database for this
information.
Example usage:
./AttackerGraphs.py -f downloads.csv -l links.json
"""
import csv
import argparse
import json
class Graph:
def __init__(self):
self.nodes = []
self.groups = []
def add_link(self, src, dst):
srcNode = self.Node(src[0], src[1])
dstNode = self.Node(dst[0], dst[1])
src = self._addNode(srcNode)
dst = self._addNode(dstNode)
src.addEdge(dst)
dst.addEdge(src)
def showGraph(self):
start = self.nodes[0]
self.DFS(start)
def DFS(self, graph=None):
if graph is None:
graph = self.nodes
visited = []
start = graph.pop()
# Look for the first unvisited vertex
while start.visited and len(graph) > 0:
start = graph.pop()
stack = [start]
while stack:
vertex = stack.pop()
if not vertex.visited:
vertex.visited = True
visited.append(vertex)
for i in vertex.neighbors:
if i not in stack:
stack.append(i)
if len(visited) > 0:
self.groups.append(visited)
if len(graph) > 0:
self.DFS(graph)
def showGroups(self):
groupNum = 0
for group in self.groups:
print("Group:", groupNum)
for node in group:
print(node)
print()
groupNum += 1
def output(self, output):
groupNum = 0
for group in self.groups:
print("Group:", groupNum)
for node in self._organizeGroup(group, output):
print(node)
print()
groupNum += 1
def _addNode(self, node):
for i in range(len(self.nodes)):
if self.nodes[i] == node:
return self.nodes[i]
self.nodes.append(node)
return self.nodes[-1]
def _organizeGroup(self, group, output):
types = {}
newGroup = []
for each in group:
try:
types[each.dataType].append(each)
except KeyError:
types[each.dataType] = [each]
for each in output:
newGroup += types[each]
return newGroup
class Node:
def __init__(self, dataType, data):
self.data = data
self.dataType = dataType
self.neighbors = []
self.visited = False
def addEdge(self, node):
if node not in self.neighbors:
self.neighbors.append(node)
def __eq__(self, other):
if type(other) == type(self):
if other.data == self.data and other.dataType == self.dataType:
return True
return False
def __ne__(self, other):
if type(other) != type(self):
if other.data != self.source or \
other.dataType != self.dataType:
return True
return False
def __str__(self):
return "%s <%s>" % (self.data, self.dataType)
def __repr__(self):
return self.__str__()
def main():
parser = argparse.ArgumentParser(description="Process kippo filedownloads to find groups of attackers")
parser.add_argument('-f', '--file', type=argparse.FileType('r'),
required=True, help="csvfile to parse")
parser.add_argument('-c', '--config', type=argparse.FileType('r'),
default="config.json", help="Configuration file")
args = parser.parse_args()
config = json.load(args.config)
links = []
for l in config["links"]:
links.append(((l["src"]["dataType"], l["src"]["field"]),
(l["dst"]["dataType"], l["dst"]["field"])))
positions = {}
graph = Graph()
downloads = csv.reader(args.file, delimiter=",", quotechar="\"")
header = next(downloads)
for i in range(len(header)):
positions[header[i]] = i
for row in downloads:
for link in links:
src = (
link[0][0],
row[positions[link[0][1]]]
)
dst = (
link[1][0],
row[positions[link[1][1]]]
)
graph.add_link(src, dst)
graph.DFS()
graph.output(config["output-elements"])
main()
{
"links": [
{
"src": {
"dataType": "attacker",
"field": "src_ip"
},
"dst": {
"dataType": "filehost",
"field": "filehost"
}
},
{
"src": {
"dataType": "filehost",
"field": "filehost"
},
"dst": {
"dataType": "filename",
"field": "filename"
}
},
{
"src": {
"dataType": "filename",
"field": "filename"
},
"dst": {
"dataType": "url",
"field": "url"
}
},
{
"src": {
"dataType": "filename",
"field": "filename"
},
"dst": {
"dataType": "shasum",
"field": "shasum"
}
}
],
"output-elements": [
"attacker",
"url",
"filehost"
]
}
src_ip client_country client_city username password url filehost filename shasum session _time
208.73.200.133 United States Secaucus root !QAZ@WSX3edc http://216.170.125.185/79 http://216.170.125.185 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 9399327c2d9641f697f275c8396f3897 2015-05-19T11:28:13.000-0400
216.170.125.155 United States Buffalo root !QAZ@WSX3edc http://216.170.125.185/79 http://216.170.125.185 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 99e99544f9a34936ab4d1fdf0475c0eb 2015-05-19T11:27:44.000-0400
157.7.152.183 Japan Tokyo root 7654321 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 5fb36912215b44c981086b2229347884 2015-05-18T11:46:28.000-0400
157.7.152.183 Japan Tokyo root 121212 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 16a7519b056d455f99f26da8c7d0c6b9 2015-05-18T11:25:08.000-0400
157.7.152.183 Japan Tokyo root 121212 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 57173e6818784862b9c593977a063e33 2015-05-18T11:23:41.000-0400
115.126.73.69 Hong Kong root patrice http://49.1.244.146/g4 http://49.1.244.146 /g4 45c8309bb17fc620e7a58112299bf713d4fea21683f0cf8a9e01f38a50f16805 35f6a872d97546cdb2b2af9678677c4e 2015-05-18T11:04:36.000-0400
208.73.200.133 United States Secaucus root 1234 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 c1fbe9dfdd2d42c1b2a70848769be40c 2015-05-18T11:01:07.000-0400
222.186.26.197 China Nanjing root ubnt http://www.jlcampus.cn/images/sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 ed1db208fcb24dbca2d3e10f17efcaf7 2015-05-18T10:47:16.000-0400
157.7.152.183 Japan Tokyo root password http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 9c05f5ae9e3143c0aa9e82e0580dc738 2015-05-18T10:41:00.000-0400
216.170.125.155 United States Buffalo root password http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 29a4b1a17fdd4c96baaa328e89da536d 2015-05-18T10:40:21.000-0400
120.24.170.212 China Hangzhou root admin http://182.92.184.208:8806/cctv http://182.92.184.208:8806 /cctv f6f1187676d677c8ae24d64d6b3e6f0bfcd0ed7a7971c7c90d350af396713fa3 e54cee8a633b4e428f5927dd8792157d 2015-05-17T13:59:23.000-0400
120.24.170.212 China Hangzhou root admin http://182.92.184.208:8806/cctv http://182.92.184.208:8806 /cctv f6f1187676d677c8ae24d64d6b3e6f0bfcd0ed7a7971c7c90d350af396713fa3 f8e0f82c1403413987c62f3d76388408 2015-05-17T13:34:47.000-0400
118.193.176.84 China Shanghai root patrice http://49.1.244.146/g5 http://49.1.244.146 /g5 075f71be278ac176571b66f33109b88e6da534104395635a87ecae3602b523c1 d9a34fd0fe9e4e3b8a848e99f7c1f615 2015-05-17T11:08:27.000-0400
216.170.125.156 United States Buffalo root password http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 d70b9488007f4dc8815abdc12eea2807 2015-05-16T11:38:26.000-0400
118.193.165.114 China Shanghai root patrice http://49.1.244.146/g7 http://49.1.244.146 /g7 f5b098419bdcd2aee198c074b895e113fb7cac9132ad1b592005d31f1394ad3f b5eb9a87f0a64372b11f445f989c5820 2015-05-16T11:17:27.000-0400
216.170.120.156 United States Buffalo root bogusbasin http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 0438e57c391a49279e34b10fe3ffeac1 2015-05-16T11:10:39.000-0400
157.7.238.124 Japan Tokyo root bogusbasin http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 321c1956c7fa48a3b5a8c4f287cdf450 2015-05-16T11:09:07.000-0400
157.7.238.124 Japan Tokyo root dramaqueen http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 2e90cd1bbf9748d692b5e4adf087192d 2015-05-16T10:49:12.000-0400
157.7.238.124 Japan Tokyo root dramaqueen http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 0eb06509b27549b99ad8a3e77608d4fc 2015-05-16T10:48:34.000-0400
216.170.125.155 United States Buffalo root boistar5 http://216.170.125.185/79 http://216.170.125.185 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 0055892f60864e41a6efe280e5991282 2015-05-15T11:43:08.000-0400
216.170.125.156 United States Buffalo root neha123 http://216.170.125.185/79 http://216.170.125.185 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 6c4d2e14933241f3935bed938dee0470 2015-05-15T10:44:15.000-0400
216.170.125.156 United States Buffalo root qwerty123 http://216.170.125.185/59 http://216.170.125.185 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a 776c710b09164f138038d9e5447e7c34 2015-05-14T12:26:01.000-0400
115.126.73.67 Hong Kong root patrice http://49.1.244.146/g1 http://49.1.244.146 /g1 321b3c8e272e2076460c0bde41fa4a2dcd15b6f28f7e8771f488e86e86e41dd0 e73703f7e54040af9e527ec0660c0b75 2015-05-14T11:08:34.000-0400
208.73.200.133 United States Secaucus root telecom@123 http://216.170.125.185/76 http://216.170.125.185 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 743f427a9b9f48aba10b6a1871de6d64 2015-05-14T11:02:21.000-0400
222.186.25.60 China Nanjing root ubnt http://www.jlcampus.cn/images/sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 5f62a246602a4214bd02059e5e5ee01c 2015-05-13T23:42:38.000-0400
216.170.125.155 United States Buffalo root uniserver.root.2145 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 69b0acae79d24ae2b4d029c7e0377656 2015-05-13T11:23:43.000-0400
118.193.165.106 China Shanghai root patrice http://49.1.244.146/g2 http://49.1.244.146 /g2 270a394ebc73fd9c02219f3a13e3ce52b7e34c2904d668eaa1d126b9b76b1ce4 a20a5da948e64fd895d4df4397b02e05 2015-05-13T11:11:10.000-0400
216.170.125.156 United States Buffalo root 3.1415 http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 c2282deb402f4a2080f65d59dc0886b9 2015-05-13T10:51:34.000-0400
115.126.73.69 Hong Kong root patrice http://49.1.244.146/g4 http://49.1.244.146 /g4 45c8309bb17fc620e7a58112299bf713d4fea21683f0cf8a9e01f38a50f16805 76acc69de8a34ac4b70759b85108e726 2015-05-12T11:09:34.000-0400
112.231.252.202 China Jinan root 123qwerty http://123.131.52.199:888/zlyn http://123.131.52.199:888 /zlyn 54a661a3704281125660b4f8fe5f3eb3586ddb9b72045deb715556520c0ddd3a b95bd43881394ff8b0b91fcd907cd47d 2015-05-11T17:20:56.000-0400
157.7.238.204 Japan Tokyo root l3tm3!n http://216.170.125.185/49 http://216.170.125.185 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 5e65b9ef628a45419429620147c8f510 2015-05-11T11:34:21.000-0400
118.193.176.92 China Shanghai root patrice http://49.1.244.146/g8 http://49.1.244.146 /g8 5776ea75b5f8faa6e4d8ac7000ed35c282d4904fb820c2b7c5df10fa8adaaa55 a4c13987c99943ebb6b745ee1932e162 2015-05-11T11:10:47.000-0400
216.170.125.155 United States Buffalo root macaco http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 85038d90c7ea48ac87a074e29741db24 2015-05-10T12:09:07.000-0400
216.170.125.155 United States Buffalo root qmails http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 ae79840586284629bccd2eb2dca19562 2015-05-10T11:24:55.000-0400
115.238.246.176 China Lishui root !!aaAA11 http://115.159.88.124/Linux577 http://115.159.88.124 /Linux577 825cbeae503c8d9f4ff8a55d14042e83db220f4ed428e57b57fc48335d09f359 c84ec942857d41b198eb36581da033c3 2015-05-10T07:35:36.000-0400
208.73.200.133 United States Secaucus root sakura http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 6d3492a9c08642948e6c198094a463ec 2015-05-09T11:39:45.000-0400
216.170.125.155 United States Buffalo root sakura http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 eef662c2ded04f4c837341b26ed48077 2015-05-09T11:39:34.000-0400
216.170.125.156 United States Buffalo root blue91 http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 6323f96556dd475e9ebff3a433a2cdc8 2015-05-09T11:18:55.000-0400
216.170.125.155 United States Buffalo root blue91 http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 df98ef50368a413daa459674715a7197 2015-05-09T11:18:12.000-0400
118.193.176.92 China Shanghai root patrice http://49.1.244.146/g8 http://49.1.244.146 /g8 5776ea75b5f8faa6e4d8ac7000ed35c282d4904fb820c2b7c5df10fa8adaaa55 9c66dea9ca0f4403ad5eb82ee910eb69 2015-05-09T11:06:17.000-0400
216.170.125.155 United States Buffalo root q1w2e3r4 http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 a20708950a2847dabd60c0d0e657a6cd 2015-05-09T11:04:43.000-0400
61.35.90.106 Korea, Republic of root ubnt http://222.186.26.133:81/sff http://222.186.26.133:81 /sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 dc38844089e54168a424e123da87d19e 2015-05-09T00:54:02.000-0400
157.7.53.223 Japan Tokyo root stanis http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 365b5b724586460d84b4ac3175c1b050 2015-05-08T11:44:19.000-0400
216.170.125.155 United States Buffalo root defaul http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 aa8e189f1b65468fbba9125dd90a6c6b 2015-05-08T11:18:42.000-0400
216.170.120.156 United States Buffalo root defaul http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 2b5a685258b340c89d6c3b7cc6dc8226 2015-05-08T11:16:55.000-0400
198.12.69.114 United States Buffalo root admin http://93.174.93.45/op.sh http://93.174.93.45 /op.sh 0105d209b9eeb48c746eec3801b6fab3044b25dc527025527c3521a493a13970 843c347a7b7f4eb9af94860846310715 2015-05-07T22:12:59.000-0400
198.12.69.114 United States Buffalo root admin http://93.174.93.45/op.sh http://93.174.93.45 /op.sh 0105d209b9eeb48c746eec3801b6fab3044b25dc527025527c3521a493a13970 16d1aaec14df4efab26228af0fbca382 2015-05-07T21:08:27.000-0400
222.186.26.133 China Nanjing root ubnt http://222.186.26.133:81/sff http://222.186.26.133:81 /sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 8b44ffddb1be435d985b8ae219665f19 2015-05-07T20:53:50.000-0400
61.35.90.106 Korea, Republic of root ubnt http://222.186.26.132:82/sff http://222.186.26.132:82 /sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 3296aa46ed5949669f4b9ecaad61b834 2015-05-07T20:37:41.000-0400
198.12.69.114 United States Buffalo root admin http://185.11.146.63/asap/anx2.pl http://185.11.146.63 /asap/anx2.pl 87f0c500017aee340295e797be36515e10f8c8e8f584df4e992159c20670a4e8 3b7fd7e153fc49a492e51f9efeffa938 2015-05-07T17:36:14.000-0400
198.12.69.114 United States Buffalo root admin http://185.11.146.63/asap/pma.pl http://185.11.146.63 /asap/pma.pl ca0b36a073cce21e0970b32344361d639d4af0df90280864924ce7b44c97eed6 363c32c959bf40d398a3bb84a82d8455 2015-05-07T15:24:19.000-0400
198.12.69.114 United States Buffalo root admin http://93.174.93.45/op.sh http://93.174.93.45 /op.sh 0105d209b9eeb48c746eec3801b6fab3044b25dc527025527c3521a493a13970 7d957cb1104541618398cbfddd91f644 2015-05-07T13:11:46.000-0400
115.126.31.111 Hong Kong root patrice http://49.1.244.146/g3 http://49.1.244.146 /g3 6f68533bc795d459ef1912a08e7cd3898ed4a3023a2b23eb7f1ddc3e2f360bc8 e68dded39632442b9328f852d80c51ef 2015-05-07T11:06:40.000-0400
60.208.95.8 China Jinan root 123qwerty http://123.131.52.199:888/zlyn http://123.131.52.199:888 /zlyn 54a661a3704281125660b4f8fe5f3eb3586ddb9b72045deb715556520c0ddd3a e9f52f59f07643d2a8603c0e649363f3 2015-05-07T08:06:32.000-0400
60.208.95.8 China Jinan root 123qwerty http://123.131.52.199:888/zlby http://123.131.52.199:888 /zlby 698648e067d39035933babbfe6d8ae998fdb2b0e3d89b6ea321a5ec802fbab5a 107650deb76146ffb8a9eb1b31440ca2 2015-05-07T07:39:10.000-0400
118.193.176.84 China Shanghai root patrice http://49.1.244.146/g5 http://49.1.244.146 /g5 075f71be278ac176571b66f33109b88e6da534104395635a87ecae3602b523c1 12ada385f6f1451da69f7c2c0b696ff1 2015-05-06T11:25:22.000-0400
216.170.125.155 United States Buffalo root colibri http://66.117.9.14:81/59 http://66.117.9.14:81 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a 854050909ff7443d8908bbb600303dc9 2015-05-06T11:17:30.000-0400
222.186.26.133 China Nanjing root ubnt http://69.163.33.138:81/jjj http://69.163.33.138:81 /jjj 138cf9e136437e6ec9cf181e2eaae96d269ba3729f1aec26b4c5f6684c9a8917 1f5de4405a8e4acba1ff4e99ec64b6c9 2015-05-06T01:40:39.000-0400
118.193.165.114 China Shanghai root patrice http://49.1.244.146/g7 http://49.1.244.146 /g7 f5b098419bdcd2aee198c074b895e113fb7cac9132ad1b592005d31f1394ad3f c0efdaa18a7d4379ba1a39a86bc4d7dc 2015-05-05T11:10:04.000-0400
222.186.26.133 China Nanjing root ubnt http://69.163.33.138:81/sff http://69.163.33.138:81 /sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 5a72bee43d2d41499f6216abf407cf2f 2015-05-05T00:31:00.000-0400
162.220.24.141 United States Cheyenne root indian http://38.68.20.127/i/a06 http://38.68.20.127 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 6e3c8c0af6474d70a274fd27be400335 2015-05-04T11:41:36.000-0400
184.164.71.41 United States Mesquite root indian http://38.68.20.127/i/a06 http://38.68.20.127 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 6dadee5a20f14505b93e2e29d1e60a23 2015-05-04T11:41:32.000-0400
118.193.176.84 China Shanghai root patrice http://49.1.244.146/g5 http://49.1.244.146 /g5 075f71be278ac176571b66f33109b88e6da534104395635a87ecae3602b523c1 daa285d233ec43209aab455b1ceef4c3 2015-05-04T11:17:21.000-0400
118.193.165.114 China Shanghai root patrice http://49.1.244.146/g7 http://49.1.244.146 /g7 f5b098419bdcd2aee198c074b895e113fb7cac9132ad1b592005d31f1394ad3f 2a5b2d4863a74e3b97a1b6367db4b21b 2015-05-03T11:17:09.000-0400
220.167.173.254 China Xining root ubnt http://199.83.94.78:8888/wa http://199.83.94.78:8888 /wa ee34dd1b1ac04c6b4e700c398ecf7366851f27ab404cf843ac504aff578c4c5f 7cda6437a06649769b0d521fcc6a2321 2015-05-03T10:45:46.000-0400
222.186.26.133 China Nanjing root ubnt http://69.163.33.138:81/sff http://69.163.33.138:81 /sff 6f118be35540863461494aaa0842afef11272c6451cd954cf520c3a11c018b44 f579939701374f5694324ec89bc57454 2015-05-02T21:46:24.000-0400
118.193.176.92 China Shanghai root patrice http://49.1.244.146/z8 http://49.1.244.146 /z8 5776ea75b5f8faa6e4d8ac7000ed35c282d4904fb820c2b7c5df10fa8adaaa55 81682731b7c44cab8749150aee7249f2 2015-05-02T11:32:57.000-0400
115.126.31.111 Hong Kong root patrice http://49.1.244.146/z3 http://49.1.244.146 /z3 6f68533bc795d459ef1912a08e7cd3898ed4a3023a2b23eb7f1ddc3e2f360bc8 0f0bfc7b8f2f4132bda9c0a69d749e46 2015-05-02T11:12:17.000-0400
216.170.125.156 United States Buffalo root sunbeam http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 791e1d35af6e429fbe89ddd59eb95eb5 2015-05-01T11:55:36.000-0400
157.7.238.124 Japan Tokyo root sunbeam http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 ed0eb22bfb81464a9d04025c5660add9 2015-05-01T11:55:14.000-0400
115.126.31.111 Hong Kong root patrice http://49.1.244.146/z3 http://49.1.244.146 /z3 6f68533bc795d459ef1912a08e7cd3898ed4a3023a2b23eb7f1ddc3e2f360bc8 b5809980989942ecae9e8cd38e6a2d52 2015-05-01T11:49:24.000-0400
208.73.200.133 United States Secaucus root alpin http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 84ddeea971e64292a6d335a813a2a8db 2015-05-01T11:28:25.000-0400
157.7.238.204 Japan Tokyo root alpin http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 d326c639022a42ca90178e8e7209617a 2015-05-01T11:28:07.000-0400
216.170.125.155 United States Buffalo root alpin http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 a5842337a319433bb64a87720f325a80 2015-05-01T11:27:46.000-0400
115.126.73.71 Hong Kong root patrice http://49.1.244.146/z6 http://49.1.244.146 /z6 3537edea0998560769b90739d9007611806ebc779a8cf8f730f822f50e383a4b 15eceb689f9a4575992a85ebe227fc74 2015-05-01T11:13:54.000-0400
118.193.176.84 China Shanghai root patrice http://49.1.244.146/z5 http://49.1.244.146 /z5 075f71be278ac176571b66f33109b88e6da534104395635a87ecae3602b523c1 757cdfa1e90c4161b929aaa1d6ddf8a1 2015-05-01T11:00:54.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w5 http://222.186.190.73:56789 /w5 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 0da93618eaca42a792b6d2a9e11b985d 2015-04-30T06:29:20.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w315 http://222.186.190.73:56789 /w315 489f0463d8b13e4cf34feb279268a78da10d49e3ae97bccc1f79348ea6c26464 0da93618eaca42a792b6d2a9e11b985d 2015-04-30T06:29:12.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w3588 http://222.186.190.73:56789 /w3588 d062e7167a17656c3fd8663a65187f4e0c1c7eb3f0bcb20ad6541474c8253881 0da93618eaca42a792b6d2a9e11b985d 2015-04-30T06:28:56.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w5 http://222.186.190.73:56789 /w5 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 40d2de32e9c84782a796cf7daaa4b808 2015-04-30T04:12:20.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w315 http://222.186.190.73:56789 /w315 489f0463d8b13e4cf34feb279268a78da10d49e3ae97bccc1f79348ea6c26464 40d2de32e9c84782a796cf7daaa4b808 2015-04-30T04:12:08.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w3588 http://222.186.190.73:56789 /w3588 d062e7167a17656c3fd8663a65187f4e0c1c7eb3f0bcb20ad6541474c8253881 40d2de32e9c84782a796cf7daaa4b808 2015-04-30T04:12:02.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/mips1 http://222.186.59.23:8080 /mips1 5d9f4ec734cf44f342a45f7de4ba0e208ec141ce47e32b3bc7d0666eff538fe5 c937cf6d185b437cb89820c6c3abb336 2015-04-29T17:04:39.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/lin1 http://222.186.59.23:8080 /lin1 df969750684115600cf2fbb7f6f84a6ec0163a57ffaeac66418787cd579c54f8 cc59a23ccc30444a9a7892feca9f5ef0 2015-04-29T17:00:58.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/lin1 http://222.186.59.23:8080 /lin1 df969750684115600cf2fbb7f6f84a6ec0163a57ffaeac66418787cd579c54f8 a2d11437cab24481b99845fec705ec53 2015-04-29T17:00:16.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w5 http://222.186.190.73:56789 /w5 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 3e0e65d168174e90892004e442928ab6 2015-04-29T16:31:39.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w315 http://222.186.190.73:56789 /w315 489f0463d8b13e4cf34feb279268a78da10d49e3ae97bccc1f79348ea6c26464 3e0e65d168174e90892004e442928ab6 2015-04-29T16:31:28.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w3588 http://222.186.190.73:56789 /w3588 d062e7167a17656c3fd8663a65187f4e0c1c7eb3f0bcb20ad6541474c8253881 3e0e65d168174e90892004e442928ab6 2015-04-29T16:31:16.000-0400
216.170.125.155 United States Buffalo root haters http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 5cfd0595aedc4e629ce821dd9c3abad4 2015-04-29T11:49:39.000-0400
104.143.5.76 United States Las Vegas root advertisement http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b f9514f25d12846dfba1065398112a319 2015-04-29T11:38:27.000-0400
216.170.125.155 United States Buffalo root just1min http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 9f87b705fd464c15b0408d8d5ecd7b8d 2015-04-29T11:20:14.000-0400
216.170.125.155 United States Buffalo root sweden http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 816b5c53ed304896a86a58201e35ab33 2015-04-29T11:12:33.000-0400
61.164.126.50 China Wenzhou root ubnt http://107.181.160.60:81/ccc http://107.181.160.60:81 /ccc 693f26b38c7024f2fa8ced25f6917b44876fc98572a009cce5a467d47b43512f 00cee4a61f134750aa75f473451782cc 2015-04-29T03:58:49.000-0400
222.174.5.20 China Jinan root ubnt http://222.174.5.20:12343/qz http://222.174.5.20:12343 /qz 97588697bd66cb11762591ba95e9324fc450d53f460899f5fedc8bac7bd146a3 d262e99f72b84e709cb7b7ac37224ed4 2015-04-29T01:16:52.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 be8052b8873a4f73b82589437819be7f 2015-04-28T19:35:55.000-0400
222.174.5.20 China Jinan root ubnt http://222.174.5.20:12343/qz http://222.174.5.20:12343 /qz 97588697bd66cb11762591ba95e9324fc450d53f460899f5fedc8bac7bd146a3 ca575dc1da164ad6b44eef061043f912 2015-04-28T16:30:58.000-0400
216.170.125.155 United States Buffalo root TELECOMITALIA! http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 d2d25f7923734d8bb972e30ea584670e 2015-04-28T11:49:00.000-0400
104.143.5.76 United States Las Vegas root subspace http://38.68.20.127/i/a07 http://38.68.20.127 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 56d6814dcc824b10ae3e088ecaa13287 2015-04-28T11:27:29.000-0400
216.170.120.156 United States Buffalo root $%&%^*&^*&(@#$ http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 cbab0dadb280412faab5fa86a4a961d3 2015-04-28T11:20:23.000-0400
216.170.125.156 United States Buffalo root rapid http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 cadac4df63aa4576967781b6c4e8925e 2015-04-28T11:10:19.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 70b6cfcc7a94468d8ed0bd49b4135301 2015-04-28T07:27:07.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/wrt1 http://222.186.59.23:8080 /wrt1 f309a43e4c8ea82cb5569a9656640e4501a3c0700c1352adb9f788dcef4f2ae1 b924b07017be472fa5698b5981548560 2015-04-27T12:22:14.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/mips1 http://222.186.59.23:8080 /mips1 5d9f4ec734cf44f342a45f7de4ba0e208ec141ce47e32b3bc7d0666eff538fe5 a64bda43fddb4d6fb763557f8d93622e 2015-04-27T12:18:00.000-0400
112.5.196.228 China root 123456 http://222.186.59.23:8080/arm1 http://222.186.59.23:8080 /arm1 8366aea8087a354cbd178f920770b35d785f988ec3649bb7e282d1e3272a6b77 ad50dae63b5c4063a69a5fe0231eee4b 2015-04-27T12:14:03.000-0400
104.152.215.87 United States Cheyenne root suja http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b db3c69ea9a5d4d4a989c9a61946ebc44 2015-04-27T12:05:35.000-0400
104.152.215.87 United States Cheyenne root suja http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b 136fcf3b111c4edca0034d515da0c572 2015-04-27T12:04:40.000-0400
216.170.125.155 United States Buffalo root zexzex http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 86f7f04f732444e29a724b080b414514 2015-04-27T11:13:43.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 c1390bb398324b168c99b584e7781443 2015-04-27T09:56:55.000-0400
219.151.9.44 China Guiyang root !!aaAA11 http://119.167.137.81:8989/POP http://119.167.137.81:8989 /POP cb338967d877dff6129806568b7e201bba2b45da24943f1d5686d6b200670786 ff1a3c0f98d1416ca006891d8f1ab6a1 2015-04-27T08:56:32.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w5 http://222.186.190.73:56789 /w5 522b32e08f18c7696cc72a0ebf92e2c8c8b1fa4b19d3210e8d7a5d176652839a fc38ff41a0ce44b384d1e2e4360ed50b 2015-04-27T07:20:39.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w315 http://222.186.190.73:56789 /w315 489f0463d8b13e4cf34feb279268a78da10d49e3ae97bccc1f79348ea6c26464 fc38ff41a0ce44b384d1e2e4360ed50b 2015-04-27T07:20:27.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w3588 http://222.186.190.73:56789 /w3588 d062e7167a17656c3fd8663a65187f4e0c1c7eb3f0bcb20ad6541474c8253881 fc38ff41a0ce44b384d1e2e4360ed50b 2015-04-27T07:20:15.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w5 http://222.186.190.73:56789 /w5 522b32e08f18c7696cc72a0ebf92e2c8c8b1fa4b19d3210e8d7a5d176652839a 4dc6ae8ee97c49f1a96c94092b7893da 2015-04-27T05:25:47.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w315 http://222.186.190.73:56789 /w315 489f0463d8b13e4cf34feb279268a78da10d49e3ae97bccc1f79348ea6c26464 4dc6ae8ee97c49f1a96c94092b7893da 2015-04-27T05:25:36.000-0400
222.186.190.73 China Nanjing root ubnt http://222.186.190.73:56789/w3588 http://222.186.190.73:56789 /w3588 d062e7167a17656c3fd8663a65187f4e0c1c7eb3f0bcb20ad6541474c8253881 4dc6ae8ee97c49f1a96c94092b7893da 2015-04-27T05:25:23.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 42ce764ca08e49d797d4b6c2991a560f 2015-04-27T01:16:53.000-0400
157.7.238.124 Japan Tokyo root stoner http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 8888e94167c54760bff70880d221032f 2015-04-26T12:11:19.000-0400
208.73.200.133 United States Secaucus root mingus http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 6e2505b9ccea45f8a65887407a7be5ed 2015-04-26T11:49:31.000-0400
184.164.71.41 United States Mesquite root archivo http://38.68.20.127/i/a08 http://38.68.20.127 /i/a08 92a260d856e00056469fb26f5305a37f6ab443d735d1476281b053b10b3c4f86 18fdb77abdce4983a8479151ce0f11bd 2015-04-26T11:45:59.000-0400
208.73.200.133 United States Secaucus root nunnemaker http://66.117.9.14:81/76 http://66.117.9.14:81 /76 8d3ab37e55d77d9c8d332a1c85ea862b0fbf19cc1dc43ac14430ebb45b497215 d0cdd94b08a549f98ca081ace05542ac 2015-04-26T11:41:10.000-0400
121.58.1.114 China Haikou root 123456 http://222.186.59.23:8080/mips1 http://222.186.59.23:8080 /mips1 5d9f4ec734cf44f342a45f7de4ba0e208ec141ce47e32b3bc7d0666eff538fe5 943488449ec24c629395abd43859aef3 2015-04-26T02:31:16.000-0400
121.58.1.114 China Haikou root 123456 http://222.186.59.23:8080/wrt1 http://222.186.59.23:8080 /wrt1 f309a43e4c8ea82cb5569a9656640e4501a3c0700c1352adb9f788dcef4f2ae1 b5c17e30de4846aa816ac5f617065b71 2015-04-26T02:30:58.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6002 http://23.234.25.204:120 /6002 96348740ec94eecb13a0daa6febb3a2119b985a4c1addc864e31810768f3e4ae d657d76e49a740c3acaac51b1e75ec49 2015-04-25T23:38:05.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 520053a554b6487d810a4ed2093a27ee 2015-04-25T17:40:11.000-0400
216.170.125.155 United States Buffalo root lovesrs http://66.117.9.14:81/59 http://66.117.9.14:81 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a d9b021e5bc7c4a6b86cce1b6401b50cf 2015-04-25T11:35:41.000-0400
38.68.17.240 United States root fuckyou22 http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b 607df69342ed441f94359bd5e6c0e696 2015-04-25T11:32:16.000-0400
104.152.215.87 United States Cheyenne root 4eL24e3DsvmY42SMxM8Lu http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b 19079bfa2bd04a49a3bc2726d10f4c5e 2015-04-24T12:33:08.000-0400
162.220.24.141 United States Cheyenne root 4eL24e3DsvmY42SMxM8Lu http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b ba4417aa08b546418c3a384b8203992e 2015-04-24T12:32:25.000-0400
162.220.27.170 United States Cheyenne root 258369aaa http://38.68.20.127/i/a09 http://38.68.20.127 /i/a09 0a312a4154dcec2bc6ce1d3b51c037b122ace5848ec99c2b861ab6124addae9b 84f336bf950a405cbb33cfb2e1b5edd3 2015-04-24T12:30:32.000-0400
208.73.200.133 United States Secaucus root borsi http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 be16caa87bdc4b1f849742842fd8ae7f 2015-04-24T11:20:26.000-0400
216.170.125.155 United States Buffalo root secret99 http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 eeacb09e7935424699b3f6d0d9152a03 2015-04-24T11:15:48.000-0400
219.151.9.44 China Guiyang root !!aaAA11 http://119.167.137.81:8989/SAY123 http://119.167.137.81:8989 /SAY123 977750a1f015f1ffa51edfeeae498a82e979b1644f70bec9170db96247c6e371 9bfbd719284942ebbb420f69cc083c96 2015-04-24T10:30:14.000-0400
219.151.9.44 China Guiyang root !!aaAA11 http://119.167.137.81:8989/SAY123 http://119.167.137.81:8989 /SAY123 977750a1f015f1ffa51edfeeae498a82e979b1644f70bec9170db96247c6e371 be9aef03b2b74e53a4777921f385f1cb 2015-04-24T08:54:21.000-0400
219.151.9.44 China Guiyang root !!aaAA11 http://119.167.137.81:8989/GG32 http://119.167.137.81:8989 /GG32 977750a1f015f1ffa51edfeeae498a82e979b1644f70bec9170db96247c6e371 a2e05e308093433f9c34c36408dbe38b 2015-04-24T07:40:53.000-0400
222.186.15.212 China Nanjing root ubnt http://222.186.15.212:8888/dawd http://222.186.15.212:8888 /dawd 0d6a1b3a80737fbde624a3315ef1add6f2fca1ea5578b1b23988d4d1e626fb66 800e5036525b4f239113546d9473bf8e 2015-04-23T20:18:58.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 c88426423096443bbbc71c823acfac67 2015-04-23T19:51:16.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins6 http://222.186.31.117:56789 /wins6 f4cfad777d3aa9ad0447088c973e72647f8838f07b8b3b76344ac94552eca0b3 39d5ec0aac9a4d1194922d43789ddfdf 2015-04-23T15:40:23.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins9 http://222.186.31.117:56789 /wins9 24aafdaba7d93a0fc3c0ddee600398053abf83b40a9984f95ca9eb295db9ce61 39d5ec0aac9a4d1194922d43789ddfdf 2015-04-23T15:39:55.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins3 http://222.186.31.117:56789 /wins3 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 39d5ec0aac9a4d1194922d43789ddfdf 2015-04-23T15:39:41.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 39d5ec0aac9a4d1194922d43789ddfdf 2015-04-23T15:39:31.000-0400
104.143.5.76 United States Las Vegas root maison http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 012001458ac3471c812fba185872a659 2015-04-23T12:02:42.000-0400
162.220.27.170 United States Cheyenne root aaron http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 3e75941f4a7c4efbbbcf0b158bd4fe83 2015-04-23T11:59:43.000-0400
157.7.53.223 Japan Tokyo root lagadapati http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 133862dffbdd48c1b8e85a7fe70261d5 2015-04-23T11:51:39.000-0400
162.220.24.141 United States Cheyenne root admin http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 70d73fd3915544cb8b6e9c9fe83c2ab1 2015-04-23T11:35:16.000-0400
38.68.20.127 United States root wander http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc dc770bf7cfe74ac98d46315c14c50073 2015-04-23T11:22:51.000-0400
216.170.125.156 United States Buffalo root l3tm3!n http://66.117.9.14:81/49 http://66.117.9.14:81 /49 42629d9d813e59c3d2b7aac0da644ddb1824a8b286b39393ad50a945d51ab363 f0279d21500949e8b45e5a76e815074c 2015-04-23T11:17:06.000-0400
162.220.24.141 United States Cheyenne root h0st3r http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 94fe69087d0b4c11bd8fee360171155a 2015-04-23T10:11:14.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins3 http://222.186.31.117:56789 /wins3 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 818a45e86f494bce8169849330d84826 2015-04-23T02:06:26.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 818a45e86f494bce8169849330d84826 2015-04-23T02:06:11.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins6 http://222.186.31.117:56789 /wins6 f4cfad777d3aa9ad0447088c973e72647f8838f07b8b3b76344ac94552eca0b3 a01019eff17842cc93aa07f551e91f38 2015-04-22T15:44:59.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins9 http://222.186.31.117:56789 /wins9 24aafdaba7d93a0fc3c0ddee600398053abf83b40a9984f95ca9eb295db9ce61 a01019eff17842cc93aa07f551e91f38 2015-04-22T15:44:47.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins3 http://222.186.31.117:56789 /wins3 086b20a1f57cf3d21dcb4adbf61d8614d4414d34567c0274e01bed652d02f054 a01019eff17842cc93aa07f551e91f38 2015-04-22T15:44:35.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 a01019eff17842cc93aa07f551e91f38 2015-04-22T15:44:23.000-0400
219.151.9.44 China Guiyang root 123!@#qwe http://119.167.137.81:8989/GG32 http://119.167.137.81:8989 /GG32 02d7857ebe7f472cd723dcbd98a40257c7fe34899416bace7787bd99bec239ec d71d23b8842447a5a76c7065fe92b9be 2015-04-22T15:10:15.000-0400
157.7.238.204 Japan Tokyo root cyber http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 f5abe8e3996a49b280e0f687bcd365ba 2015-04-22T12:49:34.000-0400
216.170.125.156 United States Buffalo root borsi http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 43162e95de4740d6ba228f1efec9869e 2015-04-22T12:36:31.000-0400
38.68.17.240 United States root 15975321 http://23.234.19.202/i/a07 http://23.234.19.202 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 d423d319ad1c41ae9d2faa299a1a71d5 2015-04-22T11:21:32.000-0400
107.182.141.25 United States Cheyenne root 15975321 http://23.234.19.202/i/a07 http://23.234.19.202 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 5c4d5715a11740438d1b2281d9807dc4 2015-04-22T11:20:23.000-0400
162.220.24.141 United States Cheyenne root 15975321 http://23.234.19.202/i/a07 http://23.234.19.202 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 3f29ba0f9977438a8270e40854a5ec42 2015-04-22T11:19:40.000-0400
216.99.145.173 United States Walnut root ubnt http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 9fb3071a3c1042259f03fdfabc29c734 2015-04-22T04:14:05.000-0400
216.99.145.173 United States Walnut root ubnt http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 9fb3071a3c1042259f03fdfabc29c734 2015-04-22T04:13:34.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins6 http://222.186.31.117:56789 /wins6 f4cfad777d3aa9ad0447088c973e72647f8838f07b8b3b76344ac94552eca0b3 1a8f27c6c3834f0ebacf3a2c2dcbb9aa 2015-04-22T01:45:59.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 1a8f27c6c3834f0ebacf3a2c2dcbb9aa 2015-04-22T01:45:31.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 35d04d4ed103420896c07c96f5918d18 2015-04-21T20:35:07.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 35d04d4ed103420896c07c96f5918d18 2015-04-21T20:34:34.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6001 http://23.234.25.204:120 /6001 b0d5797459b21bef400b3d944df9810f42c657018eae400516e7f58198326986 7f479da4e36e454f9d2d84ae8014c45c 2015-04-21T14:16:50.000-0400
216.99.145.173 United States Walnut root ubnt http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 67e0011473d2494b8abc26f057a8b4ca 2015-04-21T12:06:56.000-0400
216.99.145.173 United States Walnut root ubnt http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 67e0011473d2494b8abc26f057a8b4ca 2015-04-21T12:06:25.000-0400
107.182.141.25 United States Cheyenne root 07081982 http://23.234.19.202/i/a08 http://23.234.19.202 /i/a08 92a260d856e00056469fb26f5305a37f6ab443d735d1476281b053b10b3c4f86 44beb4dc025f4474b40c4f4f36527f14 2015-04-21T12:00:50.000-0400
38.68.17.240 United States root 07081982 http://23.234.19.202/i/a08 http://23.234.19.202 /i/a08 92a260d856e00056469fb26f5305a37f6ab443d735d1476281b053b10b3c4f86 8000e9d213714396a2560e7214e6733e 2015-04-21T11:59:45.000-0400
104.143.5.76 United States Las Vegas root 07081982 http://23.234.19.202/i/a08 http://23.234.19.202 /i/a08 92a260d856e00056469fb26f5305a37f6ab443d735d1476281b053b10b3c4f86 31171ac26b5e4b07a02826f43aa01246 2015-04-21T11:59:05.000-0400
38.68.17.240 United States root 07081982 http://23.234.19.202/i/a08 http://23.234.19.202 /i/a08 92a260d856e00056469fb26f5305a37f6ab443d735d1476281b053b10b3c4f86 ab555f098e784fbd80d46265efc6f82f 2015-04-21T11:57:58.000-0400
157.7.238.204 Japan Tokyo root down http://66.117.9.14:81/59 http://66.117.9.14:81 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a cd124eb55d244cf1830c1e653d5db18b 2015-04-21T11:08:47.000-0400
157.7.238.124 Japan Tokyo root down http://66.117.9.14:81/59 http://66.117.9.14:81 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a 8a9557b16fb643609b78145280074a59 2015-04-21T11:08:29.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 ac5342181d6a4ac09e1a2ef76322b65c 2015-04-21T09:52:27.000-0400
219.151.9.44 China Guiyang root !!aaAA11 http://119.167.137.81:8989/GG32 http://119.167.137.81:8989 /GG32 02d7857ebe7f472cd723dcbd98a40257c7fe34899416bace7787bd99bec239ec 3e59072eff814888a2ed813f6db20172 2015-04-21T09:47:11.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/DDosyu http://216.99.145.173:8080 /DDosyu 5d4b81f7c2ad2209937bcca36d79fc970a7a0f113012f578be548fe871ce7b7e 69cae362e2314b1ab4f9b17258d11669 2015-04-21T05:36:43.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/DDosyu http://216.99.145.173:8080 /DDosyu 5d4b81f7c2ad2209937bcca36d79fc970a7a0f113012f578be548fe871ce7b7e 69cae362e2314b1ab4f9b17258d11669 2015-04-21T05:36:11.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 aeacf1ce187e443d8cb5db8098a176cd 2015-04-21T05:33:23.000-0400
216.99.145.173 United States Walnut root user http://216.99.145.173:8080/1 http://216.99.145.173:8080 /1 27c5c4808bcfca05b7dad14e33a72739d9102c2f7c7403a18182f7e74dd8b5a2 aeacf1ce187e443d8cb5db8098a176cd 2015-04-21T05:32:46.000-0400
111.73.45.231 China Nanchang root admin http://111.73.45.231:8080/cccc http://111.73.45.231:8080 /cccc 035eb95095296a8ea3e2a922d05d85a3ab5e49d761823ec600606920a5cb9442 a138e40311314604a28ee18b0efc5f27 2015-04-20T20:06:02.000-0400
58.215.49.13 China Nanjing root ubnt http://124.160.11.12:8987/9090 http://124.160.11.12:8987 /9090 79f876339ed69184e381f48fac7375f908243337d16ef3775919f7edb59a2241 3869df13d03b47b99ddd820825b54ce3 2015-04-20T19:35:59.000-0400
222.215.230.216 China Chengdu root ubnt http://23.234.25.204:120/6002 http://23.234.25.204:120 /6002 96348740ec94eecb13a0daa6febb3a2119b985a4c1addc864e31810768f3e4ae 00681ad39fed49c58cff77671628391d 2015-04-20T19:12:56.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins6 http://222.186.31.117:56789 /wins6 f4cfad777d3aa9ad0447088c973e72647f8838f07b8b3b76344ac94552eca0b3 bf9eb181978d45909d6db766dfbac03d 2015-04-20T16:31:30.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins9 http://222.186.31.117:56789 /wins9 24aafdaba7d93a0fc3c0ddee600398053abf83b40a9984f95ca9eb295db9ce61 bf9eb181978d45909d6db766dfbac03d 2015-04-20T16:31:18.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 bf9eb181978d45909d6db766dfbac03d 2015-04-20T16:31:03.000-0400
104.143.5.76 United States Las Vegas root 880131 http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 5ccca3bded5f423980d32d6e8db5488c 2015-04-20T11:27:35.000-0400
38.68.17.240 United States root asdfgh123 http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 84f4fbec680841eb8bf43739c883c731 2015-04-20T11:25:00.000-0400
162.220.24.141 United States Cheyenne root asdfgh123 http://23.234.19.202/i/a06 http://23.234.19.202 /i/a06 c394440c56fdcda9739fbb966e9ac2eab9e11e2eeff0720eb4c850a05b33eefc 5c6a92078ad743c2b1462519f6e52b0c 2015-04-20T11:24:08.000-0400
216.170.125.156 United States Buffalo root Admin123123! http://66.117.9.14:81/79 http://66.117.9.14:81 /79 a7eb1d26c8069a933254341be5b5ebf61818d08d0867d64d48890e0ba80cff87 cb47b0621e404343b60bd4a3fd78a7d2 2015-04-20T11:14:07.000-0400
222.186.31.117 China Nanjing root ubnt http://222.186.31.117:56789/wins8 http://222.186.31.117:56789 /wins8 0d246d4ba203729c350fe7a4e592122008e177edf8ee21ec91a57fdb503d0187 da7da1ac4b8f4f8ea51ba374745588cb 2015-04-20T09:58:16.000-0400
107.182.141.25 United States Cheyenne root henning http://23.234.19.202/i/a07 http://23.234.19.202 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 0b03424c75544e2d8e4fce579d44b120 2015-04-19T11:46:51.000-0400
216.170.125.155 United States Buffalo root iloveyou2 http://66.117.9.14:81/59 http://66.117.9.14:81 /59 8c55d1c4949e00f00e99b4bde64917fa72421626e4ba8fef93a8a1d06954264a ca41fb53221945208f95167d4b602419 2015-04-19T11:13:49.000-0400
184.164.71.41 United States Mesquite root bluehat654 http://23.234.19.202/i/a07 http://23.234.19.202 /i/a07 61b0107a7a06ecbb8cc1d323967291d15450df7e8bab5d96c822a98c9399a521 af8d551061404ebcb1941354f5469b52 2015-04-19T10:35:27.000-0400
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment