Small fixes after rebasing
This commit is contained in:
parent
a91e65e49a
commit
6b75092823
|
@ -39,7 +39,7 @@ TECHNIQUES = {'T1210': T1210.T1210,
|
|||
'T1064': T1064.T1064,
|
||||
'T1136': T1136.T1136,
|
||||
'T1156': T1156.T1156,
|
||||
'T1504': T1504.T1504
|
||||
'T1504': T1504.T1504,
|
||||
'T1158': T1158.T1158
|
||||
}
|
||||
|
||||
|
|
|
@ -99,6 +99,7 @@ SCHEMA = {
|
|||
"description": "Adversaries may gain persistence and elevate privileges "
|
||||
"in certain situations by abusing PowerShell profiles which "
|
||||
"are scripts that run when PowerShell starts."
|
||||
},
|
||||
"T1158": {
|
||||
"title": "Hidden Files and Directories",
|
||||
"type": "bool",
|
||||
|
|
|
@ -167,6 +167,10 @@ SCHEMA = {
|
|||
],
|
||||
"title": "Modify shell startup files",
|
||||
"attack_techniques": ["T1156", "T1504"]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"HiddenFiles"
|
||||
],
|
||||
"title": "Hidden files and directories",
|
||||
|
@ -392,7 +396,7 @@ SCHEMA = {
|
|||
"default": [
|
||||
"BackdoorUser",
|
||||
"CommunicateAsNewUser",
|
||||
"ModifyShellStartupFiles"
|
||||
"ModifyShellStartupFiles",
|
||||
"HiddenFiles"
|
||||
],
|
||||
"description": "List of actions the Monkey will run post breach"
|
||||
|
|
Loading…
Reference in New Issue