-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmalleable_c2.sublime-syntax
280 lines (229 loc) · 8.35 KB
/
malleable_c2.sublime-syntax
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
%YAML 1.2
---
# Author: j0wns
# See http://www.sublimetext.com/docs/syntax.html
name: Malleable C2
file_extensions: [profile]
# hidden_file_extenstions: []
# first_line_match: "# Malleable C2"
scope: source.malleable-c2
version: 4.9 # CS Version
# extends: Packages/C++/C.sublime-syntax # It's unclear how to determing Package/Path or if I want to
# hidden: # Hidden Syntax Definitions wont be shown in the menu but can still be assigned...
contexts:
#####################################################################
# Constants
#####################################################################
special_values:
- match: '[\\]n'
scope: constant.character.malleable-c2
- match: '[\\]r'
scope: constant.character.malleable-c2
- match: '[\\]t'
scope: constant.character.malleable-c2
- match: '[\\]u'
scope: constant.character.malleable-c2
push: unicode_char
- match: '[\\]x'
scope: constant.character.malleable-c2
push: hex_char
- match: '[\\][\\]'
scope: constant.character.malleable-c2
- match: '\[[a-zA-Z0-9|]+\]'
# - match: '\[[a-zA-Z0-9|!\*\(\);:@&,/?%#]+\]'
# - match: "[^-\]_.~!*'();:@&=+$,/?%#[A-z0-9]"
scope: constant.language
# URL Test @"[^-\]_.~!*'();:@&=+$,/?%#[A-z0-9]"
# dynamic_syntax:
# - match: '\[(|.*)\]'
substr_highlighting:
# Boolean
- match: '\b(true|false)\b'
scope: constant.language.malleable-c2
# Numerical Values
- match: '(?<=")([0-9]+\.?[0-9]*)(?=")'
scope: constant.numeric.malleable-c2
# # IPv4 Strings
# - match: '\b[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\b'
# scope: constant.numeric.line-number.match.malleable-c2
# Boolean
- match: '[#]+'
scope: constant.numeric.malleable-c2
unicode_char:
- match: '[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]'
scope: constant.numeric.malleable-c2
pop: true
hex_char:
- match: '[[:xdigit:]][[:xdigit:]]'
scope: constant.numeric.malleable-c2
pop: true
#####################################################################
# Generic Structures
#####################################################################
comments:
# Comments begin with a # and go until the end of the line.
- match: '#'
scope: comment.malleable-c2
push: line_comment
line_comment:
- meta_scope: comment.malleable-c2
- match: $
pop: true
blocks:
# Profiles use '{}' to group statements and information together.
- match: '^\s*([a-z-0-9]+)\s*({)'
captures:
1: support.function.malleable-c2
2: punctuation.section
- match: '}'
scope: punctuation.section
#####################################################################
# Malleable C2 Objects
#####################################################################
options:
# The SET statement is a way to assign a value to an option.
# - match: '^(set)\s+([[:word:]]+)\s+(")'
- match: '^\s*(set)\s+([[:word:]]+)\s+(?=")'
captures:
1: keyword.operator.word.malleable-c2
2: keyword.declaration.malleable-c2
3: punctuation.definition.string.begin.malleable-c2
push: option_values
option_values:
- meta_scope: string.quoted.double.malleable-c2
- include: special_values
- include: substr_highlighting
- match: '"'
scope: punctuation.definition.string.end.malleable-c2
# Statements always end with a semicolon
# - match: ';'
- match: '(?<=")\s*;\s*'
# - match: '(?<=")\s*;\s*(?=#.*$)'
scope: keyword.operator.word.malleable-c2
pop: true
headers:
# - match: '^\s*(header)\s+(")([[:word:]]+)(")\s+(")'
# - match: '^\s*(header)\s+(")([[:word:]]+)'
- match: '^\s*(header|parameter|strrep)\s+(")([ a-z-A-Z]+)(")\s*(")'
captures:
1: keyword.declaration.malleable-c2
2: punctuation.definition.string.begin.malleable-c2
3: keyword.operator.word.malleable-c2
4: punctuation.definition.string.end.malleable-c2
5: punctuation.definition.string.begin.malleable-c2
# 5: constant.language.malleable-c2
push: header_values
header_values:
- meta_scope: string.quoted.double.malleable-c2
- include: special_values
- include: substr_highlighting
- match: '"'
scope: punctuation.definition.string.end.malleable-c2
# Statements always end with a semicolon
# - match: '(?<=");'
- match: '(?<=")\s*;\s*$'
scope: keyword.operator.word.malleable-c2
pop: true
str_vars:
# - match: '^\s*(header)\s+(")([[:word:]]+)(")\s+(")'
# - match: '^\s*(header)\s+(")([[:word:]]+)'
# - match: '^\s*(CreateThread|prepend|append)\s+(")([ a-z-A-Z]+)(")\s*(")'
- match: '^\s*(CreateThread|stringw|string)\s+(")'
# - match: '^\s*(append)\s+(")'
captures:
1: keyword.declaration.malleable-c2
2: punctuation.definition.string.begin.malleable-c2
# 3: keyword.operator.word.malleable-c2
# 4: punctuation.definition.string.end.malleable-c2
# 5: punctuation.definition.string.begin.malleable-c2
# 5: constant.language.malleable-c2
push: str_var_values
str_var_values:
- meta_scope: string.quoted.double.malleable-c2
- include: special_values
- include: substr_highlighting
- match: '"'
scope: punctuation.definition.string.end.malleable-c2
# Statements always end with a semicolon
- match: '(?<=")\s*;\s*$'
scope: keyword.operator.word.malleable-c2
pop: true
data_transform_vars:
- match: '^\s*(append|prepend)\s+(")'
captures:
1: keyword.declaration.malleable-c2
2: punctuation.definition.string.begin.malleable-c2
push: data_transform_var_values
- match: '^\s*(base64|base64url|mask|netbios|netbiosu)\s*(;)'
captures:
1: keyword.declaration.malleable-c2
2: keyword.operator.word.malleable-c2
data_transform_var_values:
- meta_scope: string.quoted.double.malleable-c2
- include: special_values
- include: substr_highlighting
- match: '"'
scope: punctuation.definition.string.end.malleable-c2
# Statements always end with a semicolon
- match: '(?<=")\s*;\s*$'
scope: keyword.operator.word.malleable-c2
pop: true
data_transform_termination_statements:
- match: '^\s*(header|parameter)\s+(")'
captures:
1: keyword.declaration.malleable-c2
2: punctuation.definition.string.begin.malleable-c2
push: str_var_values
- match: '^\s*(print|uri-append)\s*(;)'
captures:
1: keyword.declaration.malleable-c2
2: keyword.operator.word.malleable-c2
termination_statements_values:
- meta_scope: string.quoted.double.malleable-c2
- include: special_values
- include: substr_highlighting
- match: '"'
scope: punctuation.definition.string.end.malleable-c2
# Statements always end with a semicolon
- match: '(?<=")\s*;\s*$'
scope: keyword.operator.word.malleable-c2
pop: true
process_inject_vars:
# - match: '^\s*(header|parameter)\s+(")'
# captures:
# 1: keyword.declaration.malleable-c2
# 2: punctuation.definition.string.begin.malleable-c2
# push: str_var_values
- match: '^\s*(print|uri-append)\s*(;)'
captures:
1: keyword.declaration.malleable-c2
2: keyword.operator.word.malleable-c2
post_ex_vars:
# - match: '^\s*(header|parameter)\s+(")'
# captures:
# 1: keyword.declaration.malleable-c2
# 2: punctuation.definition.string.begin.malleable-c2
# push: str_var_values
- match: '^\s*(SetThreadContext|CreateRemoteThread|RtlCreateUserThread)\s*(;)'
captures:
1: keyword.declaration.malleable-c2
2: keyword.operator.word.malleable-c2
#####################################################################
# Main Context
#####################################################################
main:
# - meta_scope: constant.language # This assigned the given scope to all text within this context
# - meta_content_scope: foo
# - meta_include_prototype: foo
# - clear_scopes: foo
# - meta_prepend: foo
# - meta_append: foo
- include: comments
- include: options
- include: blocks
- include: headers
- include: str_vars
- include: data_transform_vars
- include: data_transform_termination_statements
- include: process_inject_vars
- include: post_ex_vars