-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathAtomicCanary.ps1
165 lines (155 loc) · 5.96 KB
/
AtomicCanary.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
### AtomicCanary - beta ###
# ASCII
$ASCII = @("
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ @@@@@
@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* &@@@
@@@% @@@@@@& *@@@@@@@@@@@@@@@@@@@@@@ ,@@@
@@@% @@@# @@@@@@@@@@@@@@@@@@@@ ,@@@
@@@% @@@@@* #@@@@@@@@@@@@@@@@@@ ,@@@
@@@% @@@@@@, @@@@@@@@@@@@@@@@ ,@@@
@@@% @@@@@@# @@@@@@@@@@@@@@ ,@@@
@@@% @@@@@@@ @@@@@@@@@@@@@ ,@@@
@@@% @@@@@@@, &@@@@@@@@@@@ ,@@@
@@@% @@@@@@@@ @@@@@@@@@@@ ,@@@
@@@% @@@@@@@@@& @@@@@@@@@@ ,@@@
@@@% @@@@@@@@@@@@ @@@@@@% ,@@@
@@@% @@@@@@@@@@@@@ @@@@@ ,@@@
@@@% @@@@@@@@@@@ @@@@* .@@@@@@ ,@@@
@@@% @@@@@@@@@( *@@@@ @@@@@ ,@@@
@@@% @@. %@@@@@@@@@@@@* @@@@ ,@@@
@@@% #@@@@@@@@@@@@@@@@@@@@& ,@@@@ ,@@@
@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@ @@@@
@@@@@ @@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@ AtomicCanary - beta - SadProcessor 2019 @@
@@@@@@@ Powered by AtomicRedTeam.io @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
")
# CanaryObj
Class CanaryObj{
[String]$ID
[String]$Technique
[String]$Name
[String]$Description
[String[]]$Platform
[String]$Tool
[String[]]$Command
[PSCustomObject]$Argument
}
################################### ParseAtomicCanary - internal
function ParseAtomicCanary{
<#
.Synopsis
Parse Atomic Canary
.DESCRIPTION
internal - yaml to Obj
.EXAMPLE
ParseAtomicCanary $RawData
#>
Param(
[Parameter(Mandatory=1,valuefromPipeline=1)][String]$Canary
)
# DATA
$Data = $Canary.split("`n").TrimEnd() -ne '---' -ne ''
#Return $Data <#-----------------------------------------------------------------------------------Debug-#>
$ID = $Data[0].replace("attack_technique: ",'')
$Technique = $Data[1].replace("display_name: ",'')
if($Data[2] -notmatch 'atomic_tests:'){Write-Warning "Data could not be parsed - Technique: $ID"; Return}
# TESTS
$TestBlock = $Data[3..$Data.length]-join"`n"
# for each Test Object
foreach($Test in ($TestBlock-split"(- name:)"-ne"- name:"-ne"")){
# Split lines
$Test = $Test.split("`n")
# Name
$TName = $Test[0].trim()
# Index
$Index = 1
#Empty Collectors
[System.Collections.ArrayList]$Tdesc = @()
[System.Collections.ArrayList]$Tplat = @()
[System.Collections.ArrayList]$Targ = @()
[System.Collections.ArrayList]$Tcmd = @()
# Description
if($Test[$Index] -match "description"){$Index+=1}
while($Test[$Index] -notmatch "supported_platforms" ){$Tdesc += $Test[$Index].trim();$Index+=1}
# Platform
if($Test[$Index] -match "supported_platforms"){$Index+=1}
while($Test[$Index] -notmatch "input_arguments|executor" ){$Tplat+=$Test[$Index].trim()-replace"^- ",'';$Index+=1}
# Args
if($Test[$Index] -match "input_arguments"){$index+=1
While($Test[$Index] -notmatch "executor"){
if($test[$index] -notmatch " description:| type:| default:"){ <#Error T1086 "Description" as var <- use whitespace #>
# name
$Aname = $test[$Index].trim()-replace":$",'';$Index+=1
# Desc
if($test[$index] -match 'description:'){$Adesc=$test[$Index].replace("description:",'').trim(); $Index+=1}else{$Adesc=$Null}
# Type
if($test[$index] -match 'type:'){$Atype=$test[$Index].replace("type:",'').trim(); $Index+=1}else{$Atype=$Null}
# Default
if($test[$index] -match 'default:'){$Adef =$test[$Index].replace("default:",'').trim(); $Index+=1}else{$Adef =$Null}
}
# Add to Args
$Targ += [PScustomObject]@{
Name = $Aname
Description = $Adesc
Type = $Atype
Default = $Adef
}}}
# Cmd ######
if($Test[$Index] -match "executor"){$index+=1
$Ttool = $Test[$Index].replace("name: ",'').trim();$Index+=1
if($Test[$index] -match "command: |"){$index+=1}
while($Index -ne $Test.count){if($Test[$Index] -ne ''){$Tcmd+=$Test[$index].trim()};$Index+=1}
}
# Output Canary Obj
[CanaryObj]@{
ID = $ID
Technique = $Technique
Name = $Tname
Description = $Tdesc-join"`r`n"
Platform = $Tplat
Tool = $Ttool
Command = $tcmd
Argument = $Targ
}}}
#########End
############################################# Get-AtomicCanary
function Get-AtomicCanary{
<#
.Synopsis
Get AtomicRedTeam Test
.DESCRIPTION
Get AtomicRedTeam test objects by ATT&CK Technique ID
Can be used after pipeline with PoSh_ATTCK ATTCK-Technique Cmdlet.
Note: Parsing is hacky hacky but didn't want dependencies...
.EXAMPLE
AtomicCanary T1107
.EXAMPLE
ATTCK 'File Deletion' | AtomicCanary
#>
[Alias('AtomicCanary')]
[OutputType([CanaryObj])]
Param(
[Parameter(Mandatory=1,ValueFromPipelineByPropertyName=1)][String]$ID,
[Parameter(Mandatory=0)][Switch]$Online
)
Begin{
$GitHub_Raw="https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics"
$Github_MD ="/~https://github.com/redcanaryco/atomic-red-team/blob/master/atomics"
}
Process{
$ID=$ID.ToUpper()
if($Online){Start-Process "$GitHub_MD/$ID/$ID.md"}
else{
$Raw = try{irm "$Github_Raw/$ID/$ID.yaml"}catch{Write-Warning "No Atomic Data Found - Technique: $ID"}
if($Raw){ParseAtomicCanary $raw}
}}
End{}###
}
#End
## On Load
$ASCII
######################################## EOF