bug/bundler_fix
Christian Mehlmauer 2014-09-27 14:56:34 +02:00
parent 9a424a81bc
commit c51c19ca88
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class Metasploit3 < Msf::Auxiliary
return nil if res_file.nil? || res_file.code != 200 || res_file.body.nil?
match = res_file.body.match(/insert into `(.+_)customcontactforms_fields`/i)
return nil if match.nil? || match.length == 0
return nil if match.nil? || match.length < 2
table_prefix = match[1]
table_prefix