Skip to content

Commit 19a51f5

Browse files
committed
Mute aardwolf logger and increase cmd-timeout to 5
1 parent 60dea2f commit 19a51f5

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

nxc/logger.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def __init__(self, extra=None, merge_extra=False):
101101
logging.getLogger("minidump").disabled = True
102102
logging.getLogger("lsassy").disabled = True
103103
logging.getLogger("dploot").disabled = True
104+
logging.getLogger("aardwolf").disabled = True
104105
logging.getLogger("neo4j").setLevel(logging.ERROR)
105106

106107
def format(self, msg, *args, **kwargs):

nxc/protocols/rdp/proto_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def proto_args(parser, parents):
2020
cgroup = rdp_parser.add_argument_group("Command Execution", "Options for executing commands")
2121
cgroup.add_argument("-x", metavar="COMMAND", dest="execute", help="execute the specified command")
2222
cgroup.add_argument("-X", metavar="PS_COMMAND", dest="ps_execute", help="execute the specified PowerShell command")
23-
cgroup.add_argument("--cmd-delay", type=int, default=3, help="Sleep time before executing command")
23+
cgroup.add_argument("--cmd-delay", type=int, default=5, help="Sleep time before executing command")
2424
cgroup.add_argument("--clipboard-delay", type=int, default=30, help="Maximum time to wait for clipboard initialization (seconds)")
2525
cgroup.add_argument("--no-output", action="store_true", help="do not retrieve command output")
2626

0 commit comments

Comments
 (0)