diff --git a/nxc/nxcdb.py b/nxc/nxcdb.py index f10bc026..b6c6be07 100644 --- a/nxc/nxcdb.py +++ b/nxc/nxcdb.py @@ -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) diff --git a/nxc/protocols/ftp/proto_args.py b/nxc/protocols/ftp/proto_args.py index 65740fb4..0e9e94d4 100644 --- a/nxc/protocols/ftp/proto_args.py +++ b/nxc/protocols/ftp/proto_args.py @@ -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")