forked from p15670423/monkey
144 lines
5.9 KiB
Python
144 lines
5.9 KiB
Python
import os
|
|
import sys
|
|
import time
|
|
import ctypes
|
|
import shutil
|
|
import pprint
|
|
import logging
|
|
import subprocess
|
|
import argparse
|
|
from ctypes import c_char_p
|
|
from model import MONKEY_CMDLINE_WINDOWS, MONKEY_CMDLINE_LINUX, GENERAL_CMDLINE_LINUX
|
|
from config import WormConfiguration
|
|
from system_info import SystemInfoCollector, OperatingSystem
|
|
|
|
if "win32" == sys.platform:
|
|
from win32process import DETACHED_PROCESS
|
|
else:
|
|
DETACHED_PROCESS = 0
|
|
|
|
__author__ = 'itamar'
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
MOVEFILE_DELAY_UNTIL_REBOOT = 4
|
|
|
|
|
|
class MonkeyDrops(object):
|
|
def __init__(self, args):
|
|
arg_parser = argparse.ArgumentParser()
|
|
arg_parser.add_argument('-p', '--parent')
|
|
arg_parser.add_argument('-t', '--tunnel')
|
|
arg_parser.add_argument('-s', '--server')
|
|
arg_parser.add_argument('-d', '--depth')
|
|
arg_parser.add_argument('-l', '--location')
|
|
self.monkey_args = args[1:]
|
|
self.opts, _ = arg_parser.parse_known_args(args)
|
|
|
|
self._config = {'source_path': os.path.abspath(sys.argv[0]),
|
|
'destination_path': self.opts.location}
|
|
|
|
def initialize(self):
|
|
LOG.debug("Dropper is running with config:\n%s", pprint.pformat(self._config))
|
|
|
|
def start(self):
|
|
|
|
if self._config['destination_path'] is None:
|
|
# TODO: log or something.
|
|
return
|
|
|
|
# we copy/move only in case path is different
|
|
file_moved = (self._config['source_path'].lower() == self._config['destination_path'].lower())
|
|
|
|
# first try to move the file
|
|
if not file_moved and WormConfiguration.dropper_try_move_first:
|
|
try:
|
|
shutil.move(self._config['source_path'],
|
|
self._config['destination_path'])
|
|
|
|
LOG.info("Moved source file '%s' into '%s'",
|
|
self._config['source_path'], self._config['destination_path'])
|
|
|
|
file_moved = True
|
|
except (WindowsError, IOError, OSError), exc:
|
|
LOG.debug("Error moving source file '%s' into '%s': %s",
|
|
self._config['source_path'], self._config['destination_path'],
|
|
exc)
|
|
|
|
# if file still need to change path, copy it
|
|
if not file_moved:
|
|
try:
|
|
shutil.copy(self._config['source_path'],
|
|
self._config['destination_path'])
|
|
|
|
LOG.info("Copied source file '%s' into '%s'",
|
|
self._config['source_path'], self._config['destination_path'])
|
|
except (WindowsError, IOError, OSError), exc:
|
|
LOG.error("Error copying source file '%s' into '%s': %s",
|
|
self._config['source_path'], self._config['destination_path'],
|
|
exc)
|
|
|
|
return False
|
|
|
|
if WormConfiguration.dropper_set_date:
|
|
try:
|
|
ref_stat = os.stat(WormConfiguration.dropper_date_reference_path)
|
|
except:
|
|
LOG.warn("Cannot set reference date using '%s', file not found",
|
|
WormConfiguration.dropper_date_reference_path)
|
|
else:
|
|
try:
|
|
os.utime(self._config['destination_path'],
|
|
(ref_stat.st_atime, ref_stat.st_mtime))
|
|
except:
|
|
LOG.warn("Cannot set reference date to destination file")
|
|
|
|
monkey_options = ""
|
|
if self.opts.parent:
|
|
monkey_options += " -p %s" % self.opts.parent
|
|
if self.opts.tunnel:
|
|
monkey_options += " -t %s" % self.opts.tunnel
|
|
if self.opts.server:
|
|
monkey_options += " -s %s" % self.opts.server
|
|
if self.opts.depth:
|
|
monkey_options += " -d %s" % self.opts.depth
|
|
|
|
if OperatingSystem.Windows == SystemInfoCollector.get_os():
|
|
monkey_cmdline = MONKEY_CMDLINE_WINDOWS % {'monkey_path': self._config['destination_path']} + monkey_options
|
|
else:
|
|
dest_path = self._config['destination_path']
|
|
monkey_cmdline = MONKEY_CMDLINE_LINUX % {'monkey_filename': dest_path.split("/")[-1]} + monkey_options
|
|
monkey_cmdline = GENERAL_CMDLINE_LINUX % {'monkey_directory': dest_path[0:dest_path.rfind("/")],
|
|
'monkey_commandline': monkey_cmdline}
|
|
|
|
monkey_process = subprocess.Popen(monkey_cmdline, shell=True,
|
|
stdin=None, stdout=None, stderr=None,
|
|
close_fds=True, creationflags=DETACHED_PROCESS)
|
|
|
|
LOG.info("Executed monkey process (PID=%d) with command line: %s",
|
|
monkey_process.pid, monkey_cmdline)
|
|
|
|
time.sleep(3)
|
|
if monkey_process.poll() is not None:
|
|
LOG.warn("Seems like monkey died too soon")
|
|
|
|
def cleanup(self):
|
|
if (self._config['source_path'].lower() != self._config['destination_path'].lower()) and \
|
|
os.path.exists(self._config['source_path']) and \
|
|
WormConfiguration.dropper_try_move_first:
|
|
|
|
# try removing the file first
|
|
try:
|
|
os.remove(self._config['source_path'])
|
|
except Exception, exc:
|
|
LOG.debug("Error removing source file '%s': %s", self._config['source_path'], exc)
|
|
|
|
# mark the file for removal on next boot
|
|
dropper_source_path_ctypes = c_char_p(self._config['source_path'])
|
|
if 0 == ctypes.windll.kernel32.MoveFileExA( dropper_source_path_ctypes, None,
|
|
MOVEFILE_DELAY_UNTIL_REBOOT):
|
|
LOG.debug("Error marking source file '%s' for deletion on next boot (error %d)",
|
|
self._config['source_path'], ctypes.windll.kernel32.GetLastError())
|
|
else:
|
|
LOG.debug("Dropper source file '%s' is marked for deletion on next boot",
|
|
self._config['source_path']) |