Common: Rename StolenCredentialsEvent to CredentialsStolenEvent

This commit is contained in:
Ilija Lazoroski 2022-08-12 09:39:04 +02:00
parent f06d53368a
commit 743d40abab
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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