Skip to content

Commit b057a94

Browse files
committed
Don't use ssh agent
1 parent a54945c commit b057a94

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/exploits/apple_ios/ssh/cydia_default_ssh.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def do_login(user, pass)
8282
:framework => framework,
8383
:msfmodule => self,
8484
:port => rport,
85-
:use_agent => true,
85+
:use_agent => false,
8686
:config => false,
8787
:password => pass,
8888
:record_auth_info => true,

modules/exploits/linux/ssh/f5_bigip_known_privkey.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def do_login(user)
7878
:msfmodule => self,
7979
:port => rport,
8080
:key_data => [ key_data ],
81-
:use_agent => true,
81+
:use_agent => false,
8282
:config => false,
8383
:record_auth_info => true,
8484
:proxy => factory,

modules/exploits/multi/ssh/sshexec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def do_login(ip, user, pass, port)
105105
opt_hash = {
106106
:auth_methods => ['password', 'keyboard-interactive'],
107107
:port => port,
108-
:use_agent => true,
108+
:use_agent => false,
109109
:config => false,
110110
:password => pass,
111111
:proxy => factory,

0 commit comments

Comments
 (0)