This repository has been archived by the owner on Jun 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdangerous_strings.rb
344 lines (287 loc) · 7.14 KB
/
dangerous_strings.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/usr/bin/env ruby
require 'rubygems'
require 'find'
require 'optparse'
class OptsParse
def self.parse(cmds)
options = {}
OptionParser.new do |opt|
opt.on("-d", "-d <directory>", "path to the directory to search. ex: /var/www/") do |d|
options['dir'] = d
end
opt.on("-o", "-o <out file>", "File to output results to. ex: /var/www/myfile.txt") do |o|
options['outfile'] = o
end
opt.on_tail("-h", "--help", "Show this message") do
puts opt
exit
end
begin
opt.parse!(cmds)
rescue OptionParser::InvalidOption
puts "\e[1;31m[error]\e[0m Invalid option, try -h for usage"
exit
rescue OptionParser::MissingArgument
puts "\e[1;31m[error]\e[0m You are missing an argument"
exit
end
end
options
end
end
class ProgressBar
VERSION = "0.9"
def initialize (title, total, out = STDERR)
@title = title
@total = total
@out = out
@terminal_width = 80
@bar_mark = "="
@current = 0
@previous = 0
@finished_p = false
@start_time = Time.now
@previous_time = @start_time
@title_width = 14
@format = "%-#{@title_width}s %3d%% %s %s"
@format_arguments = [:title, :percentage, :bar, :stat]
clear
show
end
attr_reader :title
attr_reader :current
attr_reader :total
attr_accessor :start_time
attr_writer :bar_mark
private
def fmt_bar
bar_width = do_percentage * @terminal_width / 100
sprintf("|%s%s|",
@bar_mark * bar_width,
" " * (@terminal_width - bar_width))
end
def fmt_percentage
do_percentage
end
def fmt_stat
if @finished_p then elapsed else eta end
end
def fmt_stat_for_file_transfer
if @finished_p then
sprintf("%s %s %s", bytes, transfer_rate, elapsed)
else
sprintf("%s %s %s", bytes, transfer_rate, eta)
end
end
def fmt_title
@title[0,(@title_width - 1)] + ":"
end
def convert_bytes (bytes)
if bytes < 1024
sprintf("%6dB", bytes)
elsif bytes < 1024 * 1000 # 1000kb
sprintf("%5.1fKB", bytes.to_f / 1024)
elsif bytes < 1024 * 1024 * 1000 # 1000mb
sprintf("%5.1fMB", bytes.to_f / 1024 / 1024)
else
sprintf("%5.1fGB", bytes.to_f / 1024 / 1024 / 1024)
end
end
def transfer_rate
bytes_per_second = @current.to_f / (Time.now - @start_time)
sprintf("%s/s", convert_bytes(bytes_per_second))
end
def bytes
convert_bytes(@current)
end
def format_time (t)
t = t.to_i
sec = t % 60
min = (t / 60) % 60
hour = t / 3600
sprintf("%02d:%02d:%02d", hour, min, sec);
end
# ETA stands for Estimated Time of Arrival.
def eta
if @current == 0
"ETA: --:--:--"
else
elapsed = Time.now - @start_time
eta = elapsed * @total / @current - elapsed;
sprintf("ETA: %s", format_time(eta))
end
end
def elapsed
elapsed = Time.now - @start_time
sprintf("Time: %s", format_time(elapsed))
end
def eol
if @finished_p then "\n" else "\r" end
end
def do_percentage
if @total.zero?
100
else
@current * 100 / @total
end
end
def get_width
# FIXME: I don't know how portable it is.
default_width = 80
begin
tiocgwinsz = 0x5413
data = [0, 0, 0, 0].pack("SSSS")
if @out.ioctl(tiocgwinsz, data) >= 0 then
rows, cols, xpixels, ypixels = data.unpack("SSSS")
if cols >= 0 then cols else default_width end
else
default_width
end
rescue Exception
default_width
end
end
def show
arguments = @format_arguments.map {|method|
method = sprintf("fmt_%s", method)
send(method)
}
line = sprintf(@format, *arguments)
width = get_width
if line.length == width - 1
@out.print(line + eol)
@out.flush
elsif line.length >= width
@terminal_width = [@terminal_width - (line.length - width + 1), 0].max
if @terminal_width == 0 then @out.print(line + eol) else show end
else # line.length < width - 1
@terminal_width += width - line.length + 1
show
end
@previous_time = Time.now
end
def show_if_needed
if @total.zero?
cur_percentage = 100
prev_percentage = 0
else
cur_percentage = (@current * 100 / @total).to_i
prev_percentage = (@previous * 100 / @total).to_i
end
# Use "!=" instead of ">" to support negative changes
if cur_percentage != prev_percentage ||
Time.now - @previous_time >= 1 || @finished_p
show
end
end
public
def clear
@out.print "\r"
@out.print(" " * (get_width - 1))
@out.print "\r"
end
def finish
@current = @total
@finished_p = true
show
end
def finished?
@finished_p
end
def file_transfer_mode
@format_arguments = [:title, :percentage, :bar, :stat_for_file_transfer]
end
def format= (format)
@format = format
end
def format_arguments= (arguments)
@format_arguments = arguments
end
def halt
@finished_p = true
show
end
def inc (step = 1)
@current += step
@current = @total if @current > @total
show_if_needed
@previous = @current
end
def set (count)
if count < 0 || count > @total
raise "invalid count: #{count} (total: #{@total})"
end
@current = count
show_if_needed
@previous = @current
end
def inspect
"#<ProgressBar:#{@current}/#{@total}>"
end
end
class ReversedProgressBar < ProgressBar
def do_percentage
100 - super
end
end
dangerous_strings_array = []
if File.exists?("php_dangerous.txt")
dangerous_strings = []
dangerous_strings_file = File.open("php_dangerous.txt", "r")
dangerous_strings_file.each do |line|
line.rstrip!
if line.length > 1 and not line =~ /\[(.*)\]/
dangerous_strings.push(line)
end
end
else
puts "\e[1;31m[Error]\e[0m php_dangerous.txt needs to be in the same directory as dangerous_strings.rb"
exit
end
options = OptsParse.parse(ARGV)
dir = options['dir']
outfile = options ['outfile']
banner = "\e[1;31m[Usage]\e[0m dangerous_strings.rb -d /var/www/myphpapp/ -o ~/results.txt"
[dir, outfile].each do |item|
if item.nil?
puts banner
exit
end
end
file_arry = []
if File.directory?(dir)
Find.find(dir) { |file|
if file.to_s =~ (/(.\php|.txt)/) and File.directory?(file) == false
file_arry.push(file)
end
}
else
puts "\e[1;31m[error]\e[0m The directory you entered does not exist"
exit
end
pbar = ProgressBar.new("Processing", file_arry.length)
index = 0
file_arry.each_with_index do |f, idx|
index = idx + 1
pbar.set(index)
open_file = File.open(f, "r")
open_file.each {|line|
dangerous_strings.each do |l|
if l.length > 1 and line.include?(l)
dangerous_strings_array << ([f.to_s,line.to_s,l.to_s])
end
end
}
end
pbar.finish
dangerous_strings_file.close
if File.exists?(outfile)
File.delete(outfile)
end
file_write = File.open(outfile, "a")
dangerous_strings_array.each do |item|
fname = item[0]
interesting_line = item[1]
ds = item[2]
file_write.puts("\n#{fname} (#{ds})\n" + "=" * fname.length + "\n" +"#{interesting_line}\n")
end