-
Notifications
You must be signed in to change notification settings - Fork 2
/
lilibot.py
243 lines (214 loc) · 7.44 KB
/
lilibot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# lilibot.py
#
# Copyright 2015 W. @W0x404
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
import MySQLdb, subprocess, re, thread, requests, argparse, sys, random
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
class DB():
"""
Class usefull to manage database. Made by W. You should replace
details by yours
"""
def __init__(self, host=None, user=None, password=None, database=None):
print "Gathering database's details..."
self.host = self.collector(host, "Host: ")
self.user = self.collector(user, "User: ")
self.password = self.collector(password, "Password: ")
self.database = self.collector(database, "Database: ")
self.db = ""
self.cursor = ""
print "Database's details gathered..."
self.connect() # auto connect. Perfect.
def collector(self, argument, input):
if (argument == None):
return raw_input(input)
if (argument != None):
return argument
def connect(self):
"""
Function to test the connection to your database.
1) build the database object.
2) build the cursor
3) no error, well connected.
"""
print "Testing the connexion to the database...",
try:
self.db = MySQLdb.connect(self.host,self.user, self.password, self.database)
self.cursor = self.db.cursor()
print bcolors.OKGREEN + "Database well configured." + bcolors.ENDC
except MySQLdb.Error, e:
print bcolors.FAIL + "Mysql sent error(s): {}".format(e) + bcolors.ENDC
exit(0)
def query(self, sql, v=0, r=0):
"""
Best way to execute a query. Dont create insert or select
function.
"""
try:
# Execute the SQL command
self.cursor.execute(sql)
# Commit your changes in the database
self.db.commit()
# Fetch result
data = self.cursor.fetchall()
# v for a verbose mode
if (v==1):
print data
# r for return mode
if (r==1):
if data[0][0] != None:
return data
if data[0][0] == None:
self.query(sql, r=1)
except MySQLdb.Error, e:
# Rollback in case there is any error
self.db.rollback()
print bcolors.FAIL + "Mysql sent error(s): {}".format(e) + bcolors.ENDC
def close(self):
"""
Don't forget to clean the database and the password.
"""
self.db.close()
self.db = ""
self.cursor = ""
self.password = ""
class Carving():
"""
The carving creates a bot to carve raw web page. dont forget
to insert a first url in the database.
> insert into DATABASE value ("http://cyber-exploit.com","http://cyber-exploit.com");
"""
def __init__(self, database, args):
self.database = database
self.scope = list()
self.url = ""
print bcolors.WARNING + "Creating carving bot..." + bcolors.ENDC,
while (1):
if (len(self.scope) == 0):
self.rand_url()
if (len(self.scope) > 0):
self.url = random.choice(self.scope)
print bcolors.WARNING+"°"+ bcolors.ENDC + bcolors.UNDERLINE + "Carving "+self.url+ bcolors.ENDC
self.raw_page = self.get_page(args)
if args.sonly == True:
self.carve_sqli()
if args.sonly == False:
self.carve_url()
if args.sqli == True:
self.carve_sqli()
def get_page(self, args):
"""
perform requests
"""
raw = ""
sock_proxy = "localhost:9050"
proxyDict = { "socks": sock_proxy }
try:
if args.tor == False:
raw = requests.get(self.url, timeout=3)
if args.tor == True:
raw = requests.get(self.url, timeout=3, proxies=proxyDict)
raw = raw.content
return raw
except:
raw = ""
pass
def carve_url(self):
"""
Regex to detect http url. https is not pertinent: too secure.
Store the url.
"""
regex_url = ur"(http://[\.[\w_-][^\[\]<>\n \"\(\),;\\]+]*)"
regex_dn = ur"(http://[\.[\w_-]*)"
try:
urls = re.findall(regex_url, self.raw_page)
urls = set(urls)
if (len(urls) > 0 and len(self.scope) < 2000 ):
print bcolors.HEADER +"Adding "+str(len(urls))+bcolors.ENDC+" to the scope. Duplicated url(s) will be ignored."
#little weird but working fine.
self.scope.extend(urls)
elif len(self.scope)>=2000:
urls_q = ""
for e in self.scope:
urls_q += "(\""+e+"\"), "
q = 'INSERT IGNORE INTO sites (url) VALUES %s ON DUPLICATE KEY UPDATE url = url;' % urls_q[:-2]
print bcolors.WARNING + "Adding "+str(len(self.scope))+ bcolors.ENDC+" to the database."
self.database.query(q)
self.scope = list()
except:
pass
def carve_sqli(self):
"""
Regex to detect php url and store it.
"""
try:
urls = re.findall('http://[\.[\w_-][^\[\]<>\n "]+.php\?[\w=&]*', self.raw_page)
urls = set(urls)
if (len(urls) > 0):
print bcolors.OKBLUE + bcolors.BOLD + "Adding "+str(len(urls))+ bcolors.ENDC+" to the sqli table. Duplicated url(s) will be ignored."
#little weird but working fine.
for e in urls:
self.database.query('INSERT IGNORE INTO sqli (url) VALUES ("%s") ON DUPLICATE KEY UPDATE url = url;' % (e))
except:
pass
def clean_url(self):
"""
Delete the url in the first version. Flag it the next.
"""
print "Deleting url ("+ self.url +")from the scope...\n"
self.database.query('DELETE FROM scope WHERE url = "%s";' % (self.url))
def rand_url(self):
"""
Get a rand url for the carving. need 1 url in the database to work.
"""
try:
cnt = 0
cnt = self.database.query('select count(url) from sites;', r=1)[0][0]
cnt = random.randint(0, cnt-1)
print bcolors.WARNING + "Selecting a new url from the database." + bcolors.ENDC
self.url = self.database.query('select url from sites where id='+ str(cnt) +';', r=1)[0][0]
except:
self.rand_url()
def main():
parser = argparse.ArgumentParser(description='Start a bot to detect injectable url.', prog='lilibot.py')
parser.add_argument('--tor','-T', dest='tor', action='store_true', help='Provide connection with Tor.')
parser.add_argument('--sqli','-s', dest='sqli', action='store_true', help='Allow looking for sqli url.')
parser.add_argument('--sonly','-S', dest='sonly', action='store_true', help='Only looking for sqli url.')
parser.add_argument('--debug', dest='debug', action='store_true', help='Debug display.')
parser.add_argument('--host','-H', dest='host', help='Database s host value.')
parser.add_argument('--user','-u', dest='user', help='Database s user value.')
parser.add_argument('--pass','-p', dest='password', help='Database s password value.')
parser.add_argument('--db','-d', dest='db', help='Database s db value.')
args = parser.parse_args()
database = DB(args.host,args.user, args.password, args.db) # create the db
Carving(database, args)
return 0
if __name__ == '__main__':
main()