forked from trustedsec/CS-Remote-OPs-BOF
-
Notifications
You must be signed in to change notification settings - Fork 2
265 lines (215 loc) · 6.4 KB
/
autorelease.yml
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
name: Release
on:
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+"]
branches: [master]
jobs:
bof-build:
name: Build and publish tagged release
if: startsWith( github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: OS Packages
run: |
sudo apt-get update --fix-missing && sudo apt-get -y install \
git build-essential zlib1g zlib1g-dev wget zip unzip \
mingw-w64 binutils-mingw-w64 g++-mingw-w64 gcc-multilib jq
- name: Minisign
run: |
MINISIGN_TMP=`mktemp -d`
cd $MINISIGN_TMP
wget https://github.com/aead/minisign/releases/download/v0.2.0/minisign-linux-amd64.tar.gz
tar xvf minisign-linux-amd64.tar.gz
mv ./minisign ~/minisign
touch ~/minisign.key && chmod 600 ~/minisign.key
echo -e "${{ secrets.MINISIGN_PRIVATE_KEY }}" > ~/minisign.key
ls -l ~/
realpath ~/
- name: Check out code
uses: actions/checkout@v2
- name: Git Fetch Tags
run: git fetch --prune --unshallow --tags -f
- name: Packages Setup
run: |
mkdir packages
- name: ProcessDestroy
run: |
chmod +x ./make_bof.sh
./make_bof.sh ProcessDestroy Remote
- name: ProcessListHandles
run: |
chmod +x ./make_bof.sh
./make_bof.sh ProcessListHandles Remote
- name: adcs_request
run: |
chmod +x ./make_bof.sh
./make_bof.sh adcs_request Remote
- name: adduser
run: |
chmod +x ./make_bof.sh
./make_bof.sh adduser Remote
- name: addusertogroup
run: |
chmod +x ./make_bof.sh
./make_bof.sh addusertogroup Remote
- name: chromeKey
run: |
chmod +x ./make_bof.sh
./make_bof.sh chromeKey Remote
- name: enableuser
run: |
chmod +x ./make_bof.sh
./make_bof.sh enableuser Remote
- name: lastpass
run: |
chmod +x ./make_bof.sh
./make_bof.sh lastpass Remote
- name: office_tokens
run: |
chmod +x ./make_bof.sh
./make_bof.sh office_tokens Remote
- name: procdump
run: |
chmod +x ./make_bof.sh
./make_bof.sh procdump Remote
- name: reg_delete
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_delete Remote
- name: reg_save
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_save Remote
- name: reg_set
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_set Remote
- name: sc_config
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_config Remote
- name: sc_create
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_create Remote
- name: sc_delete
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_delete Remote
- name: sc_description
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_description Remote
- name: sc_start
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_start Remote
- name: sc_stop
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_stop Remote
- name: schtaskscreate
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtaskscreate Remote
- name: schtasksdelete
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksdelete Remote
- name: schtasksrun
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksrun Remote
- name: schtasksstop
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksstop Remote
- name: setuserpass
run: |
chmod +x ./make_bof.sh
./make_bof.sh setuserpass Remote
- name: shspawnas
run: |
chmod +x ./make_bof.sh
./make_bof.sh shspawnas Remote
- name: suspendresume
run: |
chmod +x ./make_bof.sh
./make_bof.sh suspendresume Remote
- name: unexpireuser
run: |
chmod +x ./make_bof.sh
./make_bof.sh unexpireuser Remote
- name: get_priv
run: |
chmod +x ./make_bof.sh
./make_bof.sh get_priv Remote
- name: ghost_task
run: |
chmod +x ./make_bof.sh
./make_bof.sh ghost_task Remote
- name: sc_failure
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_failure Remote
- name: slack_cookie
run: |
chmod +x ./make_bof.sh
./make_bof.sh slack_cookie Remote
- name: clipboard
run: |
chmod +x ./make_bof.sh
./make_bof.sh clipboard Injection
- name: conhost
run: |
chmod +x ./make_bof.sh
./make_bof.sh conhost Injection
- name: createremotethread
run: |
chmod +x ./make_bof.sh
./make_bof.sh createremotethread Injection
- name: ctray
run: |
chmod +x ./make_bof.sh
./make_bof.sh ctray Injection
- name: dde
run: |
chmod +x ./make_bof.sh
./make_bof.sh dde Injection
- name: kernelcallbacktable
run: |
chmod +x ./make_bof.sh
./make_bof.sh kernelcallbacktable Injection
- name: ntcreatethread
run: |
chmod +x ./make_bof.sh
./make_bof.sh ntcreatethread Injection
- name: ntqueueapcthread
run: |
chmod +x ./make_bof.sh
./make_bof.sh ntqueueapcthread Injection
- name: setthreadcontext
run: |
chmod +x ./make_bof.sh
./make_bof.sh setthreadcontext Injection
- name: svcctrl
run: |
chmod +x ./make_bof.sh
./make_bof.sh svcctrl Injection
- name: tooltip
run: |
chmod +x ./make_bof.sh
./make_bof.sh tooltip Injection
- name: uxsubclassinfo
run: |
chmod +x ./make_bof.sh
./make_bof.sh uxsubclassinfo Injection
- name: "Publish Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
./packages/*.tar.gz
./packages/*.minisig