mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
fix: ftp proto name
This commit is contained in:
+1
-1
@@ -494,7 +494,7 @@ class NXCDBMenu(cmd.Cmd):
|
||||
def help_proto():
|
||||
help_string = """
|
||||
proto [smb|mssql|winrm]
|
||||
*unimplemented protocols: Ftp, rdp, ldap, ssh
|
||||
*unimplemented protocols: ftp, rdp, ldap, ssh
|
||||
Changes nxcdb to the specified protocol
|
||||
"""
|
||||
print_help(help_string)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
def proto_args(parser, std_parser, module_parser):
|
||||
ftp_parser = parser.add_parser("Ftp", help="own stuff using FTP", parents=[std_parser, module_parser])
|
||||
ftp_parser = parser.add_parser("ftp", help="own stuff using FTP", parents=[std_parser, module_parser])
|
||||
ftp_parser.add_argument("--port", type=int, default=21, help="FTP port (default: 21)")
|
||||
|
||||
cgroup = ftp_parser.add_argument_group("FTP Access", "Options for enumerating your access")
|
||||
|
||||
Reference in New Issue
Block a user