forked from CrackerCat/strongR-frida-android
-
Notifications
You must be signed in to change notification settings - Fork 0
278 lines (244 loc) · 10.8 KB
/
build.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
name: strongR-frida
on:
schedule:
- cron: "0 9/12 * * *"
workflow_dispatch:
jobs:
check_version:
runs-on: ubuntu-20.04
outputs:
FRIDA_VERSION: ${{ steps.pullFridaLatestRelease.outputs.FRIDA_VERSION }}
ALREADY_RELEASE: ${{ steps.checkReleaseVersion.outputs.ALREADY_RELEASE }}
steps:
- name: Pull Frida Latest Release
id: pullFridaLatestRelease
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const releaseResponse = await github.repos.getLatestRelease({
owner: 'frida',
repo: 'frida',
})
const {
data: { tag_name: ver }
} = releaseResponse;
core.setOutput('FRIDA_VERSION', ver);
- name: Check release version
id: checkReleaseVersion
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
try {
const releaseVersion = '${{ steps.pullFridaLatestRelease.outputs.FRIDA_VERSION }}'
const releaseResponse = await github.repos.getReleaseByTag({
owner: '${{ secrets.GIT_OWNER }}',
repo: '${{ secrets.GIT_REPO }}',
tag: releaseVersion
});
const {
data: { tag_name: ver }
} = releaseResponse;
if (ver == '${{ steps.pullFridaLatestRelease.outputs.FRIDA_VERSION }}'){
core.setOutput('ALREADY_RELEASE', '1');
}
else{
core.setOutput('ALREADY_RELEASE', '0');
}
} catch (e) {
if(e.message == 'Not Found'){
core.setOutput('ALREADY_RELEASE', '0');
}
else{
core.setFailed(e.message);
}
}
create_release:
needs: check_version
runs-on: ubuntu-20.04
if: needs.check_version.outputs.ALREADY_RELEASE == '0'
steps:
- uses: actions/create-release@master
id: createRelease
name: Create Runner Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "${{ needs.check_version.outputs.FRIDA_VERSION }}"
release_name: "${{ needs.check_version.outputs.FRIDA_VERSION }}"
prerelease: false
android_build:
runs-on: ubuntu-20.04
needs: [check_version, create_release]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: de-vri-es/setup-git-credentials@v2
with:
credentials: ${{secrets.GIT_CREDENTIALS}}
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Setup Android NDK
id: setup-ndk
uses: nttld/[email protected]
with:
ndk-version: r25b
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: install dependencies
run: |
sudo apt-get update && DEBIAN_FRONTEND=noninteractive sudo apt-get install build-essential tree ninja-build gcc-multilib g++-multilib lib32stdc++-9-dev flex bison xz-utils ruby ruby-dev python3-requests python3-setuptools python3-dev python3-pip libc6-dev libc6-dev-i386 -y
sudo gem install fpm -v 1.11.0 --no-document
python3 -m pip install lief
- name: build frida for Android
shell: bash
run: |
git config --global user.name "${{ secrets.GIT_NAME }}"
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git clone ${{ secrets.PATCH_REPO }}
export ANDROID_NDK_ROOT=${{ steps.setup-ndk.outputs.ndk-path }}
git clone --recurse-submodules https://github.com/frida/frida
rm -rf frida/frida-core
cp -r frida-core frida/frida-core
cd frida
make core-android-arm
make core-android-arm64
make core-android-x86
make core-android-x86_64
- name: Check release version
id: checkReleaseVersion
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
try {
const releaseVersion = '${{ needs.check_version.outputs.FRIDA_VERSION }}'
const releaseResponse = await github.repos.getReleaseByTag({
owner: '${{ secrets.GIT_OWNER }}',
repo: '${{ secrets.GIT_REPO }}',
tag: releaseVersion
})
const {
data: { id: releaseId, html_url: htmlUrl, upload_url: uploadUrl }
} = releaseResponse;
core.setOutput('id', releaseId);
core.setOutput('html_url', htmlUrl);
core.setOutput('upload_url', uploadUrl);
core.setOutput('version', releaseVersion);
} catch (e) {
core.setFailed(e.message);
}
- name: package build result for Android
shell: bash
run: |
pushd frida
xz build/frida-android-arm/bin/frida-server
xz build/frida-android-arm64/bin/frida-server
xz build/frida-android-x86/bin/frida-server
xz build/frida-android-x86_64/bin/frida-server
xz build/frida-android-arm/bin/frida-inject
xz build/frida-android-arm64/bin/frida-inject
xz build/frida-android-x86/bin/frida-inject
xz build/frida-android-x86_64/bin/frida-inject
xz build/frida-android-arm/lib/frida/32/frida-gadget.so
xz build/frida-android-arm64/lib/frida/64/frida-gadget.so
xz build/frida-android-x86/lib/frida/32/frida-gadget.so
xz build/frida-android-x86_64/lib/frida/64/frida-gadget.so
popd
- name: Upload android arm frida-server for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm/bin/frida-server.xz'
asset_name: 'hluda-server-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm.xz'
asset_content_type: application/octet-stream
- name: Upload android arm64 frida-server for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm64/bin/frida-server.xz'
asset_name: 'hluda-server-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm64.xz'
asset_content_type: application/octet-stream
- name: Upload android x86 frida-server for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86/bin/frida-server.xz'
asset_name: 'hluda-server-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-x86.xz'
asset_content_type: application/octet-stream
- name: Upload android x86_64 frida-server for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86_64/bin/frida-server.xz'
asset_name: 'hluda-server-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-x86_64.xz'
asset_content_type: application/octet-stream
- name: Upload android arm frida-inject for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm/bin/frida-inject.xz'
asset_name: 'hluda-inject-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm.xz'
asset_content_type: application/octet-stream
- name: Upload android arm64 frida-inject for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm64/bin/frida-inject.xz'
asset_name: 'hluda-inject-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm64.xz'
asset_content_type: application/octet-stream
- name: Upload android x86 frida-inject for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86/bin/frida-inject.xz'
asset_name: 'hluda-inject-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-x86.xz'
asset_content_type: application/octet-stream
- name: Upload android x86_64 frida-inject for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-x86_64/bin/frida-inject.xz'
asset_name: 'hluda-inject-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm-x86_64.xz'
asset_content_type: application/octet-stream
- name: Upload android arm frida-gadget for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm/lib/frida/32/frida-gadget.so.xz'
asset_name: 'hluda-gadget-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm.so.xz'
asset_content_type: application/octet-stream
- name: Upload android arm64 frida-gadget for strongR-frida
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: '${{ steps.checkReleaseVersion.outputs.upload_url }}'
asset_path: '${{ github.workspace }}/frida/build/frida-android-arm64/lib/frida/64/frida-gadget.so.xz'
asset_name: 'hluda-gadget-${{ needs.check_version.outputs.FRIDA_VERSION }}-android-arm64.so.xz'
asset_content_type: application/octet-stream