forked from p15670423/monkey
Island: Rename credential collector const
This commit is contained in:
parent
0ad5554dfa
commit
1cef7874d4
|
@ -1,7 +1,7 @@
|
||||||
from monkey_island.cc.services.config_schema.basic import BASIC
|
from monkey_island.cc.services.config_schema.basic import BASIC
|
||||||
from monkey_island.cc.services.config_schema.basic_network import BASIC_NETWORK
|
from monkey_island.cc.services.config_schema.basic_network import BASIC_NETWORK
|
||||||
from monkey_island.cc.services.config_schema.definitions.credential_collector_classes import (
|
from monkey_island.cc.services.config_schema.definitions.credential_collector_classes import (
|
||||||
CREDENTIAL_COLLECTOR_CLASSES,
|
CREDENTIAL_COLLECTORS,
|
||||||
)
|
)
|
||||||
from monkey_island.cc.services.config_schema.definitions.exploiter_classes import EXPLOITER_CLASSES
|
from monkey_island.cc.services.config_schema.definitions.exploiter_classes import EXPLOITER_CLASSES
|
||||||
from monkey_island.cc.services.config_schema.definitions.finger_classes import FINGER_CLASSES
|
from monkey_island.cc.services.config_schema.definitions.finger_classes import FINGER_CLASSES
|
||||||
|
@ -20,7 +20,7 @@ SCHEMA = {
|
||||||
# users will not accidentally chose unsafe options
|
# users will not accidentally chose unsafe options
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"exploiter_classes": EXPLOITER_CLASSES,
|
"exploiter_classes": EXPLOITER_CLASSES,
|
||||||
"credential_collectors": CREDENTIAL_COLLECTOR_CLASSES,
|
"credential_collectors": CREDENTIAL_COLLECTORS,
|
||||||
"post_breach_actions": POST_BREACH_ACTIONS,
|
"post_breach_actions": POST_BREACH_ACTIONS,
|
||||||
"finger_classes": FINGER_CLASSES,
|
"finger_classes": FINGER_CLASSES,
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from common.common_consts.credential_collector_names import MIMIKATZ_COLLECTOR, SSH_COLLECTOR
|
from common.common_consts.credential_collector_names import MIMIKATZ_COLLECTOR, SSH_COLLECTOR
|
||||||
|
|
||||||
CREDENTIAL_COLLECTOR_CLASSES = {
|
CREDENTIAL_COLLECTORS = {
|
||||||
"title": "Credential Collectors",
|
"title": "Credential Collectors",
|
||||||
"description": "Click on a credential collector to find out what it collects.",
|
"description": "Click on a credential collector to find out what it collects.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
Loading…
Reference in New Issue