From aa8e073494ceab3f0b9cb0b901df926cfc8005ed Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Thu, 21 Jun 2012 12:34:26 +0100 Subject: [PATCH] Changes debug logs in the evasion main class. --- extensions/evasion/evasion.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/evasion/evasion.rb b/extensions/evasion/evasion.rb index b86cca957..aaf3019d9 100644 --- a/extensions/evasion/evasion.rb +++ b/extensions/evasion/evasion.rb @@ -37,10 +37,10 @@ module BeEF #2. call the "execute" method of the ruby module, passing the input #3. update the input in order that next technique will work on the pre-processed input. if File.exists?("#{$root_dir}/extensions/evasion/obfuscation/#{technique}.rb") - print_debug "[OBFUSCATION] Applying technique [#{technique}]" klass = BeEF::Extension::Evasion.const_get(technique.capitalize).instance is_bootstrap_needed = klass.need_bootstrap if is_bootstrap_needed + print_debug "[OBFUSCATION] Adding bootstrapper for technique [#{technique}]" @bootstrap += klass.get_bootstrap end end