We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d529b commit 9efa842Copy full SHA for 9efa842
spec/lib/metasploit/framework/login_scanner/base_spec.rb
@@ -18,6 +18,9 @@ def self.model_name
18
allow(creds).to receive(:username).and_return('user')
19
allow(creds).to receive(:user_file)
20
allow(creds).to receive(:userpass_file)
21
+ allow(creds).to receive(:prepended_creds).and_return([])
22
+ allow(creds).to receive(:additional_privates).and_return([])
23
+ allow(creds).to receive(:additional_publics).and_return([])
24
allow(creds).to receive(:each).and_return(['user', 'pass'])
25
allow(creds).to receive(:additional_publics).and_return([])
26
creds
0 commit comments