forked from p15670423/monkey
Common: Rename StolenCredentialsEvent to CredentialsStolenEvent
This commit is contained in:
parent
f06d53368a
commit
743d40abab
|
@ -1,2 +1,2 @@
|
||||||
from .abstract_event import AbstractEvent
|
from .abstract_event import AbstractEvent
|
||||||
from .stolen_credentials_event import StolenCredentialsEvent
|
from .credentials_stolen_events import CredentialsStolenEvent
|
||||||
|
|
|
@ -7,9 +7,9 @@ from . import AbstractEvent
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class StolenCredentialsEvent(AbstractEvent):
|
class CredentialsStolenEvent(AbstractEvent):
|
||||||
"""
|
"""
|
||||||
An event that was initiated/observed when an agent collects credentials from the victim.
|
An event that occurs when an agent collects credentials from the victim
|
||||||
|
|
||||||
Attributes:
|
Attributes:
|
||||||
:param stolen_credentials: The credentials which were stolen by the source agent
|
:param stolen_credentials: The credentials which were stolen by the source agent
|
|
@ -215,7 +215,7 @@ AbstractEvent
|
||||||
tags
|
tags
|
||||||
|
|
||||||
# TODO DELETE IN #2176
|
# TODO DELETE IN #2176
|
||||||
StolenCredentialsEvent
|
CredentialsStolenEvent
|
||||||
|
|
||||||
|
|
||||||
# TODO DELETE AFTER RESOURCE REFACTORING
|
# TODO DELETE AFTER RESOURCE REFACTORING
|
||||||
|
|
Loading…
Reference in New Issue