Allow JavaScript obfuscation as an option
git-svn-id: file:///home/svn/framework3/trunk@13524 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
a1526e86b8
commit
4ac431948a
|
@ -116,6 +116,11 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
],
|
],
|
||||||
'DisclosureDate' => "Jun 16 2011",
|
'DisclosureDate' => "Jun 16 2011",
|
||||||
'DefaultTarget' => 0))
|
'DefaultTarget' => 0))
|
||||||
|
|
||||||
|
register_options(
|
||||||
|
[
|
||||||
|
OptBool.new('OBFUSCATE', [false, 'Enable JavaScript obfuscation', true])
|
||||||
|
], self.class)
|
||||||
end
|
end
|
||||||
|
|
||||||
def auto_target(cli, request)
|
def auto_target(cli, request)
|
||||||
|
@ -293,8 +298,12 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
JS
|
JS
|
||||||
|
|
||||||
js = heaplib(js)
|
js = heaplib(js)
|
||||||
|
|
||||||
|
#obfuscate on demand
|
||||||
|
if datastore['OBFUSCATE']
|
||||||
js = ::Rex::Exploitation::JSObfu.new(js)
|
js = ::Rex::Exploitation::JSObfu.new(js)
|
||||||
js.obfuscate
|
js.obfuscate
|
||||||
|
end
|
||||||
|
|
||||||
html = <<-HTML
|
html = <<-HTML
|
||||||
<html>
|
<html>
|
||||||
|
|
Loading…
Reference in New Issue