derp just check db active
the other way of doing this was stupid, jsut check if the db is activebug/bundler_fix
parent
001b6d913e
commit
fd7e65d459
|
@ -13,33 +13,33 @@ module Auxiliary::Report
|
||||||
optionally_include_metasploit_credential_creation
|
optionally_include_metasploit_credential_creation
|
||||||
|
|
||||||
def create_cracked_credential(opts={})
|
def create_cracked_credential(opts={})
|
||||||
begin
|
if active_db?
|
||||||
super(opts)
|
super(opts)
|
||||||
rescue NoMethodError => e
|
else
|
||||||
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_credential(opts={})
|
def create_credential(opts={})
|
||||||
begin
|
if active_db?
|
||||||
super(opts)
|
super(opts)
|
||||||
rescue NoMethodError => e
|
else
|
||||||
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_credential_login(opts={})
|
def create_credential_login(opts={})
|
||||||
begin
|
if active_db?
|
||||||
super(opts)
|
super(opts)
|
||||||
rescue NoMethodError => e
|
else
|
||||||
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def invalidate_login(opts={})
|
def invalidate_login(opts={})
|
||||||
begin
|
if active_db?
|
||||||
super(opts)
|
super(opts)
|
||||||
rescue NoMethodError => e
|
else
|
||||||
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
print_error "There does not appear to be a functioning DB, Credential Data will not be saved!"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue