forked from trustedsec/CS-Remote-OPs-BOF
-
Notifications
You must be signed in to change notification settings - Fork 2
205 lines (167 loc) · 4.76 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
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
- name: ProcessListHandles
run: |
chmod +x ./make_bof.sh
./make_bof.sh ProcessListHandles
- name: adcs_request
run: |
chmod +x ./make_bof.sh
./make_bof.sh adcs_request
- name: adduser
run: |
chmod +x ./make_bof.sh
./make_bof.sh adduser
- name: addusertogroup
run: |
chmod +x ./make_bof.sh
./make_bof.sh addusertogroup
- name: chromeKey
run: |
chmod +x ./make_bof.sh
./make_bof.sh chromeKey
- name: enableuser
run: |
chmod +x ./make_bof.sh
./make_bof.sh enableuser
- name: lastpass
run: |
chmod +x ./make_bof.sh
./make_bof.sh lastpass
- name: office_tokens
run: |
chmod +x ./make_bof.sh
./make_bof.sh office_tokens
- name: procdump
run: |
chmod +x ./make_bof.sh
./make_bof.sh procdump
- name: reg_delete
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_delete
- name: reg_save
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_save
- name: reg_set
run: |
chmod +x ./make_bof.sh
./make_bof.sh reg_set
- name: sc_config
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_config
- name: sc_create
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_create
- name: sc_delete
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_delete
- name: sc_description
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_description
- name: sc_start
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_start
- name: sc_stop
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_stop
- name: schtaskscreate
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtaskscreate
- name: schtasksdelete
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksdelete
- name: schtasksrun
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksrun
- name: schtasksstop
run: |
chmod +x ./make_bof.sh
./make_bof.sh schtasksstop
- name: setuserpass
run: |
chmod +x ./make_bof.sh
./make_bof.sh setuserpass
- name: shspawnas
run: |
chmod +x ./make_bof.sh
./make_bof.sh shspawnas
- name: suspendresume
run: |
chmod +x ./make_bof.sh
./make_bof.sh suspendresume
- name: unexpireuser
run: |
chmod +x ./make_bof.sh
./make_bof.sh unexpireuser
- name: get_priv
run: |
chmod +x ./make_bof.sh
./make_bof.sh get_priv
- name: ghost_task
run: |
chmod +x ./make_bof.sh
./make_bof.sh ghost_task
- name: sc_failure
run: |
chmod +x ./make_bof.sh
./make_bof.sh sc_failure
- name: slack_cookie
run: |
chmod +x ./make_bof.sh
./make_bof.sh slack_cookie
- name: "Publish Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
./packages/*.tar.gz
./packages/*.minisig