forked from p15670423/monkey
Project: Add common.tags and HostExploiter publish functions to Vulture
This commit is contained in:
parent
2ece91b9df
commit
63f869d296
|
@ -9,7 +9,17 @@ from common.agent_configuration.agent_sub_configurations import (
|
||||||
)
|
)
|
||||||
from common.agent_events import ExploitationEvent, PingScanEvent, PropagationEvent, TCPScanEvent
|
from common.agent_events import ExploitationEvent, PingScanEvent, PropagationEvent, TCPScanEvent
|
||||||
from common.credentials import Credentials, LMHash, NTHash
|
from common.credentials import Credentials, LMHash, NTHash
|
||||||
|
from common.tags import (
|
||||||
|
T1021_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1105_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1110_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1203_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1210_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1222_ATTACK_TECHNIQUE_TAG,
|
||||||
|
T1570_ATTACK_TECHNIQUE_TAG,
|
||||||
|
)
|
||||||
from common.types import NetworkPort
|
from common.types import NetworkPort
|
||||||
|
from infection_monkey.exploit.HostExploiter import HostExploiter
|
||||||
from infection_monkey.exploit.log4shell_utils.ldap_server import LDAPServerFactory
|
from infection_monkey.exploit.log4shell_utils.ldap_server import LDAPServerFactory
|
||||||
from monkey_island.cc.event_queue import IslandEventTopic, PyPubSubIslandEventQueue
|
from monkey_island.cc.event_queue import IslandEventTopic, PyPubSubIslandEventQueue
|
||||||
from monkey_island.cc.models import Report
|
from monkey_island.cc.models import Report
|
||||||
|
@ -318,6 +328,16 @@ TCPScanEvent.port_status
|
||||||
# TODO: Remove once #2269 is close
|
# TODO: Remove once #2269 is close
|
||||||
PropagationEvent
|
PropagationEvent
|
||||||
ExploitationEvent
|
ExploitationEvent
|
||||||
|
T1021_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1105_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1110_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1203_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1210_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1222_ATTACK_TECHNIQUE_TAG
|
||||||
|
T1570_ATTACK_TECHNIQUE_TAG
|
||||||
|
HostExploiter._publish_propagation_event
|
||||||
|
HostExploiter._publish_exploitation_event
|
||||||
|
|
||||||
|
|
||||||
# pydantic base models
|
# pydantic base models
|
||||||
underscore_attrs_are_private
|
underscore_attrs_are_private
|
||||||
|
|
Loading…
Reference in New Issue