forked from p15670423/monkey
WIP trying to get the BB test to work
This commit is contained in:
parent
509dd09c84
commit
20be94d606
|
@ -0,0 +1,8 @@
|
||||||
|
from abc import ABCMeta, abstractmethod
|
||||||
|
|
||||||
|
|
||||||
|
class Analyzer(object, metaclass=ABCMeta):
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def analyze_test_results(self):
|
||||||
|
raise NotImplementedError()
|
|
@ -1,7 +1,8 @@
|
||||||
|
from envs.monkey_zoo.blackbox.analyzers.analyzer import Analyzer
|
||||||
from envs.monkey_zoo.blackbox.analyzers.analyzer_log import AnalyzerLog
|
from envs.monkey_zoo.blackbox.analyzers.analyzer_log import AnalyzerLog
|
||||||
|
|
||||||
|
|
||||||
class CommunicationAnalyzer(object):
|
class CommunicationAnalyzer(Analyzer):
|
||||||
|
|
||||||
def __init__(self, island_client, machine_ips):
|
def __init__(self, island_client, machine_ips):
|
||||||
self.island_client = island_client
|
self.island_client = island_client
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
|
from envs.monkey_zoo.blackbox.analyzers.analyzer import Analyzer
|
||||||
|
from envs.monkey_zoo.blackbox.analyzers.analyzer_log import AnalyzerLog
|
||||||
|
from envs.monkey_zoo.blackbox.island_client.monkey_island_client import MonkeyIslandClient
|
||||||
|
|
||||||
|
MAX_ALLOWED_SINGLE_PAGE_TIME = timedelta(seconds=1)
|
||||||
|
MAX_ALLOWED_TOTAL_TIME = timedelta(seconds=3)
|
||||||
|
|
||||||
|
|
||||||
|
class PerformanceAnalyzer(Analyzer):
|
||||||
|
|
||||||
|
def __init__(self, island_client: MonkeyIslandClient):
|
||||||
|
self.island_client = island_client
|
||||||
|
self.log = AnalyzerLog(self.__class__.__name__)
|
||||||
|
|
||||||
|
def analyze_test_results(self) -> bool:
|
||||||
|
self.log.clear()
|
||||||
|
total_time = timedelta()
|
||||||
|
|
||||||
|
self.island_client.clear_caches()
|
||||||
|
timings = self.island_client.time_all_report_pages()
|
||||||
|
|
||||||
|
single_page_time_less_then_max = True
|
||||||
|
|
||||||
|
for page, elapsed in timings:
|
||||||
|
self.log.add_entry(f"page {page} took {str(elapsed)}")
|
||||||
|
total_time += elapsed
|
||||||
|
if elapsed > MAX_ALLOWED_SINGLE_PAGE_TIME:
|
||||||
|
single_page_time_less_then_max = False
|
||||||
|
|
||||||
|
total_time_less_then_max = total_time < MAX_ALLOWED_TOTAL_TIME
|
||||||
|
|
||||||
|
self.log.add_entry(f"total time is {str(total_time)}")
|
||||||
|
|
||||||
|
return total_time_less_then_max and single_page_time_less_then_max
|
|
@ -92,6 +92,27 @@ class MonkeyIslandClient(object):
|
||||||
:raises: If error (by error code), raises the error
|
:raises: If error (by error code), raises the error
|
||||||
:return: The response
|
:return: The response
|
||||||
"""
|
"""
|
||||||
response = self.requests.delete("api/test/clear_caches")
|
response = self.requests.get("api/test/clear_caches")
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
def time_all_report_pages(self):
|
||||||
|
REPORT_URLS = [
|
||||||
|
"api/report/security",
|
||||||
|
"api/attack/report",
|
||||||
|
"api/report/zero_trust/findings",
|
||||||
|
"api/report/zero_trust/principles",
|
||||||
|
"api/report/zero_trust/pillars"
|
||||||
|
]
|
||||||
|
|
||||||
|
report_resource_to_response_time = {}
|
||||||
|
|
||||||
|
for url in REPORT_URLS:
|
||||||
|
response = self.requests.get(url)
|
||||||
|
if response:
|
||||||
|
report_resource_to_response_time[url] = response.elapsed
|
||||||
|
else:
|
||||||
|
LOGGER.error(f"Trying to get {url} but got unexpected {str(response)}")
|
||||||
|
response.raise_for_status()
|
||||||
|
|
||||||
|
return report_resource_to_response_time
|
||||||
|
|
|
@ -46,17 +46,8 @@
|
||||||
"exploits": {
|
"exploits": {
|
||||||
"general": {
|
"general": {
|
||||||
"exploiter_classes": [
|
"exploiter_classes": [
|
||||||
"SmbExploiter",
|
"Struts2Exploiter"
|
||||||
"WmiExploiter",
|
],
|
||||||
"SSHExploiter",
|
|
||||||
"ShellShockExploiter",
|
|
||||||
"SambaCryExploiter",
|
|
||||||
"ElasticGroovyExploiter",
|
|
||||||
"Struts2Exploiter",
|
|
||||||
"WebLogicExploiter",
|
|
||||||
"HadoopExploiter",
|
|
||||||
"VSFTPDExploiter"
|
|
||||||
],
|
|
||||||
"skip_exploit_if_file_exist": false
|
"skip_exploit_if_file_exist": false
|
||||||
},
|
},
|
||||||
"ms08_067": {
|
"ms08_067": {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import logging
|
||||||
import pytest
|
import pytest
|
||||||
from time import sleep
|
from time import sleep
|
||||||
|
|
||||||
|
from envs.monkey_zoo.blackbox.analyzers.performance_analyzer import PerformanceAnalyzer
|
||||||
from envs.monkey_zoo.blackbox.island_client.monkey_island_client import MonkeyIslandClient
|
from envs.monkey_zoo.blackbox.island_client.monkey_island_client import MonkeyIslandClient
|
||||||
from envs.monkey_zoo.blackbox.analyzers.communication_analyzer import CommunicationAnalyzer
|
from envs.monkey_zoo.blackbox.analyzers.communication_analyzer import CommunicationAnalyzer
|
||||||
from envs.monkey_zoo.blackbox.island_client.island_config_parser import IslandConfigParser
|
from envs.monkey_zoo.blackbox.island_client.island_config_parser import IslandConfigParser
|
||||||
|
@ -65,6 +66,21 @@ class TestMonkeyBlackbox(object):
|
||||||
timeout_in_seconds,
|
timeout_in_seconds,
|
||||||
log_handler).run()
|
log_handler).run()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def run_performance_test(island_client, conf_filename, test_name, timeout_in_seconds=DEFAULT_TIMEOUT_SECONDS):
|
||||||
|
config_parser = IslandConfigParser(conf_filename)
|
||||||
|
analyzers = [
|
||||||
|
CommunicationAnalyzer(island_client, config_parser.get_ips_of_targets()),
|
||||||
|
PerformanceAnalyzer(island_client),
|
||||||
|
]
|
||||||
|
log_handler = TestLogsHandler(test_name, island_client, TestMonkeyBlackbox.get_log_dir_path())
|
||||||
|
BasicTest(test_name,
|
||||||
|
island_client,
|
||||||
|
config_parser,
|
||||||
|
analyzers,
|
||||||
|
timeout_in_seconds,
|
||||||
|
log_handler).run()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_log_dir_path():
|
def get_log_dir_path():
|
||||||
return os.path.abspath(LOG_DIR_PATH)
|
return os.path.abspath(LOG_DIR_PATH)
|
||||||
|
@ -108,3 +124,6 @@ class TestMonkeyBlackbox(object):
|
||||||
|
|
||||||
def test_wmi_pth(self, island_client):
|
def test_wmi_pth(self, island_client):
|
||||||
TestMonkeyBlackbox.run_basic_test(island_client, "WMI_PTH.conf", "WMI_PTH")
|
TestMonkeyBlackbox.run_basic_test(island_client, "WMI_PTH.conf", "WMI_PTH")
|
||||||
|
|
||||||
|
def test_performance(self, island_client):
|
||||||
|
TestMonkeyBlackbox.run_performance_test(island_client, "STRUTS2.conf", "Report_timing")
|
||||||
|
|
|
@ -18,7 +18,7 @@ class ClearCaches(flask_restful.Resource):
|
||||||
:note: DO NOT CALL THIS IN PRODUCTION CODE as this will slow down the user experience.
|
:note: DO NOT CALL THIS IN PRODUCTION CODE as this will slow down the user experience.
|
||||||
"""
|
"""
|
||||||
@jwt_required()
|
@jwt_required()
|
||||||
def delete(self, **kw):
|
def get(self, **kw):
|
||||||
try:
|
try:
|
||||||
logger.warning("Trying to clear caches! Make sure this is not production")
|
logger.warning("Trying to clear caches! Make sure this is not production")
|
||||||
ReportService.delete_saved_report_if_exists()
|
ReportService.delete_saved_report_if_exists()
|
||||||
|
|
Loading…
Reference in New Issue