forked from p34709852/monkey
Agent: Move timestamp closer to ssh.exec_command()
This commit is contained in:
parent
52380a2513
commit
c980bfd915
|
@ -248,11 +248,11 @@ class SSHExploiter(HostExploiter):
|
||||||
if status == ScanStatus.SCANNED:
|
if status == ScanStatus.SCANNED:
|
||||||
raise FailedExploitationError(self.exploit_result.error_message)
|
raise FailedExploitationError(self.exploit_result.error_message)
|
||||||
|
|
||||||
timestamp = time()
|
|
||||||
try:
|
try:
|
||||||
cmdline = f"{monkey_path_on_victim} {MONKEY_ARG}"
|
cmdline = f"{monkey_path_on_victim} {MONKEY_ARG}"
|
||||||
cmdline += build_monkey_commandline(self.servers, self.current_depth + 1)
|
cmdline += build_monkey_commandline(self.servers, self.current_depth + 1)
|
||||||
cmdline += " > /dev/null 2>&1 &"
|
cmdline += " > /dev/null 2>&1 &"
|
||||||
|
timestamp = time()
|
||||||
ssh.exec_command(cmdline, timeout=SSH_EXEC_TIMEOUT)
|
ssh.exec_command(cmdline, timeout=SSH_EXEC_TIMEOUT)
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
|
|
Loading…
Reference in New Issue