forked from urbanadventurer/WhatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
whatweb
executable file
·1093 lines (917 loc) · 31.3 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, 2010 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
#require 'profile' # for debugging
require 'getoptlong'
require 'pp'
require 'net/http'
require 'net/https'
require 'open-uri'
require 'cgi'
require 'thread'
# 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') # this is much faster
require 'json'
end
rescue LoadError
# that failed.. no big deal
end
if RUBY_VERSION =~ /^1.9/
require 'digest/md5'
else
require 'md5'
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/"
require 'lib/output.rb'
require 'lib/colour.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
$VERSION="0.4.6"
$DEBUG = false # raise exceptions in plugins, etc
$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
$NO_REDIRECT=false
$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=60
$HTTP_READ_TIMEOUT=120
$ANEMONE_SKIP_EXTENSIONS = %w|zip gz tar jpg exe png pdf|
$ANEMONE_SKIP_REGEX=nil
$WAIT=nil
$OUTPUT_ERRORS=nil
module PluginSugar
def def_field(*names)
class_eval do
names.each do |name|
define_method(name) do |*args|
case args.size
when 0 then instance_variable_get("@#{name}")
else instance_variable_set("@#{name}", *args)
end
end
end
end
end
end
class Plugin
attr_accessor :base_uri
@registered_plugins = {}
class << self
attr_reader :registered_plugins
private :new
attr_reader :locked
@locked=false
end
def self.define(name, &block)
p = new
p.instance_eval(&block)
Plugin.registered_plugins[name] = p
end
def lock
@locked=true
end
def unlock
@locked=false
end
def locked?
@locked
end
def init (body=nil,meta={},cookies=nil,status=nil,base_uri=nil, md5sum=nil, tagpattern=nil)
@body=body
@meta=meta
@cookies=cookies
@status=status
@base_uri=base_uri
@md5sum=md5sum
@tagpattern=tagpattern
end
# execute plugin
def x
# find the regular expressions in the matches array
results=[]
unless @matches.nil?
@matches.map do |match|
r=[]
unless match[:regexp].nil?
r << match if @body =~ match[:regexp]
end
unless match[:ghdb].nil?
r << match if match_ghdb(match[:ghdb], @body, @meta, @status, @base_uri)
end
unless match[:text].nil?
r << match if @body.include?(match[:text])
end
unless match[:md5].nil?
r << match if @md5sum == match[:md5]
end
unless match[:tagpattern].nil?
r << match if @tagpattern == match[:tagpattern]
end
if !match[:version].nil? and match[:version].class==Regexp
if @body =~ match[:version]
m = match.dup
m[:version] = @body.scan(match[:version])[0][match[:version_regexp_offset]]
r << m
end
end
# if match requires a URL, only match it if the @baseuri.path is equal to the :url
results +=r if match[:url].nil? or (!match[:url].nil? and !@base_uri.nil? and match[:url] == @base_uri.path)
end
end
# if the plugin has a passive method, use it
results += self.passive if defined? self.passive
# if the plugin has an aggressive method and we're in aggressive mode, use it
# or if we're guessing all URLs
if ($AGGRESSION == 3 and !results.empty?) or ($AGGRESSION == 4)
results += self.aggressive if defined? self.aggressive
# if any of our matches have a url then fetch it
# and check the matches[]
# later we can do some caching
# we have no caching, so we sort the URLs to fetch and only get 1 unique url per plugin. not great..
unless @matches.nil?
lastbase_uri=nil
thisstatus,thisurl,thisbody,thisheaders,thiscookies=nil # this shouldn't be necessary but ruby thinks its a local variable to the if end statement
@matches.map {|x| x if x[:url]}.compact.sort_by {|x| x[:url] }.map do |match|
r=[] # temp results
# this is messy... need a webpage class
thisbase_uri=URI.join(@base_uri.to_s, match[:url])
if thisbase_uri != lastbase_uri
thisstatus,thisurl,thisbody,thisheaders,thiscookies = open_target( thisbase_uri.to_s)
end
lastbase_uri=thisbase_uri
if thisbody.nil?
thismd5sum=nil
thistagpattern=nil
else
thismd5sum=Digest::MD5.hexdigest(thisbody)
thistagpattern = make_tag_pattern(thisbody)
end
unless match[:regexp].nil?
r << match if thisbody =~ match[:regexp]
end
unless match[:ghdb].nil?
r << match if match_ghdb(match[:ghdb], thisbody, {}, thisstatus, thisbase_uri)
end
unless match[:text].nil?
r << match if thisbody.include?(match[:text])
end
unless match[:md5].nil?
r << match if thismd5sum == match[:md5]
end
unless match[:tagpattern].nil?
r << match if thistagpattern == match[:tagpattern]
end
if !match[:version].nil? and match[:version].class==Regexp
if thisbody =~ match[:version]
m = match.dup
m[:version] = thisbody.scan(match[:version])[0][match[:version_regexp_offset]]
r << m
end
end
results +=r
end
end
#=end
#puts "."
# if the plugin has extra URLs then use them if aggressive
# we're obviously in the business of guessing URLs now
#pp @extra_urls
# this is broken
unless @extra_urls.nil?
#puts "extra_urls, not nil"
@extra_urls.map do |x|
#pp Thread.main["targets"]
target = URI.join(@base_uri.to_s,x).to_s
Thread.main["targets"] << target
#puts "added #{target}"
#pp Thread.main["targets"]
end
end
end
# clean up results
unless results.empty?
results.each do |r|
if !r[:string].nil?
if r[:string].is_a?(String)
r[:string].delete!("\n\x0d\x09\x0a")
r[:string].strip!
end
end
r [:certainty]=100 if r[:certainty].nil?
end
end
results
end
extend PluginSugar
def_field :author, :version, :examples, :description, :matches, :extra_urls
end
def plugin_list
puts "Plugins Loaded"
puts "-" * 30
Plugin.registered_plugins.sort.each do |n,p|
puts [n, p.version].join(",")
end
puts
end
def plugin_info(keywords= nil)
puts "Plugin Information"
puts "Searching for " + keywords.join(",") unless keywords.nil?
puts "-" * 30
Plugin.registered_plugins.sort_by {|a,b| a }.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} version " + plugin.version + " by " + plugin.author
print plugin.examples.is_a?(Array) ? "[#{plugin.examples.size}]" : "[ ]"
print " examples, "
print plugin.matches.is_a?(Array) ? "[#{plugin.matches.size}]" : "[ ]"
print " matches, "
print defined?(plugin.aggressive) ? "[x]" : "[ ]"
print " aggressive, "
print defined?(plugin.passive) ? "[x]" : "[ ]"
print " passive, "
if !plugin.matches.nil? and !plugin.matches.empty? and !plugin.matches.map {|m| m[:version] }.compact.empty?
print "[x]"
else
print "[ ]"
end
puts " version."
puts "Description: "+( plugin.description.nil? ? "" : plugin.description)
puts
puts "-" * 80
end
end
puts
end
def load_plugins(plugin_list = nil)
plugins=PLUGIN_DIRS.map {|x| "#{x}/*.rb" }
if plugin_list.nil?
plugins.each {|folder| Dir.glob(folder).each {|x| load x } }
else
plugins.each {|folder| Dir.glob(folder).each {|x| load x if plugin_list.include?(x)}}
end
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\"
#{matches}
end
"
# open tmp file
f=Tempfile.new('whatweb-custom-plugin')
# write
f.write(custom)
f.close
# load
load f.path
f.unlink
end
def select_plugins(requested_plugin_names = nil)
# run all plugins, or run the specific set
# convert cmdline list of plugins to lowercase
plugins_to_use = (
unless requested_plugin_names.nil?
# find unrecognised, requested plugins
requested_plugin_names.each {|x| x.downcase! }
names_of_loaded_plugins = Plugin.registered_plugins.map {|n,p| n.downcase }
requested_plugin_names.each do |cmdplugin|
unless names_of_loaded_plugins.include?(cmdplugin)
puts "Plugin: #{cmdplugin} not recognised."
end
end
# case insensitive selection
Plugin.registered_plugins.map {|name,plugin| [name,plugin] if requested_plugin_names.include?(name.downcase) }.compact.sort
else
Plugin.registered_plugins.sort_by {|x| x[0] }
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
#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 colour
if ($use_colour=="auto") or ($use_colour=="always")
STDERR.puts red(s)
else
STDERR.puts s
end
unless $OUTPUT_ERRORS.nil?
$OUTPUT_ERRORS.out(s)
end
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 ) ,{"User-Agent"=>$USER_AGENT})
res=http.request(req)
headers={}; res.each_header {|x,y| headers[x]=y }
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 EOFError => err
error(target + " ERROR: EOF error #{err}")
return [0, nil, nil, nil,nil]
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]
rescue => err
error(target + " ERROR: #{err}")
return [0, nil, nil, nil,nil]
end
[status,uri,body,headers,cookies]
end
def run_plugins(target,body,headers=nil,cookies=nil,status=nil,url=nil)
#pp target, body, headers, status, url
# need a webpage model for this stuff
if body.nil?
md5sum=nil
tagpattern=nil
else
md5sum=Digest::MD5.hexdigest(body)
tagpattern = make_tag_pattern(body)
end
#########################################
results=[]
$plugins_to_use.each do |name,plugin|
begin
pp "Trying plugin " + name + " against " + target.to_s if $verbose>1
while plugin.locked?
sleep 0.5
puts "waiting for plugin:#{name} to unlock" if $verbose > 2
end
plugin.lock
if target =~ /^[a-z]+:\/\//
pp "target is a string url" if $verbose > 2
# it's a uri, with meta data, etc - #status,url,body,headers
plugin.init(body,headers,cookies,status,url,md5sum,tagpattern)
else
puts "target is a file" if $verbose > 2
# it's a file
plugin.init(body,{},nil,0,URI.parse('http://example.com/' + target),md5sum,tagpattern)
end
# eXecute the plugin
result=plugin.x
plugin.unlock
rescue StandardError => err
error("ERROR: Plugin #{name} failed for #{target.to_s}. #{err}")
plugin.unlock
raise if $DEBUG==true
end
pp [name,result] if $verbose > 2
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 "
<URLs>\t\t\tEnter URLs or filenames. Use /dev/stdin to pipe HTML
\t\t\tdirectly
--input-file=FILE, -i\tIdentify URLs found in FILE, eg. -i /dev/stdin
--aggression, -a\t1 passive - on-page
\t\t\t2 polite - unimplemented
\t\t\t3 impolite - guess URLs when plugin matches
\t\t\t(smart, guess a few urls)
\t\t\t4 aggressive - guess URLs for every plugin
\t\t\t(guess a lot of urls like nikto)
--recursion, -r\t\tFollow links recursively. Only follows links under the
\t\t\tpath (default: off)
--depth, -d\t\tMaximum recursion depth (default: #{$RECURSIVE_DEPTH})
--max-links, -m\t\tMaximum number of links to follow on one page
\t\t\t(default: #{$MAX_LINKS_TO_FOLLOW})
--spider-skip-extensions Redefine extensions to skip.
\t\t\t(default: #{$ANEMONE_SKIP_EXTENSIONS.join(",")})
--list-plugins, -l\tList the plugins
--run-plugins, -p\tRun comma delimited list of plugins. Default is all
--info-plugins, -I\tDisplay information for all plugins. Optionally search
\t\t\twith keywords in a comma delimited list.
--example-urls, -e\tAdd example urls for each plugin to the target list
--colour=[WHEN],\n--color=[WHEN]\t\tcontrol whether colour is used. WHEN may be `never',
\t\t\t`always', or `auto'
--log-full=FILE\t\tLog verbose output
--log-brief=FILE\tLog brief, one-line output
--log-xml=FILE\t\tLog XML format
--log-json=FILE\t\tLog JSON format
--log-json-verbose=FILE\tLog JSON Verbose format
--log-errors=FILE\tLog errors
--user-agent, -U\tIdentify as user-agent instead of WhatWeb/#{$VERSION}.
--max-threads, -t\tNumber of simultaneous threads. Default is #{$MAX_THREADS}.
--no-redirect\t\tDo not follow HTTP 3xx or meta-refresh redirects
--proxy\t\t\t<hostname[:port]> Set proxy hostname and port
\t\t\t(default: #{$PROXY_PORT})
--proxy-user\t\t<username:password> Set proxy user and password
--open-timeout\t\tTime in seconds
--read-timeout\t\tTime in seconds
--wait=SECONDS\t\tWait SECONDS between connections
\t\t\t(combine with threads = 1).
--custom-plugin\t\tDefine a custom plugin call Custom,
\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}\"
--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
--help, -h\t\tThis help
--verbose, -v\t\tIncrease verbosity, use twice for debugging.
--version\t\tDisplay version information.\n\n"
end
run_plugins_list=nil
input_file=nil
output_list = [ OutputBrief.new ] # by default output brief
opts = GetoptLong.new(
[ '--help', '-h', GetoptLong::NO_ARGUMENT ],
[ '-v','--verbose', GetoptLong::NO_ARGUMENT ],
[ '-l','--list-plugins', GetoptLong::NO_ARGUMENT ],
[ '-p','--run-plugins', GetoptLong::REQUIRED_ARGUMENT ],
[ '-I','--info-plugins', GetoptLong::OPTIONAL_ARGUMENT ],
[ '-e','--example-urls', GetoptLong::NO_ARGUMENT ],
[ '--colour','--color', GetoptLong::REQUIRED_ARGUMENT ],
[ '--log-full', 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-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 ],
[ '--no-redirect', GetoptLong::NO_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 ],
[ '--wait', GetoptLong::REQUIRED_ARGUMENT ],
[ '--version', 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'
run_plugins_list=arg.split(",")
when '-I','--info-plugins'
load_plugins
plugin_info(arg.split(","))
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-full'
output_list << OutputFull.new(arg)
when '--log-brief'
output_list << OutputBrief.new(arg)
when '--log-xml'
output_list << OutputXML.new(arg)
when '--log-json'
if defined?(JSON)
output_list << OutputJSON.new(arg)
else
abort("Sorry. The JSON gem is required for JSON output")
end
when '--log-json-verbose'
if defined?(JSON)
output_list << OutputJSONVerbose.new(arg)
else
abort("Sorry. The JSON gem is required for JSONVerbose output")
end
when '--log-errors'
$OUTPUT_ERRORS = OutputErrors.new(arg)
when '-U','--user-agent'
$USER_AGENT=arg
when '-t','--max-threads'
$MAX_THREADS=arg.to_i
when '-a','--aggression'
$AGGRESSION=arg.to_i
when '-r','--recursive'
$RECURSIVE=true
when '-d','--depth'
$RECURSIVE_DEPTH=arg.to_i
when '-m','--max-links'
$MAX_LINKS_TO_FOLLOW=arg.to_i
when '--proxy'
$USE_PROXY=true
$PROXY_HOST = arg.to_s.split(":")[0]
$PROXY_PORT = arg.to_s.split(":")[1] if arg.to_s.include?(":")
when '--proxy-user'
$PROXY_USER=arg.to_s.split(":")[0]
$PROXY_PASS=arg.to_s.split(":")[1] if arg.to_s.include?(":")
when '--url-prefix'
$URL_PREFIX=arg
when '--url-suffix'
$URL_SUFFIX=arg
when '--url-pattern'
$URL_PATTERN=arg
when '--custom-plugin'
custom_plugin(arg)
when '--no-redirect'
$NO_REDIRECT=true
when '--open-timeout'
$HTTP_OPEN_TIMEOUT=arg.to_i
when '--read-timeout'
$HTTP_READ_TIMEOUT=arg.to_i
when '--spider-skip-extensions'
$ANEMONE_SKIP_EXTENSIONS = arg.split(",")
when '--wait'
$WAIT = arg.to_i
when '-h','--help'
usage
exit
when '-v','--verbose'
$verbose=$verbose+1
when '--version'
puts "WhatWeb version #{$VERSION} ( http://www.morningstarsecurity.com/research/whatweb/ )"
exit
end
end
rescue GetoptLong::Error => err
puts
usage
exit
end
pp "Use_color:"+$use_colour if $verbose >1
pp "loading plugins" if $verbose > 1
load_plugins # load all the plugins
$plugins_to_use = select_plugins(run_plugins_list) # make the list of selected plugins
pp $plugins_to_use if $verbose >1
# are the no plugins?
if $plugins_to_use.size == 0
puts "No plugins selected, exiting."
exit
end
# set up ANEMONE skip regex
# turn an array of extensions into a regexp
# $ANEMONE_SKIP_REGEX=Regexp.union($ANEMONE_SKIP_EXTENSIONS.map {|x| /\.#{x}$/ })
$ANEMONE_SKIP_REGEX=Regexp.union($ANEMONE_SKIP_EXTENSIONS.map{|x| "/\.#{" + x + "}$/" }.to_s())
# clean up urls, add example urls if needed
$targets=make_target_list(ARGV, input_file, $plugins_to_use)
pp "Targets: " ,$targets if $verbose>1
# fail & show usage if no targets.
if $targets.size <1
usage
exit
end
output_list << OutputFull.new() if $verbose > 1 # full output if -vv
output_list << OutputVerbose.new() if $verbose > 0 # full output if -vv
# for each target, we try each plugin then print the results
semaphore=Mutex.new
Thread.abort_on_exception = true
# while !$new_target_stack.empty? # plugins can add targets to the new target stack
# target = $new_target_stack.pop
# end # new target stack
def next_target
# pp Thread.main["targets"]
if Thread.main["targets"].size >0
new=Thread.main["targets"].pop
$targets << new
end
$targets.pop
end
#$targets.each do |target|
#target=next_target
#while !target.nil?
#target=0
Thread.main["targets"]=[]
#Thread.main["targets"] << "http://www.apple.com"
while thistarget = next_target
puts "thread starting for #{thistarget}" if $verbose>1
Thread.new do
target = thistarget # we set the target within the thread
sleep $WAIT unless $WAIT.nil? # wait
# get the webpage
# get the file/webpage, and return statuscode, base url, html body, html headers
# if target is a file
target_is_a_file=File.exists?(target)
if $RECURSIVE == true and target_is_a_file == false
Anemone.crawl(target,
{"threads"=>1, "user_agent"=>$USER_AGENT, "depth_limit"=>$RECURSIVE_DEPTH}) do |anemone|
anemone.skip_links_like $ANEMONE_SKIP_REGEX
# anemone.skip_links_like /\.zip$/,/\.gz$/,/\.tar$/,/\.jpg$/,/\.exe$/,/\.png$/,/\.html$/,/\.pdf$/
anemone.focus_crawl { |page| page.links.slice(0..$MAX_LINKS_TO_FOLLOW) }
anemone.on_every_page do |page|
sleep $WAIT unless $WAIT.nil? # wait if required
# convert headers
headers=Hash.new
unless page.headers.nil?
page.headers.each {|k,v| headers[k]=v.to_s }
end
#pp target,page.doc,page.headers,page.code,page.url
unless page.original_doc.nil?
doc=page.original_doc
status=page.code
# url=URI::parse(page.url.to_s)
url=page.url