We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 944cd2e commit 93491c1Copy full SHA for 93491c1
1 file changed
nxc/protocols/smb/proto_args.py
@@ -16,7 +16,7 @@ def proto_args(parser, parents):
16
smb_parser.add_argument("--port", type=int, default=445, help="SMB port")
17
smb_parser.add_argument("--share", metavar="SHARE", default="C$", help="specify a share")
18
smb_parser.add_argument("--smb-server-port", default="445", help="specify a server port for SMB", type=int)
19
- smb_parser.add_argument("--no-smbv1", action="store_true", help="Force to disable SMBv1 in connection")
+ smb_parser.add_argument("--smbv1", action="store_true", default=False, help="[DEFAULT OFF] Enable SMBv1 negotiation (only if explicitly needed)")
20
smb_parser.add_argument("--gen-relay-list", metavar="OUTPUT_FILE", help="outputs all hosts that don't require SMB signing to the specified file")
21
smb_parser.add_argument("--smb-timeout", help="SMB connection timeout", type=int, default=2)
22
smb_parser.add_argument("--laps", dest="laps", metavar="LAPS", type=str, help="LAPS authentification", nargs="?", const="administrator")
0 commit comments