forked from p15670423/monkey
59 lines
2.0 KiB
Python
59 lines
2.0 KiB
Python
import logging
|
|
import subprocess
|
|
import sys
|
|
import shutil
|
|
|
|
import time
|
|
|
|
import monkeyfs
|
|
from config import WormConfiguration
|
|
from control import ControlClient
|
|
from exploit.tools import build_monkey_commandline_explicitly
|
|
from model import MONKEY_CMDLINE_WINDOWS
|
|
from utils import is_windows_os, is_64bit_windows_os, is_64bit_python
|
|
|
|
__author__ = 'itay.mizeretz'
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
if "win32" == sys.platform:
|
|
from win32process import DETACHED_PROCESS
|
|
else:
|
|
DETACHED_PROCESS = 0
|
|
|
|
|
|
class WindowsUpgrader(object):
|
|
__UPGRADE_WAIT_TIME__ = 3
|
|
|
|
@staticmethod
|
|
def should_upgrade():
|
|
return is_windows_os() and is_64bit_windows_os() \
|
|
and not is_64bit_python()
|
|
|
|
@staticmethod
|
|
def upgrade(opts):
|
|
try:
|
|
monkey_64_path = ControlClient.download_monkey_exe_by_os(True, False)
|
|
with monkeyfs.open(monkey_64_path, "rb") as downloaded_monkey_file:
|
|
with open(WormConfiguration.dropper_target_path_win_64, 'wb') as written_monkey_file:
|
|
shutil.copyfileobj(downloaded_monkey_file, written_monkey_file)
|
|
except (IOError, AttributeError):
|
|
LOG.error("Failed to download the Monkey to the target path.")
|
|
return
|
|
|
|
monkey_options = build_monkey_commandline_explicitly(opts.parent, opts.tunnel, opts.server, opts.depth)
|
|
|
|
monkey_cmdline = MONKEY_CMDLINE_WINDOWS % {
|
|
'monkey_path': WormConfiguration.dropper_target_path_win_64} + monkey_options
|
|
|
|
monkey_process = subprocess.Popen(monkey_cmdline, shell=True,
|
|
stdin=None, stdout=None, stderr=None,
|
|
close_fds=True, creationflags=DETACHED_PROCESS)
|
|
|
|
LOG.info("Executed 64bit monkey process (PID=%d) with command line: %s",
|
|
monkey_process.pid, monkey_cmdline)
|
|
|
|
time.sleep(WindowsUpgrader.__UPGRADE_WAIT_TIME__)
|
|
if monkey_process.poll() is not None:
|
|
LOG.error("Seems like monkey died too soon")
|