Fix Uninitialized Constant RequestError
[SeeRM #8765] NameError uninitialized constantbug/bundler_fix
parent
18816f3d5e
commit
0f620f5aba
|
@ -47,7 +47,7 @@ class Metasploit3 < Msf::Post
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
rescue ::Exception => e
|
rescue ::Exception => e
|
||||||
if e.kind_of?(RuntimeError) or e.kind_of?(RequestError)
|
if e.kind_of?(RuntimeError) or e.kind_of?(::Rex::Post::Meterpreter::RequestError)
|
||||||
# Can't bind or in a network w/ limited accounts
|
# Can't bind or in a network w/ limited accounts
|
||||||
print_error(e.message)
|
print_error(e.message)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue