You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: cme/protocols/ssh.py
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ class ssh(connection):
12
12
@staticmethod
13
13
defproto_args(parser, std_parser, module_parser):
14
14
ssh_parser=parser.add_parser('ssh', help="own stuff using SSH", parents=[std_parser, module_parser])
15
+
ssh_parser.add_argument("--no-bruteforce", action='store_true', help='No spray when using file for username and password (user1 => password1, user2 => password2')
15
16
#ssh_parser.add_argument("--key-file", type=str, help="Authenticate using the specified private key")
16
17
ssh_parser.add_argument("--port", type=int, default=22, help="SSH port (default: 22)")
0 commit comments