We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79ecfa8 commit fbfbcc3Copy full SHA for fbfbcc3
1 file changed
nxc/protocols/nfs/proto_args.py
@@ -6,5 +6,7 @@ def proto_args(parser, parents):
6
dgroup = nfs_parser.add_argument_group("NFS Mapping/Enumeration", "Options for Mapping/Enumerating NFS")
7
dgroup.add_argument("--shares", action="store_true", help="List NFS shares")
8
dgroup.add_argument("--enum-shares", nargs="?", type=int, const=3, help="Authenticate and enumerate exposed shares recursively (default depth: %(const)s)")
9
+ dgroup.add_argument("--get-file", nargs=2, metavar="FILE", help="Download remote NFS file.\n--get-file remote_file local_file")
10
+ dgroup.add_argument("--put-file", nargs=2, metavar="FILE", help="Upload remote NFS file.\n--put-file local_file remote_file")
11
12
return parser
0 commit comments