forked from rapid7/metasploit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlmap.rb
294 lines (240 loc) · 8.26 KB
/
sqlmap.rb
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
require 'sqlmap/sqlmap_session'
require 'sqlmap/sqlmap_manager'
require 'json'
module Msf
class Plugin::Sqlmap < Msf::Plugin
class SqlmapCommandDispatcher
include Msf::Ui::Console::CommandDispatcher
def name
'Sqlmap'
end
def commands
{
'sqlmap_new_task' => 'Create a new task',
'sqlmap_connect' => 'sqlmap_connect <host> [<port>]',
'sqlmap_list_tasks' => 'List the knows tasks. New tasks are not stored in DB, so lives as long as the console does',
'sqlmap_get_option' => 'Get an option for a task',
'sqlmap_set_option' => 'Set an option for a task',
'sqlmap_start_task' => 'Start the task',
'sqlmap_get_status' => 'Get the status of a task',
'sqlmap_get_log' => 'Get the running log of a task',
'sqlmap_get_data' => 'Get the resulting data of the task',
'sqlmap_save_data' => 'Save the resulting data as web_vulns'
}
end
def cmd_sqlmap_connect(*args)
if args.length == 0
print_error('Need a host, and optionally a port')
return
end
@host, @port = args
if !@port
@port = '8775'
end
@manager = Sqlmap::Manager.new(Sqlmap::Session.new(@host, @port))
print_good("Set connection settings for host #{@host} on port #{@port}")
end
def cmd_sqlmap_set_option(*args)
unless args.length == 3
print_error('Usage:')
print_error('\tsqlmap_set_option <taskid> <option_name> <option_value>')
return
end
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
val = args[2] =~ /^\d+$/ ? args[2].to_i : args[2]
res = @manager.set_option(@hid_tasks[args[0]], args[1], val)
print_status("Success: #{res['success']}")
end
def cmd_sqlmap_start_task(*args)
if args.length == 0
print_error('Usage:')
print_error('\tsqlmap_start_task <taskid> [<url>]')
return
end
options = {}
options['url'] = args[1] if args.length == 2
if !options['url'] && @tasks[@hid_tasks[args[0]]]['url'] == ''
print_error('You need to specify a URL either as an argument to sqlmap_start_task or sqlmap_set_option')
return
end
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
res = @manager.start_task(@hid_tasks[args[0]], options)
print_status("Started task: #{res['success']}")
end
def cmd_sqlmap_get_log(*args)
unless args.length == 1
print_error('Usage:')
print_error('\tsqlmap_get_log <taskid>')
return
end
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
res = @manager.get_task_log(@hid_tasks[args[0]])
res['log'].each do |message|
print_status("[#{message['time']}] #{message['level']}: #{message['message']}")
end
end
def cmd_sqlmap_get_status(*args)
unless args.length == 1
print_error('Usage:')
print_error('\tsqlmap_get_status <taskid>')
return
end
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
res = @manager.get_task_status(@hid_tasks[args[0]])
print_status("Status: #{res['status']}")
end
def cmd_sqlmap_get_data(*args)
unless args.length == 1
print_error('Usage:')
print_error('\tsqlmap_get_data <taskid>')
return
end
@hid_tasks ||= {}
@tasks ||= {}
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
@tasks[@hid_tasks[args[0]]] = @manager.get_options(@hid_tasks[args[0]])['options']
print_line
print_status("URL: #{@tasks[@hid_tasks[args[0]]]['url']}")
res = @manager.get_task_data(@hid_tasks[args[0]])
tbl = Rex::Text::Table.new(
'Columns' => ['Title', 'Payload'])
res['data'].each do |d|
d['value'].each do |v|
v['data'].each do |i|
title = i[1]['title'].split('-')[0]
payload = i[1]['payload']
tbl << [title, payload]
end
end
end
print_line
print_line tbl.to_s
print_line
end
def cmd_sqlmap_save_data(*args)
unless args.length == 1
print_error('Usage:')
print_error('\tsqlmap_save_data <taskid>')
return
end
unless framework.db && framework.db.usable
print_error('No database is connected or usable')
return
end
@hid_tasks ||= {}
@tasks ||= {}
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
@tasks[@hid_tasks[args[0]]] = @manager.get_options(@hid_tasks[args[0]])['options']
print_line
print_status('URL: ' + @tasks[@hid_tasks[args[0]]]['url'])
res = @manager.get_task_data(@hid_tasks[args[0]])
web_vuln_info = {}
url = @tasks[@hid_tasks[args[0]]]['url']
proto = url.split(':')[0]
host = url.split('/')[2]
port = 80
host, port = host.split(':') if host.include?(':')
path = '/' + (url.split('/')[3..(url.split('/').length - 1)].join('/'))
query = url.split('?')[1]
web_vuln_info[:web_site] = url
web_vuln_info[:path] = path
web_vuln_info[:query] = query
web_vuln_info[:host] = host
web_vuln_info[:port] = port
web_vuln_info[:ssl] = (proto =~ /https/)
web_vuln_info[:category] = 'imported from sqlmap'
res['data'].each do |d|
d['value'].each do |v|
web_vuln_info[:pname] = v['parameter']
web_vuln_info[:method] = v['place']
web_vuln_info[:payload] = v['suffix']
v['data'].values.each do |i|
web_vuln_info[:name] = i['title']
web_vuln_info[:description] = res.to_json
web_vuln_info[:proof] = i['payload']
framework.db.report_web_vuln(web_vuln_info)
end
end
end
print_good('Saved vulnerabilities to database.')
end
def cmd_sqlmap_get_option(*args)
@hid_tasks ||= {}
@tasks ||= {}
unless args.length == 2
print_error('Usage:')
print_error('\tsqlmap_get_option <taskid> <option_name>')
end
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
arg = args.first
task_options = @manager.get_options(@hid_tasks[arg])
@tasks[@hid_tasks[arg]] = task_options['options']
if @tasks[@hid_tasks[arg]]
print_good("#{args[1]} : #{@tasks[@hid_tasks[arg]][args[1]]}")
else
print_error("Option #{arg} doesn't exist")
end
end
def cmd_sqlmap_new_task
@hid_tasks ||= {}
@tasks ||= {}
unless @manager
print_error('Please run sqlmap_connect <host> first.')
return
end
task_id = @manager.new_task
if task_id['taskid']
t_id = task_id['taskid'].to_s
@hid_tasks[(@hid_tasks.length + 1).to_s] = t_id
task_options = @manager.get_options(t_id)
@tasks[@hid_tasks[@hid_tasks.length]] = task_options['options']
print_good("Created task: #{@hid_tasks.length}")
else
print_error("Error connecting to the server. Please make sure the sqlmapapi server is running at #{@host}:#{@port}")
end
end
def cmd_sqlmap_list_tasks
@hid_tasks ||= {}
@tasks ||= {}
@hid_tasks.keys.each do |task|
print_good("Task ID: #{task}")
end
end
end
def initialize(framework, opts)
super
add_console_dispatcher(SqlmapCommandDispatcher)
print_status('Sqlmap plugin loaded')
end
def cleanup
remove_console_dispatcher('Sqlmap')
end
def name
'Sqlmap'
end
def desc
'sqlmap plugin for Metasploit'
end
end
end