forked from urbanadventurer/WhatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhatweb
executable file
·1467 lines (1250 loc) · 43.1 KB
/
whatweb
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env ruby
=begin
.$$$$ $. .$$$$ $.
$$$$$ $$$$. .$$$$ $$$$$ .$$$$$$$. .$$$$$$$$$$$$$$$. $$$$$ $$$$. .$$$$$$$$$. .$$$$$$$.
$ $$$ $$$$$ $ $$$ $$$$$ $ $$$$$$$$$. $$$$$ $ $$$ $$$$$ $ $$$ $$$$$ $ $$$ $$$$ $ $$$$$$$$.
$ $$ $$$$$ $ $$ $$$$$ $ $$ $$$$$ $$$$$ $ $$ $$$$$ $ $$ $$$$$ $ $$ $ $$ $$$$'
$..$$ $$$$$ $..$$$$$$$$$ $..$$$$$$$$$ `:$:' $..$$ `:$:' $..$$ $$$$$ $..$$ $..$$$$$$$.
$:::$ $$$$$ $:::$$$$$$$$ $:::$$$$$$$$ $:::$ $:::$ $$$$$ $:::$$$$ $:::$ $$$$$
$;;;$ $ $$$$$ $;;;$ $$$$$ $;;;$ $$$$$ $;;;$ $;;;$ $ $$$$$ $;;;$ $;;;$ $$$$$
$$$$$ $$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$ $$$$$ $$$$$ ;$$ $$$$$ $$$$$
$$$$$$$$ $$$$$$$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$$$ $$$$$$$$ $$$$$$$$ $$$$$$$$$$$ $$$$$$$$$$$'
WhatWeb - Next generation web scanner.
Author: Andrew Horton aka urbanadventurer. Security Consultant for Security-Assessment.com
Homepage: http://www.morningstarsecurity.com/research/whatweb
Copyright 2009-2011 Andrew Horton <andrew.horton at security-assessment dot com>
This file is part of WhatWeb.
WhatWeb 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.
WhatWeb 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 WhatWeb. If not, see <http://www.gnu.org/licenses/>.
=end
# encoding: utf-8
# coding: utf-8
#require 'profile' # for debugging
require 'getoptlong'
require 'pp'
require 'net/http'
require 'open-uri'
require 'cgi'
require 'thread'
require 'iconv'
# load resolv-replace to see whatweb on speed
begin
require 'rubygems' # rubygems is optional
if Gem.available?('em-resolv-replace') # this is much faster
require 'resolv'
require 'resolv-replace' # does this work with ruby 1.9?
end
rescue LoadError
# that failed.. no big deal
end
# load JSON if it's available. Is this Ruby 1.9 JSON safe? who knows?
begin
require 'rubygems' # rubygems is optional
if Gem.available?('json') #
require 'json'
end
rescue LoadError
# that failed.. no big deal
end
# load MongoDB if it's available. Is this Ruby 1.9 JSON safe? who knows?
begin
require 'rubygems' # rubygems is optional
if Gem.available?('mongo') #
require 'mongo'
end
rescue LoadError
# that failed.. no big deal
end
# load rchardet -- needed for foreign charsets and mongodb
begin
require 'rubygems' # rubygems is optional
if Gem.available?('rchardet') # this detects encodings and is cpu heavy
require 'rchardet'
end
rescue LoadError
# that failed.. no big deal
end
if RUBY_VERSION =~ /^1\.9/
require 'digest/md5'
else
require 'md5'
require 'net/https'
end
# add the directory of the file currently being executed to the load path
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__))) unless
$:.include?(File.dirname(__FILE__)) || $LOAD_PATH.include?(File.expand_path(File.dirname(__FILE__)))
$LOAD_PATH << "/usr/share/whatweb/"
# if __FILE__ is a symlink then follow *every* symlink
if File.symlink?(__FILE__)
require 'pathname'
$LOAD_PATH << File.dirname( Pathname.new(__FILE__).realpath )
end
require 'lib/plugins.rb'
require 'lib/output.rb'
require 'lib/colour.rb'
require 'lib/tld.rb'
require 'lib/anemone/anemone.rb'
require 'tempfile'
#unless opts.size
# look through LOAD_PATH for the following plugin directories. Could be in same dir as whatweb or /usr/share/whatweb, etc
PLUGIN_DIRS=[ "plugins", "my-plugins"].map {|x| $LOAD_PATH.map {|y| y+"/"+x if File.exists?(y+"/"+x) } }.flatten.compact
$DEBUG = false # raise exceptions in plugins, etc
$VERSION="0.4.8"
$verbose=0
$USE_EXAMPLE_URLS=false
$use_colour="auto"
$USER_AGENT="WhatWeb/#{$VERSION}"
$MAX_THREADS=25
$AGGRESSION=1
$RECURSIVE=false
$RECURSIVE_DEPTH=10
$MAX_LINKS_TO_FOLLOW=250
$FOLLOW_REDIRECT="always"
$MAX_REDIRECTS=10
$USE_PROXY=false
$PROXY_HOST=nil
$PROXY_PORT=8080
$PROXY_USER=nil
$PROXY_PASS=nil
$URL_PREFIX=""
$URL_SUFFIX=""
$URL_PATTERN=nil
$NO_THREADS=false
$HTTP_OPEN_TIMEOUT=15
$HTTP_READ_TIMEOUT=30
$ANEMONE_SKIP_EXTENSIONS = %w|zip gz tar jpg exe png pdf|
$ANEMONE_SKIP_REGEX=nil
$WAIT=nil
$OUTPUT_ERRORS=nil
$QUIET=false
$CUSTOM_HEADERS={}
$BASIC_AUTH_USER=nil
$BASIC_AUTH_PASS=nil
$PLUGIN_TIMES=Hash.new(0)
# precompile regular expressions in plugins for performance
def precompile_regular_expressions
Plugin.registered_plugins.each do |thisplugin|
matches=thisplugin[1].matches
unless matches.nil?
matches.each do |thismatch|
unless thismatch[:regexp].nil?
#pp thismatch
thismatch[:regexp_compiled]=Regexp.new(thismatch[:regexp])
end
[:version, :os, :string, :account, :model, :firmware, :module, :filepath].each do |label|
if !thismatch[label].nil? and thismatch[label].class==Regexp
thismatch[:regexp_compiled]=Regexp.new(thismatch[label])
#pp thismatch
end
end
unless thismatch[:text].nil?
thismatch[:regexp_compiled]=Regexp.new(Regexp.escape(thismatch[:text]))
end
end
end
end
end
def plugin_list
puts "WhatWeb Plugin List"
puts
puts ["Plugin Name".ljust(25),"Description"].join(" ")
puts "-" * 79
Plugin.registered_plugins.delete_if {|n,p| n == "\302\277" }.sort_by {|a,b| a.downcase }.each do |n,p|
puts [n.ljust(25), (p.description.delete("\n\r") unless p.description.nil?)].join(" ")[0..78]
end
puts "-" * 30
puts "#{Plugin.registered_plugins.size} Plugins Loaded"
puts
end
# takes a string and returns an array of lines. used by plugin_info
def word_wrap(s,width=10)
ret=[]
line=""
s.split.map {|x|
word=x
if line.size + x.size + 1 <= width
line += x + " "
else
if word.size > width
ret << line
line = ""
w=word.clone
while w.size > width
ret << w[0..(width-1)]
w=w[width.to_i..-1]
end
ret << w unless w.size == 0
else
ret << line
line=x + " "
end
end
}
ret << line
ret
end
# Show Google Dorks
def plugin_dorks(plugin_name)
dorks=[]
# Loop through plugins
Plugin.registered_plugins.delete_if {|n,p| n == "\302\277" }.each do |n,p|
if n.downcase == plugin_name.downcase
pp "Google Dorks for #{n}:" if $verbose > 2
dorks << p.dorks unless p.dorks.nil?
end
end
# Show results if present, else show error message
dorks.size > 0 ? puts(dorks) : error("Google dork lookup failed: Invalid plugin name or no dorks available")
end
# Show plugin information
def plugin_info(keywords= nil)
puts "WhatWeb Plugin Information"
puts "Searching for " + keywords.join(",") unless keywords.nil?
puts "-" * 80
puts ["Plugin Name".ljust(25),"Details"].join(" ")
count=0
Plugin.registered_plugins.delete_if {|n,p| n == "\302\277" }.sort_by {|a,b| a.downcase }.each do |name,plugin|
# not include examples
dump=[name,plugin.author,plugin.description,plugin.matches].flatten.compact.to_a.join.downcase
if keywords.empty? or keywords.map {|k| dump.include?(k.downcase) }.compact.include?(true)
puts name
puts "\tAuthor:".ljust(22) + plugin.author
puts "\tVersion:".ljust(22) +plugin.version
# puts "\tCategory:".ljust(22) +plugin.category.to_s unless plugin.category.nil?
puts "\tExamples:".ljust(22) +plugin.examples.size.to_s if plugin.examples
puts "\tMatches:".ljust(22) +plugin.matches.size.to_s if plugin.matches
puts "\tDorks:".ljust(22) +plugin.dorks.size.to_s if plugin.dorks
puts "\tPassive function: ".ljust(22) + (defined?(plugin.passive) ? "Yes" : "No")
puts "\tAggressive function: ".ljust(22) + (defined?(plugin.aggressive) ? "Yes" : "No")
puts "\tVersion detection: ".ljust(22) + (plugin.version_detection? ? "Yes" : "No")
if plugin.description
puts "\tDescription: "
word_wrap(plugin.description,72).each {|line| puts "\t" + line }
end
puts
puts "-" * 80
count+=1
end
end
puts "#{count} plugins found"
puts
end
# This is used in plugin selection by load_plugins
class PluginChoice
attr_accessor :modifier, :type, :name
def <=>(s)
x = -1 if self.modifier.nil?
x = 0 if self.modifier=="+"
x = 1 if self.modifier=="-"
x
end
def fill(s)
self.modifier = nil
self.modifier=s[0].chr if ["+","-"].include?(s[0].chr)
if self.modifier
self.name=s[1..-1]
else
self.name=s
end
# figure out and store the filename or pluginname
if File.exists?(File.expand_path(self.name))
self.type = "file"
self.name = File.expand_path(self.name)
else
self.name.downcase!
self.type = "plugin"
end
end
end
# this is used by load_plugins
def load_plugin(f)
begin
load f
rescue
error("Error: failed to load #{f}")
rescue SyntaxError
error("Error: Failed to load #{f}.")
end
end
=begin
for adding/removing sets of plugins.
--plugins +plugins-disabled,-foobar (+ adds to the full set, -removes from the fullset. items can be directories, files or plugin names)
--plugins +/tmp/moo.rb
--plugins foobar (only select foobar)
--plugins ./plugins-disabled,-md5 (select only plugins from the plugins-disabled folder, remove the md5 plugin from the selected list)
=end
def load_plugins(list=nil)
# separate l into a and b
# a = make list of dir & filenames
# b = make list of assumed pluginnames
a=[];b=[]
plugin_dirs=PLUGIN_DIRS.clone
plugin_dirs.map {|p| p=File.expand_path(p) }
if list
list=list.split(",")
plugins_disabled_location = ["plugins-disabled"].map {|x| $LOAD_PATH.map {|y| y+"/"+x if File.exists?(y+"/"+x) } }.flatten.compact
list.each {|x| x.gsub!(/^\+$/,"+#{plugins_disabled_location}") } # + is short for +plugins-disabled
list.each do |p|
choice=PluginChoice.new
choice.fill(p)
a << choice if choice.type == "file"
b << choice if choice.type == "plugin"
end
# sort by neither, add, minus
a=a.sort
if a.map {|c| c.modifier }.include?(nil)
plugin_dirs=[]
end
minus_files = [] # make list of files not to load
a.map {|c|
plugin_dirs << c.name if c.modifier.nil? or c.modifier == "+"
plugin_dirs -= [c.name] if c.modifier == "-" # for Dirs
minus_files << c.name if c.modifier == "-" # for files
}
# load files from plugin_dirs unless a file is minused
plugin_dirs.each do |d|
# if a folder, then load all files
if File.directory?(d)
(Dir.glob("#{d}/*.rb")-minus_files).each {|x| load_plugin(x) }
elsif File.exists?(d)
load_plugin(d)
else
error("Error: #{d} is not Dir or File")
end
end
# make list of plugins to run
# go through all plugins, remove from list any that match b minus
selected_plugin_names=[]
if b.map {|c| c.modifier }.include?(nil)
selected_plugin_names=[]
else
selected_plugin_names = Plugin.registered_plugins.map {|n,p| n.downcase }
end
b.map {|c|
selected_plugin_names << c.name if c.modifier.nil? or c.modifier=="+"
selected_plugin_names -= [c.name] if c.modifier == "-"
}
plugins_to_use = Plugin.registered_plugins.map {|n,p| [n,p] if selected_plugin_names.include?(n.downcase) }.compact
# report on plugins that couldn't be found
unfound_plugins = selected_plugin_names - plugins_to_use.map {|n,p| n.downcase }
unless unfound_plugins.empty?
puts "Error: The following plugins were not found: " + unfound_plugins.join(",")
end
else
# no selection, so it's default
plugin_dirs.each do |d|
Dir.glob("#{d}/*.rb").each {|x|
load_plugin(x)
}
end
plugins_to_use = Plugin.registered_plugins
end
plugins_to_use
end
def custom_plugin(c)
# define a custom plugin on the cmdline
# ":text=>'powered by abc'" or
# "{:text=>'powered by abc'},{:regexp=>/abc [ ]?1/i}"
# then it's ok..
if c =~ /:(text|ghdb|md5|regexp|tagpattern)=>[\/'"].*/
matches="matches [\{#{c}\}]"
end
# this isn't checked for sanity... loading plugins = cmd exec anyway
if c =~ /\{.*\}/
matches="matches [#{c}]"
end
abort("Invalid custom plugin syntax: #{c}") if matches.nil?
custom="Plugin.define \"Custom-Plugin\" do
author \"Unknown\"
description \"User defined\"
#{matches}
end
"
begin
# open tmp file
f=Tempfile.new('whatweb-custom-plugin')
# write
f.write(custom)
f.close
# load
load f.path
f.unlink
true
rescue SyntaxError
error("Error: Cannot load custom plugin")
false
end
end
def make_target_list(cmdline_args, inputfile=nil,pluginlist = nil)
url_list = cmdline_args
# read each line as a url, skipping lines that begin with a #
if !inputfile.nil? and File.exists?(inputfile)
pp "loading input file: #{inputfile}" if $verbose > 2
url_list += File.read(inputfile).to_a.each {|line| line.strip! }.delete_if {|line| line =~ /^#.*/ }.each {|line| line.delete!("\n") }
end
# add example urls to url_list if required. plugins must be loaded already
if $USE_EXAMPLE_URLS
url_list += pluginlist.map {|name,plugin| plugin.examples unless plugin.examples.nil? }.compact.flatten
end
genrange=url_list.map do |x|
range=nil
if x =~ /^[0-9\.\-*\/]+$/ and not x =~ /^[\d\.]+$/
# check for nmap
error "Target ranges require nmap to be in the path" if `which nmap` == ""
range=`nmap -n -sL #{x} 2>&1 | egrep -o "([0-9]{1,3}\\.){3}[0-9]{1,3}"`
range=range.split("\n")
end
range
end.compact.flatten
url_list= url_list.select {|x| not x =~ /^[0-9\.\-*\/]+$/ or x =~ /^[\d\.]+$/ }
url_list += genrange unless genrange.empty?
#make urls friendlier, test if it's a file, if test for not assume it's http://
# http, https, ftp, etc
url_list=url_list.map do |x|
if File.exists?(x)
x
else
# use url pattern
if $URL_PATTERN
x = $URL_PATTERN.gsub('%insert%',x)
end
# add prefix & suffix
x=$URL_PREFIX + x + $URL_SUFFIX
if x =~ (/^[a-z]+:\/\//)
x
else
x.sub(/^/,"http://")
end
end
end
url_list=url_list.flatten #.sort.uniq
end
def certainty_to_words(p)
case p
when 0..49
"maybe"
when 50..99
"probably"
when 100
"certain"
end
end
def match_ghdb(ghdb, body, meta, status, base_uri)
# this could be made faster by creating code to eval once for each plugin
pp "match_ghdb",ghdb if $verbose > 2
# take a GHDB string and turn it into code to be evaluated
matches=[] # fill with true or false. succeeds if all true
s = ghdb
# does it contain intitle?
if s =~ /intitle:/i
# extract either the next word or the following words enclosed in "s, it can't possibly be both
intitle = (s.scan(/intitle:"([^"]*)"/i) + s.scan(/intitle:([^"]\w+)/i)).to_s
matches << ((body =~ /<title>[^<]*#{intitle}[^<]*<\/title>/i).nil? ? false : true)
# strip out the intitle: part
s=s.gsub(/intitle:"([^"]*)"/i,'').gsub(/intitle:([^"]\w+)/i,'')
end
if s =~ /filetype:/i
filetype = (s.scan(/filetype:"([^"]*)"/i) + s.scan(/filetype:([^"]\w+)/i)).to_s
# lame method: check if the URL ends in the filetype
unless base_uri.nil?
matches << ((base_uri.path.split("?")[0] =~ /#{filetype}$/i).nil? ? false : true)
end
s=s.gsub(/filetype:"([^"]*)"/i,'').gsub(/filetype:([^"]\w+)/i,'')
end
if s =~ /inurl:/i
inurl = (s.scan(/inurl:"([^"]*)"/i) + s.scan(/inurl:([^"]\w+)/i)).flatten
# can occur multiple times.
inurl.each {|x| matches << ((base_uri.to_s =~ /#{inurl}/i).nil? ? false : true) }
# strip out the filetype: part
s=s.gsub(/inurl:"([^"]*)"/i,'').gsub(/inurl:([^"]\w+)/i,'')
end
# split the remaining words except those enclosed in quotes, remove the quotes and sort them
remaining_words = s.scan(/([^ "]+)|("[^"]+")/i).flatten.compact.each {|w| w.delete!('"') }.sort.uniq
pp "Remaining GHDB words", remaining_words if $verbose > 2
remaining_words.each do |w|
# does it start with a - ?
if w[0..0] == '-'
# reverse true/false if it begins with a -
matches << ((body =~ /#{w[1..-1]}/i).nil? ? true : false)
else
w = w[1..-1] if w[0..0] == '+' # if it starts with +, ignore the 1st char
matches << ((body =~ /#{w}/i).nil? ? false : true)
end
end
pp matches if $verbose > 2
# if all matches are true, then true
if matches.uniq == [true]
true
else
false
end
end
def error(s)
if defined?($semaphore)
# We want the output mutex locked.
# Has our current thread already locked the Mutex?
begin
$semaphore.lock
rescue ThreadError
# we're already locked. Nice.
end
end
if ($use_colour=="auto") or ($use_colour=="always")
STDERR.puts red(s)
else
STDERR.puts s
end
STDERR.flush
unless $OUTPUT_ERRORS.nil?
$OUTPUT_ERRORS.out(s)
end
$semaphore.unlock if defined?($semaphore)
end
def open_target(target)
# follow 301's
begin
uri=URI.parse(target)
path=uri.path
path="/" if uri.path==""
query=uri.query
if $USE_PROXY == true
http=Net::HTTP::Proxy($PROXY_HOST,$PROXY_PORT, $PROXY_USER, $PROXY_PASS).new(uri.host,uri.port)
else
http=Net::HTTP.new(uri.host,uri.port)
end
# set timeouts
http.open_timeout = $HTTP_OPEN_TIMEOUT
http.read_timeout = $HTTP_READ_TIMEOUT
#puts path -- path doesn't include parameters
# if it's https://
# i wont worry about certificates, verfication, etc
if uri.class == URI::HTTPS
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
end
req=Net::HTTP::Get.new(path + (query.nil? ? "" : "?" + query ) , $CUSTOM_HEADERS)
if $BASIC_AUTH_USER
req.basic_auth $BASIC_AUTH_USER, $BASIC_AUTH_PASS
end
res=http.request(req)
headers={}; res.each_header {|x,y| headers[x]=y }
headers["set-cookie"] = res.get_fields('set-cookie').join("\n") unless headers["set-cookie"].nil?
body=res.body
status=res.code.to_i
puts uri.host.to_s + path + (query.nil? ? "" : "?" + query ) + " [#{status}]" if $verbose > 0
cookies=res.get_fields('set-cookie')
rescue SocketError => err
error(target + " ERROR: Socket error #{err}")
return [0, nil, nil, nil,nil]
rescue TimeoutError => err
error(target + " ERROR: Timed out #{err}")
return [0, nil, nil, nil,nil]
rescue Errno::ETIMEDOUT =>err # for ruby 1.8.7 patch level 249
error(target + " ERROR: Timed out (ETIMEDOUT) #{err}")
return [0, nil, nil, nil,nil]
rescue EOFError => err
error(target + " ERROR: EOF error #{err}")
return [0, nil, nil, nil,nil]
rescue StandardError => err
err = "Not HTTP or cannot resolve hostname" if err.to_s == "undefined method `closed?' for nil:NilClass"
error(target + " ERROR: #{err}")
return [0, nil, nil, nil,nil]
rescue => err
error(target + " ERROR: #{err}")
return [0, nil, nil, nil,nil]
end
begin
ip=IPSocket.getaddress(uri.host)
rescue StandardError => err
err = "Cannot resolve hostname" if err.to_s == "undefined method `closed?' for nil:NilClass"
error(target + " ERROR: #{err}")
return [0, nil, nil, nil,nil]
end
[status,uri,ip,body,headers,cookies]
end
def run_plugins(target,body,headers=nil,cookies=nil,status=nil,url=nil,ip="")
#pp target, body, headers, status, url
# need a webpage model for this stuff
if body.nil?
md5sum=nil
tagpattern=nil
# Initialize @body variable if the connection is terminated prematurely
# This is usually caused by HTTP status codes: 101, 102, 204, 205, 305
body=""
else
md5sum=Digest::MD5.hexdigest(body)
tagpattern = make_tag_pattern(body)
end
#########################################
# is the target a file or URL?
target_is_file=false
target_is_url=true if target =~ /^http[s]?:\/\//
results=[]
$plugins_to_use.each do |name,plugin|
begin
while plugin.locked?
sleep 0.1
puts "Waiting for plugin:#{name} to unlock" if $verbose > 2
end
plugin.lock
# Target is a URL
if target_is_url
#plugin.init(ObjectSpace._id2ref(body.object_id),headers,cookies,status,url,ip,md5sum,tagpattern)
plugin.init(body,headers,cookies,status,url,ip,md5sum,tagpattern)
else
if headers.nil?
# Target is a local file
plugin.init(body,{},nil,0,URI.parse('http://example.com/' + target),"",md5sum,tagpattern)
else
# Target is a local HTTP packet file
plugin.init(body,headers,cookies,status,URI.parse('http://example.com/' + target),"",md5sum,tagpattern)
end
end
# eXecute the plugin
#start_time = Time.now
result=plugin.x
#end_time = Time.now
#$PLUGIN_TIMES[name] += end_time - start_time
plugin.unlock
rescue StandardError => err
error("ERROR: Plugin #{name} failed for #{target.to_s}. #{err}")
plugin.unlock
raise if $DEBUG==true
end
results << [name, result] unless result.nil? or result.empty?
end
results
end
def make_tag_pattern(b)
# remove stuff between script and /script
# don't bother with !--, --> or noscript and /noscript
inscript=false;
b.scan(/<([^\s>]*)/).flatten.map {|x| x.downcase!; r=nil;
r=x if inscript==false
inscript=true if x=="script"
(inscript=false; r=x) if x=="/script"
r
}.compact.join(",")
end
def usage()
puts"
.$$$ $. .$$$ $.
$$$$ $$. .$$$ $$$ .$$$$$$. .$$$$$$$$$$. $$$$ $$. .$$$$$$$. .$$$$$$.
$ $$ $$$ $ $$ $$$ $ $$$$$$. $$$$$ $$$$$$ $ $$ $$$ $ $$ $$ $ $$$$$$.
$ `$ $$$ $ `$ $$$ $ `$ $$$ $$' $ `$ `$$ $ `$ $$$ $ `$ $ `$ $$$'
$. $ $$$ $. $$$$$$ $. $$$$$$ `$ $. $ :' $. $ $$$ $. $$$$ $. $$$$$.
$::$ . $$$ $::$ $$$ $::$ $$$ $::$ $::$ . $$$ $::$ $::$ $$$$
$;;$ $$$ $$$ $;;$ $$$ $;;$ $$$ $;;$ $;;$ $$$ $$$ $;;$ $;;$ $$$$
$$$$$$ $$$$$ $$$$ $$$ $$$$ $$$ $$$$ $$$$$$ $$$$$ $$$$$$$$$ $$$$$$$$$'
"
puts "WhatWeb - Next generation web scanner.\nVersion #{$VERSION} by Andrew Horton aka urbanadventurer from Security-Assessment.com"
puts "Homepage: http://www.morningstarsecurity.com/research/whatweb"
puts
puts "Usage: whatweb [options] <URLs>"
puts "
TARGET SELECTION:
<URLs>\t\tEnter URLs, filenames or nmap-format IP ranges.
\t\t\tUse /dev/stdin to pipe HTML directly
--input-file=FILE, -i\tIdentify URLs found in FILE, eg. -i /dev/stdin
--url-prefix\t\tAdd a prefix to target URLs
--url-suffix\t\tAdd a suffix to target URLs
--url-pattern\t\tInsert the targets into a URL. Requires --input-file,
\t\t\teg. www.example.com/%insert%/robots.txt
--example-urls, -e\tAdd example URLs for each selected plugin to the target
\t\t\tlist. By default will add example URLs for all plugins.
AGGRESSION LEVELS:
--aggression, -a=LEVEL The aggression level controls the trade-off between
\t\t\tspeed/stealth and reliability. Default: 1
\t\t\tAggression levels are:
\t1 (Passive)\tMake one HTTP request per target. Except for redirects.
\t2 (Polite)\tReserved for future use
\t3 (Aggressive)\tTriggers aggressive plugin functions only when a
\t\t\tplugin matches passively.
\t4 (Heavy)\tTrigger aggressive functions for all plugins. Guess a
\t\t\tlot of URLs like Nikto.
HTTP OPTIONS:
--user-agent, -U=AGENT Identify as AGENT instead of WhatWeb/#{$VERSION}.
--user, -u=<user:password> HTTP basic authentication
--header, -H\t\tAdd an HTTP header. eg \"Foo:Bar\". Specifying a default
\t\t\theader will replace it. Specifying an empty value, eg.
\t\t\t\"User-Agent:\" will remove the header.
--follow-redirect=WHEN Control when to follow redirects. WHEN may be `never',
\t\t\t`http-only', `meta-only', `same-site', `same-domain'
\t\t\tor `always'. Default: #{$FOLLOW_REDIRECT}
--max-redirects=NUM\tMaximum number of contiguous redirects. Default: 10
SPIDERING:
--recursion, -r\tFollow links recursively. Only follow links under the
\t\t\tpath Default: off
--depth, -d\t\tMaximum recursion depth. Default: #{$RECURSIVE_DEPTH}
--max-links, -m\tMaximum number of links to follow on one page
\t\t\tDefault: #{$MAX_LINKS_TO_FOLLOW}
--spider-skip-extensions Redefine extensions to skip.
\t\t\tDefault: #{$ANEMONE_SKIP_EXTENSIONS.join(",")}
PROXY:
--proxy\t\t<hostname[:port]> Set proxy hostname and port
\t\t\tDefault: #{$PROXY_PORT}
--proxy-user\t\t<username:password> Set proxy user and password
PLUGINS:
--plugins, -p\t\tComma delimited set of selected plugins. Default is all.
\t\t\tEach element can be a directory, file or plugin name and
\t\t\tcan optionally have a modifier, eg. + or -
\t\t\tExamples: +/tmp/moo.rb,+/tmp/foo.rb
\t\t\ttitle,md5,+./plugins-disabled/
\t\t\t./plugins-disabled,-md5
\t\t\t-p + is a shortcut for -p +plugins-disabled
--list-plugins, -l\tList the plugins
--info-plugins, -I\tDisplay information for all plugins. Optionally search
\t\t\twith keywords in a comma delimited list.
--custom-plugin\tDefine a custom plugin called Custom-Plugin,
\t\t\tExamples: \":text=>'powered by abc'\"
\t\t\t\":regexp=>/powered[ ]?by ab[0-9]/\"
\t\t\t\":ghdb=>'intitle:abc \\\"powered by abc\\\"'\"
\t\t\t\":md5=>'8666257030b94d3bdb46e05945f60b42'\"
\t\t\t\"{:text=>'powered by abc'},{:regexp=>/abc [ ]?1/i}\"
--dorks, -g <plugin name>\tReturns google dorks for the selected plugin
LOGGING & OUTPUT:
--verbose, -v\t\tIncrease verbosity, use twice for plugin development.
--colour,--color=WHEN\tcontrol whether colour is used. WHEN may be `never',
\t\t\t`always', or `auto'
--quiet, -q\t\tDo not display brief logging to STDOUT
--log-brief=FILE\tLog brief, one-line output
--log-verbose=FILE\tLog verbose output
--log-xml=FILE\tLog XML format
--log-json=FILE\tLog JSON format
--log-json-verbose=FILE Log JSON Verbose format
--log-magictree=FILE\tLog MagicTree XML format
--log-object=FILE\tLog Ruby object inspection format
--log-mongo-database\tName of the MongoDB database
--log-mongo-collection Name of the MongoDB collection. Default: whatweb
--log-mongo-host\tMongoDB hostname or IP address. Default: 0.0.0.0
--log-mongo-username\tMongoDB username. Default: nil
--log-mongo-password\tMongoDB password. Default: nil
--log-errors=FILE\tLog errors
PERFORMANCE & STABILITY:
--max-threads, -t\tNumber of simultaneous threads. Default: #{$MAX_THREADS}.
--open-timeout\tTime in seconds. Default: #{$HTTP_OPEN_TIMEOUT}
--read-timeout\tTime in seconds. Default: #{$HTTP_READ_TIMEOUT}
--wait=SECONDS\tWait SECONDS between connections
\t\t\tThis is useful when using a single thread.
HELP & MISCELLANEOUS:
--help, -h\t\tThis help
--debug\t\tRaise errors in plugins
--version\t\tDisplay version information. (WhatWeb #{$VERSION})
EXAMPLE USAGE:
whatweb example.com
whatweb -v example.com
whatweb -a 3 example.com
whatweb 192.168.1.0/24
\n"
suggestions=""
suggestions << "WARNING: Without the em-resolve-replace gem performance is significantly degraded.\n" unless Gem.available?('em-resolv-replace')
suggestions << "To enable JSON logging install the json gem.\n" unless Gem.available?('json')
suggestions << "To enable MongoDB logging install the mongo gem.\n" unless Gem.available?('mongo')
suggestions << "To enable character set detection and MongoDB logging install the rchardet gem.\n" unless Gem.available?('rchardet')
unless suggestions.empty?
print "\nOPTIONAL DEPENDENCIES\n--------------------------------------------------------------------------------\n" + suggestions + "\n"
end
end
if ARGV.size==0 # faster usage info
usage
exit
end
plugin_selection=nil
use_custom_plugin=false
input_file=nil
output_list = []
mongo={}
mongo[:use_mongo_log]=false
opts = GetoptLong.new(
[ '--help', '-h', GetoptLong::NO_ARGUMENT ],
[ '-v','--verbose', GetoptLong::NO_ARGUMENT ],
[ '-l','--list-plugins', GetoptLong::NO_ARGUMENT ],
[ '-p','--plugins', GetoptLong::REQUIRED_ARGUMENT ],
[ '-I','--info-plugins', GetoptLong::OPTIONAL_ARGUMENT ],
[ '-g','--dorks', GetoptLong::REQUIRED_ARGUMENT ],
[ '-e','--example-urls', GetoptLong::NO_ARGUMENT ],
[ '--colour','--color', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-object', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-brief', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-xml', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-json', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-json-verbose', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-magictree', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-verbose', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-mongo-collection', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-mongo-host', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-mongo-database', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-mongo-username', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-mongo-password', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-errors', GetoptLong::REQUIRED_ARGUMENT ],
[ '-i','--input-file', GetoptLong::REQUIRED_ARGUMENT ],
[ '-U','--user-agent', GetoptLong::REQUIRED_ARGUMENT ],
[ '-a','--aggression', GetoptLong::REQUIRED_ARGUMENT ],
[ '-t','--max-threads', GetoptLong::REQUIRED_ARGUMENT ],
[ '-m','--max-links', GetoptLong::REQUIRED_ARGUMENT ],
[ '-r','--recursive', GetoptLong::NO_ARGUMENT ],
[ '-d','--depth', GetoptLong::REQUIRED_ARGUMENT ],
[ '--follow-redirect', GetoptLong::REQUIRED_ARGUMENT ],
[ '--max-redirects', GetoptLong::REQUIRED_ARGUMENT ],
[ '--proxy', GetoptLong::REQUIRED_ARGUMENT ],
[ '--proxy-user', GetoptLong::REQUIRED_ARGUMENT ],
[ '--url-prefix', GetoptLong::REQUIRED_ARGUMENT ],
[ '--url-suffix', GetoptLong::REQUIRED_ARGUMENT ],
[ '--url-pattern', GetoptLong::REQUIRED_ARGUMENT ],
[ '--custom-plugin', GetoptLong::REQUIRED_ARGUMENT ],
[ '--open-timeout', GetoptLong::REQUIRED_ARGUMENT ],
[ '--read-timeout', GetoptLong::REQUIRED_ARGUMENT ],
[ '--spider-skip-extensions', GetoptLong::REQUIRED_ARGUMENT ],
[ '--header','-H', GetoptLong::REQUIRED_ARGUMENT ],
[ '--user','-u', GetoptLong::REQUIRED_ARGUMENT ],
[ '--wait', GetoptLong::REQUIRED_ARGUMENT ],
[ '--debug', GetoptLong::NO_ARGUMENT ],
[ '--version', GetoptLong::NO_ARGUMENT ],
[ '-q','--quiet', GetoptLong::NO_ARGUMENT]
)
begin
opts.each do |opt, arg|
case opt
when '-i','--input-file'
input_file=arg
when '-l','--list-plugins'
load_plugins
plugin_list
exit
when '-p','--run-plugins'
plugin_selection=arg
when '-I','--info-plugins'
load_plugins
plugin_info(arg.split(","))
exit
when '-g','--dorks'
load_plugins
plugin_dorks(arg)
exit
when '-e','--example-urls'
$USE_EXAMPLE_URLS=true
when '--color','--colour'
case arg
when 'auto'
$use_colour="auto"
when 'always'
$use_colour="always"
when 'never'
$use_colour=false
else
raise("--colour argument not recognized")
end
when '--log-object'