Island: Rename reporting/stolen_credentials.py to
reporting/format_credentials.py
This commit is contained in:
parent
5ebf0ed8f6
commit
1683265868
|
@ -1,7 +1,7 @@
|
||||||
from common.utils.attack_utils import ScanStatus
|
from common.utils.attack_utils import ScanStatus
|
||||||
from monkey_island.cc.repository import ICredentialsRepository
|
from monkey_island.cc.repository import ICredentialsRepository
|
||||||
from monkey_island.cc.services.attack.technique_reports import AttackTechnique
|
from monkey_island.cc.services.attack.technique_reports import AttackTechnique
|
||||||
from monkey_island.cc.services.reporting.stolen_credentials import format_creds_for_reporting
|
from monkey_island.cc.services.reporting import format_creds_for_reporting
|
||||||
|
|
||||||
|
|
||||||
class T1003(AttackTechnique):
|
class T1003(AttackTechnique):
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
from .format_credentials import format_creds_for_reporting
|
|
@ -7,7 +7,7 @@ from common.credentials import (
|
||||||
SSHKeypair,
|
SSHKeypair,
|
||||||
Username,
|
Username,
|
||||||
)
|
)
|
||||||
from monkey_island.cc.services.reporting.stolen_credentials import format_creds_for_reporting
|
from monkey_island.cc.services.reporting import format_creds_for_reporting
|
||||||
|
|
||||||
monkey_hostname = "fake_hostname"
|
monkey_hostname = "fake_hostname"
|
||||||
fake_monkey_guid = "abc"
|
fake_monkey_guid = "abc"
|
Loading…
Reference in New Issue