Class: Watobo::Modules::Active::Sqlinjection::Sql_boolean

Inherits:
ActiveCheck
  • Object
show all
Defined in:
modules/active/sqlinjection/sql_boolean.rb

Constant Summary

Constants included from Constants

Constants::AC_GROUP_APACHE, Constants::AC_GROUP_DOMINO, Constants::AC_GROUP_ENUMERATION, Constants::AC_GROUP_FILE_INCLUSION, Constants::AC_GROUP_FLASH, Constants::AC_GROUP_GENERIC, Constants::AC_GROUP_JBOSS, Constants::AC_GROUP_JOOMLA, Constants::AC_GROUP_SAP, Constants::AC_GROUP_SQL, Constants::AC_GROUP_TYPO3, Constants::AC_GROUP_XSS, Constants::AUTH_TYPE_BASIC, Constants::AUTH_TYPE_DIGEST, Constants::AUTH_TYPE_NONE, Constants::AUTH_TYPE_NTLM, Constants::CHAT_SOURCE_AUTO_SCAN, Constants::CHAT_SOURCE_FUZZER, Constants::CHAT_SOURCE_INTERCEPT, Constants::CHAT_SOURCE_MANUAL, Constants::CHAT_SOURCE_MANUAL_SCAN, Constants::CHAT_SOURCE_PROXY, Constants::CHAT_SOURCE_UNDEF, Constants::DEFAULT_PORT_HTTP, Constants::DEFAULT_PORT_HTTPS, Constants::FINDING_TYPE_HINT, Constants::FINDING_TYPE_INFO, Constants::FINDING_TYPE_UNDEFINED, Constants::FINDING_TYPE_VULN, Constants::FIRST_TIME_FILE, Constants::GUI_REGULAR_FONT_SIZE, Constants::GUI_SMALL_FONT_SIZE, Constants::ICON_PATH, Constants::LOG_DEBUG, Constants::LOG_INFO, Constants::SCAN_CANCELED, Constants::SCAN_FINISHED, Constants::SCAN_PAUSED, Constants::SCAN_STARTED, Constants::TE_CHUNKED, Constants::TE_COMPRESS, Constants::TE_DEFLATE, Constants::TE_GZIP, Constants::TE_IDENTITY, Constants::TE_NONE, Constants::VULN_RATING_CRITICAL, Constants::VULN_RATING_HIGH, Constants::VULN_RATING_INFO, Constants::VULN_RATING_LOW, Constants::VULN_RATING_MEDIUM, Constants::VULN_RATING_UNDEFINED

Instance Method Summary collapse

Methods included from CheckInfoMixin::InfoMethods

#check_group, #check_name

Constructor Details

#initialize(project, prefs = {}) ⇒ Sql_boolean

Returns a new instance of Sql_boolean.



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
# File 'modules/active/sqlinjection/sql_boolean.rb', line 66

def initialize(project, prefs={})
  super(project, prefs)
 
  
  @boolean_checks = [ 
  [ '\'--', '\''],
  [ ' or 1=1', ' and 1=2'],
  [ '\' or \'1\'=\'1', '\' and \'1\'=\'2'],
  [ '\') or \'1\'=\'1\'(\'', '\') and \'1\'=\'2\'(\'' ],
  [ '\')) or \'1\'=\'1\'((\'', '\')) and \'1\'=\'2\'((\'' ],
  [ '\'))) or \'1\'=\'1\'(((\'', '\'))) and \'1\'=\'2\'(((\'' ], 
  [ ') or \'1\'=\'1\'(', ') and \'1\'=\'2\'(' ],
  [ ')) or \'1\'=\'1\'((', ')) and \'1\'=\'2\'((' ],
  [ '))) or \'1\'=\'1\'(((', '))) and \'1\'=\'2\'(((' ],
  [ ' and 1=1', ' and 1=2'],
  [ '\' and \'1\'=\'1', '\' and \'1\'=\'2'],
  [ '\') and \'1\'=\'1\'(\'', '\') and \'1\'=\'2\'(\'' ],
  [ '\')) and \'1\'=\'1\'((\'', '\')) and \'1\'=\'2\'((\'' ],
  [ '\'))) and \'1\'=\'1\'(((\'', '\'))) and \'1\'=\'2\'(((\'' ], 
  [ ') and \'1\'=\'1\'(', ') and \'1\'=\'2\'(' ],
  [ ')) and \'1\'=\'1\'((', ')) and \'1\'=\'2\'((' ],
  [ '))) and \'1\'=\'1\'(((', '))) and \'1\'=\'2\'(((' ],                      
  ]
  
  @prefs = [ '', '%']
  @fins = [ '', '--', ';--']
