From 1a4a08e3bd60fad15d474da4e0c7e37dc7bf2a79 Mon Sep 17 00:00:00 2001 From: daniel goldberg Date: Mon, 29 Aug 2016 16:00:51 +0300 Subject: [PATCH] Add HTTPFinger to conf file and PEP8 fix --- chaos_monkey/config.py | 4 ++-- chaos_monkey/example.conf | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/chaos_monkey/config.py b/chaos_monkey/config.py index 936b3b308..93f38b5a7 100644 --- a/chaos_monkey/config.py +++ b/chaos_monkey/config.py @@ -2,7 +2,7 @@ import os import sys from network.range import FixedRange, RelativeRange, ClassCRange from exploit import WmiExploiter, Ms08_067_Exploiter, SmbExploiter, RdpExploiter, SSHExploiter, ShellShockExploiter -from network import TcpScanner, PingScanner, SMBFinger, SSHFinger,HTTPFinger +from network import TcpScanner, PingScanner, SMBFinger, SSHFinger, HTTPFinger from abc import ABCMeta import uuid import types @@ -135,7 +135,7 @@ class Configuration(object): scanner_class = TcpScanner finger_classes = [SMBFinger, SSHFinger, PingScanner, HTTPFinger] exploiter_classes = [SmbExploiter, WmiExploiter, RdpExploiter, Ms08_067_Exploiter, # Windows exploits - SSHExploiter, ShellShockExploiter # Linux + SSHExploiter, ShellShockExploiter # Linux ] # how many victims to look for in a single scan iteration diff --git a/chaos_monkey/example.conf b/chaos_monkey/example.conf index 95f460c71..99e15f709 100644 --- a/chaos_monkey/example.conf +++ b/chaos_monkey/example.conf @@ -52,6 +52,7 @@ "finger_classes": [ "SSHFinger", "PingScanner", + "HTTPFinger" "SMBFinger" ], "max_iterations": 3,