From 4eadf3b5a07315f8df97bafdfd24ed05eff134bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20CHALOT?= Date: Sun, 21 Sep 2025 10:33:08 +0200 Subject: [PATCH] Overall review --- nxc/modules/schtask_as.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxc/modules/schtask_as.py b/nxc/modules/schtask_as.py index eb1d939e..105509ac 100644 --- a/nxc/modules/schtask_as.py +++ b/nxc/modules/schtask_as.py @@ -205,7 +205,7 @@ class NXCModule: if self.binary_to_upload: try: connection.conn.deleteFile(self.share, f"{self.output_file_location}\\{self.binary_to_upload_name}") - self.logger.success(f"Binary {self.output_file_location}{self.binary_to_upload_name} successfully deleted") + self.logger.success(f"Binary {self.output_file_location}\\{self.binary_to_upload_name} successfully deleted") except Exception as e: self.logger.fail(f"Error deleting {self.output_file_location}{self.binary_to_upload_name} on {self.share}: {e}")