forked from p15670423/monkey
Island: sort telem processing functions alphabetically
This commit is contained in:
parent
a1073bdb34
commit
ddb227b181
|
@ -13,16 +13,16 @@ from monkey_island.cc.services.telemetry.processing.tunnel import process_tunnel
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
TELEMETRY_CATEGORY_TO_PROCESSING_FUNC = {
|
TELEMETRY_CATEGORY_TO_PROCESSING_FUNC = {
|
||||||
TelemCategoryEnum.CREDENTIALS: parse_credentials,
|
|
||||||
TelemCategoryEnum.TUNNEL: process_tunnel_telemetry,
|
|
||||||
TelemCategoryEnum.STATE: process_state_telemetry,
|
|
||||||
TelemCategoryEnum.EXPLOIT: process_exploit_telemetry,
|
|
||||||
TelemCategoryEnum.SCAN: process_scan_telemetry,
|
|
||||||
TelemCategoryEnum.POST_BREACH: process_post_breach_telemetry,
|
|
||||||
TelemCategoryEnum.AWS_INFO: process_aws_telemetry,
|
|
||||||
# `lambda *args, **kwargs: None` is a no-op.
|
# `lambda *args, **kwargs: None` is a no-op.
|
||||||
TelemCategoryEnum.TRACE: lambda *args, **kwargs: None,
|
|
||||||
TelemCategoryEnum.ATTACK: lambda *args, **kwargs: None,
|
TelemCategoryEnum.ATTACK: lambda *args, **kwargs: None,
|
||||||
|
TelemCategoryEnum.AWS_INFO: process_aws_telemetry,
|
||||||
|
TelemCategoryEnum.CREDENTIALS: parse_credentials,
|
||||||
|
TelemCategoryEnum.EXPLOIT: process_exploit_telemetry,
|
||||||
|
TelemCategoryEnum.POST_BREACH: process_post_breach_telemetry,
|
||||||
|
TelemCategoryEnum.SCAN: process_scan_telemetry,
|
||||||
|
TelemCategoryEnum.STATE: process_state_telemetry,
|
||||||
|
TelemCategoryEnum.TRACE: lambda *args, **kwargs: None,
|
||||||
|
TelemCategoryEnum.TUNNEL: process_tunnel_telemetry,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue