forked from p15670423/monkey
Agent: Refactor InfectionMonkey._self_delete()
This commit is contained in:
parent
2568a46790
commit
c2e01eaea7
|
@ -3,6 +3,7 @@ import logging
|
|||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
from pathlib import Path
|
||||
from typing import List
|
||||
|
||||
import infection_monkey.tunnel as tunnel
|
||||
|
@ -401,14 +402,32 @@ class InfectionMonkey:
|
|||
|
||||
@staticmethod
|
||||
def _self_delete() -> bool:
|
||||
InfectionMonkey._remove_monkey_dir()
|
||||
|
||||
if "python" in Path(sys.executable).name:
|
||||
return False
|
||||
|
||||
try:
|
||||
if "win32" == sys.platform:
|
||||
InfectionMonkey._self_delete_windows()
|
||||
else:
|
||||
InfectionMonkey._self_delete_linux()
|
||||
|
||||
T1107Telem(ScanStatus.USED, sys.executable).send()
|
||||
return True
|
||||
except Exception as exc:
|
||||
logger.error("Exception in self delete: %s", exc)
|
||||
T1107Telem(ScanStatus.SCANNED, sys.executable).send()
|
||||
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def _remove_monkey_dir():
|
||||
status = ScanStatus.USED if remove_monkey_dir() else ScanStatus.SCANNED
|
||||
T1107Telem(status, get_monkey_dir_path()).send()
|
||||
deleted = False
|
||||
|
||||
if -1 == sys.executable.find("python"):
|
||||
try:
|
||||
status = None
|
||||
if "win32" == sys.platform:
|
||||
@staticmethod
|
||||
def _self_delete_windows():
|
||||
from subprocess import CREATE_NEW_CONSOLE, STARTF_USESHOWWINDOW, SW_HIDE
|
||||
|
||||
startupinfo = subprocess.STARTUPINFO()
|
||||
|
@ -422,14 +441,7 @@ class InfectionMonkey:
|
|||
close_fds=True,
|
||||
startupinfo=startupinfo,
|
||||
)
|
||||
deleted = True
|
||||
else:
|
||||
|
||||
@staticmethod
|
||||
def _self_delete_linux():
|
||||
os.remove(sys.executable)
|
||||
status = ScanStatus.USED
|
||||
deleted = True
|
||||
except Exception as exc:
|
||||
logger.error("Exception in self delete: %s", exc)
|
||||
status = ScanStatus.SCANNED
|
||||
if status:
|
||||
T1107Telem(status, sys.executable).send()
|
||||
return deleted
|
||||
|
|
Loading…
Reference in New Issue