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