end

Instance Method Details

#generateChecks(chat) ⇒ Object



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
# File 'modules/active/sqlinjection/sql_boolean.rb', line 94

def generateChecks(chat)
  
  #
  #  Check GET-Parameters
  #
  begin
    urlParmNames(chat).each do |get_parm|
      checks = []
      @prefs.each do |p|
      @fins.each do |f|
        @boolean_checks.each do  |c| 
          checks << [ p + c[0] + f, p + c[1] +f ]
        end
      end
      end
      checks.each do |check_true, check_false|
        checker = proc {
          begin
           # puts "TRUE ==> #{check_true}"
           # puts "FALSE ==> #{check_false}"
            parm = get_parm.dup
            check_t = CGI::escape(check_true)
            check_f = CGI::escape(check_false)
            test_request = nil
            test_response = nil
            
            # first do request double time to check if hashes are the same
            test = chat.copyRequest
            test_request,test_response = doRequest(test, :default => true)
            text_1, hash_1 = Watobo::Utils.smartHash(chat.request, test_request, test_response)
           # puts test_response
            test = chat.copyRequest
            test_request,test_response = doRequest(test, :default => true)
           # puts test_response
            text_2, hash_2 = Watobo::Utils.smartHash(chat.request, test_request, test_response)
            #puts "=== SQL BOOLEAN (#{parm}) ===="
            #puts "=TEXT_1 (#{parm})\r\n#{text_1}\r\n=HASH_1\r\n#{hash_1}" if parm =~ /button/
            #puts "=TEXT_2 (#{parm})\r\n#{text_2}\r\n=HASH_2\r\n#{hash_2}" if parm =~ /button/
           
            if hash_1 == hash_2 then
              test = chat.copyRequest
              val = test.get_parm_value(parm)
             # val << "AB" if val.empty?
              val << check_t
             
              test.replace_get_parm(parm, val)
              true_request,true_response = doRequest(test, :default => true)
              text_true, hash_true = Watobo::Utils.smartHash(chat.request, true_request, true_response)
              
              test = chat.copyRequest
              val = test.get_parm_value(parm)
             # val << "AB" if val.empty?
              val.reverse!
              val += check_t
             
              test.replace_get_parm(parm, val)
              random_request,random_response = doRequest(test, :default => true)
              text_random, hash_random = Watobo::Utils.smartHash(chat.request, random_request, random_response)
              
              test = chat.copyRequest
              val = test.get_parm_value(parm)
              #val << "AB" if val.empty?
              val += check_f
             
              test.replace_get_parm(parm, val)
              false_request,false_response = doRequest(test, :default => true)
              text_false, hash_false = Watobo::Utils.smartHash(chat.request, false_request, false_response)
               
              unless (hash_true == hash_false) and (hash_true == hash_random) then
                test = chat.copyRequest
                val = test.get_parm_value(parm)
                #val << "AB" if val.empty?
                val += check_t
                test.replace_get_parm(parm, val)
                test_request,test_response = doRequest(test, :default => true)
                text_true, hash_true = Watobo::Utils.smartHash(chat.request, test_request, test_response)
              
                if hash_true == hash_1 or hash_false == hash_1 or hash_true == hash_random or hash_false == hash_random then
              
                  path = "/" + test_request.path
                 # test_chat = Chat.new(test,test_response,chat.id)
               #  puts "MATCH !!! #{self.to_s.gsub(/.*::/,'')}"
                  addFinding(test_request,test_response,
                  :test_item => parm,
                             :check_pattern => "#{parm}",
                  :chat => chat,
                  :title => "[#{parm}] - #{path}",
                  :debug => true
                  )                            
                end                          
              else
                #puts "\n! Boolean check not possible on chat #{chat.id}. URL parmeter #{parm} is imune :("
                #puts "--- Hashes are equal!"
                #puts text_true
                #puts "---"
                #puts text_false
                #puts "---"
                #puts text_random
                #puts "==="
              end
            else
               puts "\n! Boolean check not possible on chat #{chat.id}. Response differs too much :(" if $DEBUG
            end
          rescue => bang
            puts bang
            raise
          end
          [ test_request, test_response ]
        }
        yield checker
        
      end
      
    end
    
    postParmNames(chat).each do |post_parm|
      checks = []
      @prefs.each do |p|
      @fins.each do |f|
        @boolean_checks.each do  |c| 
          checks << [ p + c[0] + f, p + c[1] +f ]
        end
      end
      end
      checks.each do |check_true, check_false|
        
        checker = proc {
          begin
           # puts "TRUE ==> #{check_true}"
           # puts "FALSE ==> #{check_false}"
            parm = post_parm.dup
            check_t = CGI::escape(check_true)
            check_f = CGI::escape(check_false)
            test_request = nil
            test_response = nil
            
            # first do request double time to check if hashes are the same
            test = chat.copyRequest
            test_request,test_response = doRequest(test, :default => true)
            text_1, hash_1 = Watobo::Utils.smartHash(chat.request, test_request, test_response)
           # puts test_response
            test = chat.copyRequest
            test_request,test_response = doRequest(test, :default => true)
           # puts test_response
            text_2, hash_2 = Watobo::Utils.smartHash(chat.request, test_request, test_response)
            #puts "=== SQL BOOLEAN (#{parm}) ===="
            #puts "=TEXT_1 (#{parm})\r\n#{text_1}\r\n=HASH_1\r\n#{hash_1}" if parm =~ /button/
            #puts "=TEXT_2 (#{parm})\r\n#{text_2}\r\n=HASH_2\r\n#{hash_2}" if parm =~ /button/
           
            if hash_1 == hash_2 then
              test = chat.copyRequest
              val = test.post_parm_value(parm)
             # val << "AB" if val.empty?
              val << check_t
             
              test.replace_post_parm(parm, val)
              true_request,true_response = doRequest(test, :default => true)
              text_true, hash_true = Watobo::Utils.smartHash(chat.request, true_request, true_response)
              
              test = chat.copyRequest
              val = test.post_parm_value(parm)
             # val << "AB" if val.empty?
              val.reverse!
              val += check_t
             
              test.replace_post_parm(parm, val)
              random_request,random_response = doRequest(test, :default => true)
              text_random, hash_random = Watobo::Utils.smartHash(chat.request, random_request, random_response)
              
              test = chat.copyRequest
              val = test.post_parm_value(parm)
              #val << "AB" if val.empty?
              val += check_f
             
              test.replace_post_parm(parm, val)
              false_request,false_response = doRequest(test, :default => true)
              text_false, hash_false = Watobo::Utils.smartHash(chat.request, false_request, false_response)
               
              unless (hash_true == hash_false) and (hash_true == hash_random) then
                test = chat.copyRequest
                val = test.post_parm_value(parm)
                #val << "AB" if val.empty?
                val += check_t
                test.replace_post_parm(parm, val)
                test_request,test_response = doRequest(test, :default => true)
                text_true, hash_true = Watobo::Utils.smartHash(chat.request, test_request, test_response)
              
                if hash_true == hash_1 or hash_false == hash_1 or hash_true == hash_random or hash_false == hash_random then
              
                  path = "/" + test_request.path
                 # test_chat = Chat.new(test,test_response,chat.id)
                # puts "MATCH !!! #{self.to_s.gsub(/.*::/,'')}"
                  addFinding(test_request,test_response,
                  :test_item => parm,
                             :check_pattern => "#{parm}",
                  :chat => chat,
                  :title => "[#{parm}] - #{path}",
                  :debug => true
                  )                            
                end                          
              else
                #puts "\n! Boolean check not possible on chat #{chat.id}. URL parmeter #{parm} is imune :("
                #puts "--- Hashes are equal!"
                #puts text_true
                #puts "---"
                #puts text_false
                #puts "---"
                #puts text_random
                #puts "==="
              end
            else
               puts "\n! Boolean check not possible on chat #{chat.id}. Response differs too much :(" if $DEBUG
            end
          rescue => bang
            puts bang
            raise
          end
          [ test_request, test_response ]
        }
        yield checker
        
      end                
    end
  rescue => bang
    puts bang
  end
end