forked from rapid7/metasploit-omnibus
-
Notifications
You must be signed in to change notification settings - Fork 0
347 lines (303 loc) · 11.5 KB
/
verify.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
name: Verify
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
permissions:
actions: none
checks: none
contents: read
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
# The job checkout structure is:
# .
# ├── metasploit-omnibus
# └── metasploit-framework (Only if ARM or Windows builds)
#
# docker_arm:
# runs-on: ${{ matrix.os }}
# timeout-minutes: 600
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-latest
# # From: 'ls ./docker/'
# docker:
# # Skipped as not working
# # - { dockerfile: 'debian-aarch64', previousImage: '' }
# - { name: 'debian-armv7', previousDockerhubImage: 'rapid7/msf-debian-armv7-omnibus:2020_03' }
# name: ${{ matrix.os }} - ${{ matrix.docker.name }}
# steps:
# - name: Checkout omnibus
# uses: actions/checkout@v4
# with:
# path: metasploit-omnibus
# - uses: dorny/paths-filter@4067d885736b84de7c414f582ac45897079b0a78
# id: changes
# with:
# filters: |
# docker:
# - 'docker/**'
# working-directory: metasploit-omnibus
# # Set the env vars for either a new build, or a previously successful build
# - name: Set docker build metadata
# run: |
# export BUILD_DATE=$(date "+%Y_%m")
# echo "BUILD_DATE=$BUILD_DATE" >> "$GITHUB_ENV"
# if test "${HAS_MODIFIED_DOCKERFILES}" = 'true'; then
# echo 'New build required'
# echo "DOCKER_IMAGE=rapid7/${DOCKER_NAME}-omnibus:${BUILD_DATE}" >> "$GITHUB_ENV"
# else
# echo 'Reusing old image'
# echo "DOCKER_IMAGE=${PREVIOUS_DOCKERHUB_IMAGE}" >> "$GITHUB_ENV"
# fi
# env:
# HAS_MODIFIED_DOCKERFILES: ${{ steps.changes.outputs.docker }}
# DOCKER_NAME: ${{ matrix.docker.name }}
# PREVIOUS_DOCKERHUB_IMAGE: ${{ matrix.docker.previousDockerhubImage }}
# - name: Build Docker image
# if: steps.changes.outputs.docker == 'true'
# run: |
# /bin/bash -x -c "cd metasploit-omnibus && docker build --tag ${DOCKER_IMAGE} -f ./docker/${DOCKER_NAME}/Dockerfile ./docker/${DOCKER_NAME}"
# env:
# DOCKER_NAME: ${{ matrix.docker.name }}
# # Checkout again - but with the submodules enabled to start a real build
# - name: Checkout omnibus and submodules
# uses: actions/checkout@v4
# with:
# submodules: true
# path: metasploit-omnibus
# # Checkout framework
# - name: Checkout metasploit-framework code
# uses: actions/checkout@v4
# with:
# repository: rapid7/metasploit-framework
# path: metasploit-framework
# - name: Run omnibus
# run: |
# echo "Building new image from ${DOCKER_IMAGE}"
# mkdir -p metasploit-omnibus/certs
# curl -L -o metasploit-omnibus/certs/ca-certificates.crt https://curl.haxx.se/ca/cacert.pem
# cat > Dockerfile_temp <<EOF
# FROM ${DOCKER_IMAGE}
# RUN ["cross-build-start"]
# COPY metasploit-omnibus /metasploit-omnibus
# COPY metasploit-framework /metasploit-framework
# RUN bash -l -c "cd /metasploit-omnibus && make"
# RUN ["cross-build-end"]
# EOF
# cat > Dockerfile_temp.dockerignore <<EOF
# *
# !metasploit-omnibus
# !metasploit-framework
# EOF
# export TEMP_DOCKER_IMAGE=${DOCKER_IMAGE}-build-artifacts
# docker build --no-cache --rm --tag ${TEMP_DOCKER_IMAGE} --file Dockerfile_temp .
# # Create the temp image and copy out the build assets
# id=$(docker create ${TEMP_DOCKER_IMAGE})
# docker cp $id:/metasploit-omnibus/pkg metasploit-omnibus
# docker rm -v $id
# docker rmi ${TEMP_DOCKER_IMAGE}
# docker_intel:
# runs-on: ${{ matrix.os }}
# timeout-minutes: 180
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-latest
# # From: 'ls ./docker/'
# docker:
# - name: 'centos6-x64'
# previousDockerhubImage: 'rapid7/msf-centos6-x64-omnibus:2020_03'
# # Currently fails as it uses an older Ruby version:
# - name: 'fedora30-x64'
# # XXX: Previous dockerhub image fails as using Ruby 2.5.3 still
# previousDockerhubImage: 'rapid7/msf-fedora30-x64-omnibus:2019_09'
# # Currently fails on rate limiting on Kali's side:
# # - name: 'kali109-x64'
# # previousDockerhubImage: 'rapid7/msf-kali109-x64-omnibus:2020_03'
# - name: 'ubuntu1204-x64'
# previousDockerhubImage: 'rapid7/msf-ubuntu1204-x86-omnibus:2021_11'
# - name: 'ubuntu1204-x86'
# previousDockerhubImage: 'rapid7/msf-ubuntu1204-x64-omnibus:2019_01'
# linux32: true
# - name: 'ubuntu1804-x64'
# previousDockerhubImage: 'rapid7/msf-ubuntu1804-x64-omnibus:2019_09'
# name: ${{ matrix.os }} - ${{ matrix.docker.name }}
# steps:
# - name: Checkout omnibus
# uses: actions/checkout@v4
# with:
# path: metasploit-omnibus
# - uses: dorny/paths-filter@4067d885736b84de7c414f582ac45897079b0a78
# id: changes
# with:
# filters: |
# docker:
# - 'docker/**'
# working-directory: metasploit-omnibus
# # Set the env vars for either a new build, or a previously successful build
# - name: Set docker build metadata
# run: |
# export BUILD_DATE=$(date "+%Y_%m")
# echo "BUILD_DATE=$BUILD_DATE" >> "$GITHUB_ENV"
# if test "${HAS_MODIFIED_DOCKERFILES}" = 'true'; then
# echo 'New build required'
# echo "DOCKER_IMAGE=rapid7/${DOCKER_NAME}-omnibus:${BUILD_DATE}" >> "$GITHUB_ENV"
# else
# echo 'Reusing old image'
# echo "DOCKER_IMAGE=${PREVIOUS_DOCKERHUB_IMAGE}" >> "$GITHUB_ENV"
# fi
# env:
# HAS_MODIFIED_DOCKERFILES: ${{ steps.changes.outputs.docker }}
# DOCKER_NAME: ${{ matrix.docker.name }}
# PREVIOUS_DOCKERHUB_IMAGE: ${{ matrix.docker.previousDockerhubImage }}
# - name: Build Docker image
# if: steps.changes.outputs.docker == 'true'
# run: |
# /bin/bash -x -c "cd metasploit-omnibus && docker build --tag ${DOCKER_IMAGE} -f ./docker/${IMAGE_NAME}/Dockerfile ./docker/${IMAGE_NAME}"
# env:
# IMAGE_NAME: ${{ matrix.docker.name }}
# # Checkout again - but with the submodules enabled to start a real build
# - name: Checkout omnibus and submodules
# uses: actions/checkout@v4
# with:
# submodules: true
# path: metasploit-omnibus
# - name: Run omnibus
# run: |
# mkdir -p metasploit-omnibus/certs
# curl -L -o metasploit-omnibus/certs/ca-certificates.crt https://curl.haxx.se/ca/cacert.pem
# # If required, change reported architecture in new program environment and set personality flags
# if [ ! -z "${LINUX32}" ] ; then
# echo 'setting linux32'
# /bin/bash -x -c "docker run --rm --volume $(pwd):$(pwd) --workdir $(pwd) --user jenkins ${DOCKER_IMAGE} linux32 /bin/bash -l -c 'cd metasploit-omnibus && ARCH=x86_64 make'"
# else
# /bin/bash -x -c "docker run --rm --volume $(pwd):$(pwd) --workdir $(pwd) --user jenkins ${DOCKER_IMAGE} /bin/bash -l -c 'cd metasploit-omnibus && make'"
# fi
# env:
# LINUX32: ${{ matrix.docker.linux32 }}
# osx:
# runs-on: ${{ matrix.os }}
# timeout-minutes: 180
# strategy:
# fail-fast: false
# matrix:
# os:
# - macos-11
# ruby:
# - 3.0.6
# name: ${{ matrix.os }}
# steps:
# - name: Checkout omnibus
# uses: actions/checkout@v4
# with:
# submodules: true
# path: metasploit-omnibus
# - name: Setup Ruby
# env:
# BUNDLE_FORCE_RUBY_PLATFORM: true
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# cache-version: 4
# working-directory: metasploit-omnibus
# - name: Run omnibus
# run: |
# sudo mkdir -p /var/cache/omnibus
# sudo mkdir -p /opt/metasploit-framework
# sudo chown `whoami` /var/cache/omnibus
# sudo chown `whoami` /opt/metasploit-framework
# cd metasploit-omnibus
# make
windows:
runs-on: ${{ matrix.os }}
timeout-minutes: 180
strategy:
fail-fast: false
matrix:
os:
- windows-2022
ruby:
- 3.0.6
name: ${{ matrix.os }}
steps:
# https://github.com/actions/runner-images/issues/5143
# https://github.com/actions/runner-images/issues/9701
- name: Install components
run: |
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
vs_installer.exe modify --installPath "$InstallPath" --add Microsoft.VisualStudio.Component.VC.Redist.MSM --norestart --nocache
echo "check program dir"
get-childitem -recurse -path '*.msm'
echo "check install path"
Set-Location $InstallPath
get-childitem -recurse -path '*.msm'
- name: Checkout omnibus
uses: actions/checkout@v4
with:
submodules: true
path: metasploit-omnibus
- name: Setup Ruby
env:
BUNDLE_FORCE_RUBY_PLATFORM: true
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
cache-version: 4
working-directory: metasploit-omnibus
# Github actions with Ruby requires Bundler 2.2.18+
# https://github.com/ruby/setup-ruby/tree/d2b39ad0b52eca07d23f3aa14fdf2a3fcc1f411c#windows
bundler: 2.2.33
# TODO: Comment
- name: Checkout pcaprub
uses: actions/checkout@v4
with:
repository: pcaprub/pcaprub
path: pcaprub
ref: '5440ca93dafd15e7d3bb009fc1bb9a15e80d03f9'
- name: Compile pcaprub
run: |
cd pcaprub
bundle
rake gem
# Checkout framework
- name: Checkout metasploit-framework code
uses: actions/checkout@v4
with:
repository: rapid7/metasploit-framework
path: metasploit-framework
- name: Extract xz files
run: |
cd metasploit-omnibus
xz -d local/cache/*.xz
ls local/cache
- name: Run omnibus
shell: cmd
env:
MSYSTEM: MINGW64
run: |
cd metasploit-omnibus
rem Don't run via `make`, as the process will be spawned under msys2 - and the ridk.cmd
rem ruby installer will forcibly kill the msys2 process before attempting to install ruby
make dependencies
rem build the metasploit-framework package
ruby bin/omnibus build metasploit-framework