-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathbuild.sh
executable file
·231 lines (164 loc) · 7.48 KB
/
build.sh
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
#!/bin/bash
error=0
bold=`tput bold`
normal=`tput sgr0`
red='\e[0;31m'
green='\e[0;32m'
yellow='\e[1;33m'
NC='\e[0m' # No Color
##### CLEAN ALL #####
rm -rf legacy_native/obj
rm -rf selinux_native/obj
rm legacy_native/libs/armeabi/*
rm selinux_native/libs/armeabi/*
rm -rf bin/local/*
rm bin/remote/*
rm bin/shared_lib/*
################################
sdk=$(which ndk-build)
cp $(pwd)/selinux_native/jni/Makefiles/Application.mk $(pwd)/selinux_native/jni/Application.mk
###########################################
############ BUILDING LEGACY ##############
###########################################
echo -e "${green}${bold}\n\nBUILDING LEGACY NATIVE${normal}${NC}\n\n"
sleep 1
$sdk -C $(pwd)/legacy_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during building!${normal}${NC}\n\n"
error=1
fi
cp $(pwd)/legacy_native/libs/armeabi/expl_check $(pwd)/bin/local
cp $(pwd)/legacy_native/libs/armeabi/local_exploit $(pwd)/bin/local
cp $(pwd)/legacy_native/libs/armeabi/suidext $(pwd)/bin/local
###########################################
############ BUILDING SELINUX #############
###########################################
sleep 1
echo -e "\n\n${green}${bold}BUILDING SELINUX NATIVE${normal}${NC}\n\n"
sleep 1
# Build runner
cp $(pwd)/selinux_native/jni/Makefiles/runner.mk $(pwd)/selinux_native/jni/Android.mk
echo -e "${yellow}Compiling runner...\n${NC}"
$sdk -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
# Update runner binary
perl -e 'print "\x1d\x30\x25\xd9\x28\x70\xf4\xe1\xe6\x53\x68\x78\x07\x3e\xc4\x78"' >> $(pwd)/selinux_native/libs/armeabi/runner
echo -e "${yellow}Generating runner header...\n${NC}"
$(pwd)/selinux_native/jni/gen_runner.py $(pwd)/selinux_native/libs/armeabi/runner $(pwd)/selinux_native/jni/headers/runner_bin.h
perl -e 'print "#define RUNNER_ID \"\\x1d\\x30\\x25\\xd9\\x28\\x70\\xf4\\xe1\\xe6\\x53\\x68\\x78\\x07\\x3e\\xc4\\x78\"\n\n"' >> $(pwd)/selinux_native/jni/headers/runner_bin.h
echo -e "${yellow}Generating selinux_suidext...\n${NC}"
cp $(pwd)/selinux_native/jni/Makefiles/suidext.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
$(pwd)/selinux_native/jni/gen_bin.py $(pwd)/selinux_native/libs/armeabi/selinux_suidext $(pwd)/selinux_native/jni/headers/bin_suidext.h binsuidext
$(pwd)/selinux_native/jni/gen_bin.py $(pwd)/legacy_native/libs/armeabi/suidext $(pwd)/selinux_native/jni/headers/bin_oldsuidext.h binoldsuidext
##### BUILD E COPY REMOTE VECTOR #####
sleep 1
echo -e "\n\n${yellow}${bold}BUILDING BINARIES FOR REMOTE VECTOR${normal}${NC}\n\n"
sleep 1
cp $(pwd)/selinux_native/jni/Makefiles/selinux_remote.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
# Copy remote vector binaries
cp $(pwd)/selinux_native/libs/armeabi/selinux_exploit $(pwd)/bin/remote
##### BUILD E COPY SHARED LIBRARIES #####
sleep 1
echo -e "\n\n${yellow}${bold}BUILDING EXPLOITATION SHARED LIBRARY${normal}${NC}\n\n"
sleep 1
$(pwd)/selinux_native/jni/gen_bin.py $(pwd)/bin/local/local_exploit $(pwd)/selinux_native/jni/headers/bin_legacyexp.h bin_legacy_get_root
cp $(pwd)/selinux_native/jni/Makefiles/selinux_shared_lib.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
# Copy shared_lib vector binaries
cp $(pwd)/selinux_native/libs/armeabi/libchecksum.so $(pwd)/bin/shared_lib/libexploit.so
sleep 1
echo -e "\n\n${yellow}${bold}BUILDING INSTALLER SHARED LIBRARY${normal}${NC}\n\n"
sleep 1
cp $(pwd)/selinux_native/jni/Makefiles/selinux_shared_lib_installer.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
# Copy remote vector binaries
cp $(pwd)/selinux_native/libs/armeabi/libchecksum.so $(pwd)/bin/shared_lib/libinstaller.so
##### BUILD E COPY LOCAL VECTOR #####
sleep 1
echo -e "\n\n${yellow}${bold}BUILDING BINARIES FOR LOCAL VECTOR${normal}${NC}\n\n"
sleep 1
cp $(pwd)/selinux_native/jni/Makefiles/selinux_local.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
cp $(pwd)/selinux_native/libs/armeabi/selinux_check $(pwd)/bin/local
cp $(pwd)/selinux_native/libs/armeabi/selinux_exploit $(pwd)/bin/local
cp $(pwd)/selinux_native/libs/armeabi/selinux_suidext $(pwd)/bin/local
cp $(pwd)/selinux_native/libs/armeabi/selinux4_exploit $(pwd)/bin/local
cp $(pwd)/selinux_native/libs/armeabi/selinux4_check $(pwd)/bin/local
# bbmdecoder
sleep 1
echo -e "\n\n${yellow}${bold}Building bbmdecoder${normal}${NC}\n\n"
sleep 1
cp $(pwd)/selinux_native/jni/Makefiles/bbmdecoder.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
cp $(pwd)/selinux_native/libs/armeabi/bbmdecoder $(pwd)/bin/local
###################################################
############# ANDROID 5 ###########################
###################################################
sleep 1
echo -e "\n\n${yellow}${bold}BUILDING SELINUX NATIVE FOR ANDROID 5${normal}${NC}\n\n"
sleep 1
# Build runner for Android 5
cp $(pwd)/selinux_native/jni/Makefiles/runner5.mk $(pwd)/selinux_native/jni/Android.mk
echo -e "${yellow}Compiling runner...\n${NC}"
$sdk -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
# bbmdecoder 5
cp $(pwd)/selinux_native/jni/Makefiles/bbmdecoder5.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -B -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
cp $(pwd)/selinux_native/libs/armeabi/bbmdecoder $(pwd)/bin/local/bbmdecoder5
# Update runner binary
perl -e 'print "\x1d\x30\x25\xd9\x28\x70\xf4\xe1\xe6\x53\x68\x78\x07\x3e\xc4\x78"' >> $(pwd)/selinux_native/libs/armeabi/runner
echo -e "${yellow}Generating runner header...\n${NC}"
$(pwd)/selinux_native/jni/gen_runner.py $(pwd)/selinux_native/libs/armeabi/runner $(pwd)/selinux_native/jni/headers/runner_bin.h
perl -e 'print "#define RUNNER_ID \"\\x1d\\x30\\x25\\xd9\\x28\\x70\\xf4\\xe1\\xe6\\x53\\x68\\x78\\x07\\x3e\\xc4\\x78\"\n\n"' >> $(pwd)/selinux_native/jni/headers/runner_bin.h
echo -e "${yellow}Generating selinux_suidext...\n${NC}"
cp $(pwd)/selinux_native/jni/Makefiles/suidext5.mk $(pwd)/selinux_native/jni/Android.mk
$sdk -C $(pwd)/selinux_native/jni/
if [ $? != 0 ]; then
echo -e "\n\n${red}${bold}ERROR: Something wrong during compilation${normal}${NC}\n\n"
error=1
fi
cp $(pwd)/selinux_native/libs/armeabi/selinux5_suidext $(pwd)/bin/local/
rm $(pwd)/selinux_native/jni/Android.mk
rm $(pwd)/selinux_native/jni/Application.mk
if [ $error == 0 ]; then
echo -e "\n\n${green}${bold}Build completed. All succesfully done!${normal}${NC}\n\n"
else
echo -e "\n\n${red}${bold}ERROR: Build failed!${normal}${NC}\n\n"
fi