class Rex::Exploitation::Js::Utils
Javascript utilities
Public Class Methods
base64()
click to toggle source
# File lib/rex/exploitation/js/utils.rb, line 15 def self.base64 js = ::File.read(::File.join(Msf::Config.data_directory, "js", "utils", "base64.js")) opts = { 'Symbols' => { 'Variables' => %w{ Base64 encoding result _keyStr encoded_data utftext input_idx input output chr chr1 chr2 chr3 enc1 enc2 enc3 enc4 }, 'Methods' => %w{ _utf8_encode _utf8_decode encode decode } } } ::Rex::Exploitation::ObfuscateJS.new(js, opts).to_s end