forked from throwaway96/dejavuln-autoroot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoroot.sh
executable file
·347 lines (267 loc) · 10.2 KB
/
autoroot.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
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
#!/bin/sh
# dejavuln-autoroot
# by throwaway96
# https://github.com/throwaway96/dejavuln-autoroot
# Copyright 2024. Licensed under AGPL v3 or later. No warranties.
# Thanks to:
# - Jacob Clayden (https://jacobcx.dev/) for discovering DejaVuln
# - Bitdefender for their writeup of CVE-2023-6319
# (https://www.bitdefender.com/blog/labs/vulnerabilities-identified-in-lg-webos/)
# - LG for being incompetent
set -e
USB_PATH="${USB_PATH:-$(dirname -- "${0}")}"
DEBUG="${DEBUG:-}"
IPK_SRC="${IPK_SRC:-"${USB_PATH}/hbchannel.ipk"}"
srcapp='com.webos.service.secondscreen.gateway'
toast() {
[ -n "${logfile}" ] && debug "toasting: '${1}'"
title='dejavuln-autoroot'
escape1="${1//\\/\\\\}"
escape="${escape1//\"/\\\"}"
payload="$(printf '{"sourceId":"%s","message":"<h3>%s</h3>%s"}' "${srcapp}" "${title}" "${escape}")"
luna-send -w 1000 -n 1 -a "${srcapp}" 'luna://com.webos.notification/createToast' "${payload}" >/dev/null
}
debug() {
[ -z "${DEBUG}" ] && return
msg="[d] ${1}"
echo "${msg}"
echo "${msg}" >>"${logfile}"
fsync -- "${logfile}"
}
log() {
msg="[ ] ${1}"
echo "${msg}"
echo "${msg}" >>"${logfile}"
fsync -- "${logfile}"
}
error() {
msg="[!] ${1}"
echo "${msg}"
echo "${msg}" >>"${logfile}"
fsync -- "${logfile}"
toast "<b>Error:</b> ${1}"
}
get_sdkversion() {
luna-send -w 1000 -n 1 -q 'sdkVersion' -f 'luna://com.webos.service.tv.systemproperty/getSystemInfo' '{"keys":["sdkVersion"]}' | sed -n -e 's/^\s*"sdkVersion":\s*"\([0-9.]\+\)"\s*$/\1/p'
}
get_devmode_app_state() {
luna-send -w 5000 -n 1 -q 'returnValue' -f 'luna://com.webos.applicationManager/getAppInfo' '{"id":"com.palmdts.devmode"}' | sed -n -e 's/^\s*"returnValue":\s*\(true\|false\)\s*,\?\s*$/\1/p'
}
check_sd_verify() {
script_systemd='/lib/systemd/system/scripts/devmode.sh'
script_upstart='/etc/init/devmode.conf'
if [ -e "${script_systemd}" ]; then
script="${script_systemd}"
elif [ -e "${script_upstart}" ]; then
script="${script_upstart}"
else
log 'Missing both devmode init scripts; please report this!'
# err on the safe side by assuming it will be verified
return 0
fi
if [ ! -f "${script}" ]; then
log 'Devmode init script is not a file; please report this!'
return 0
fi
fgrep -q -e 'openssl dgst' -- "${script}"
}
sd_script='/media/cryptofs/apps/usr/palm/services/com.palmdts.devmode.service/start-devmode.sh'
sd_sig='/media/cryptofs/apps/usr/palm/services/com.palmdts.devmode.service/start-devmode.sig'
sd_key='/usr/palm/services/com.palm.service.devmode/pub.pem'
verify_sd() {
# if it's not present, don't worry about it
[ ! -f "${sd_script}" ] && return 0
if [ ! -f "${sd_key}" ]; then
log "Expected Dev Mode public key is not present; please report this!"
# verification will fail without the public key file
return 1
fi
if [ ! -f "${sd_sig}" ]; then
log 'start-devmode.sh verification failed: missing signature file'
return 1
fi
verify="$(openssl dgst -sha512 -verify "${sd_key}" -signature "${sd_sig}" "${sd_script}")"
case "${verify}" in
'Verified OK')
debug 'start-devmode.sh verification succeeded'
return 0
;;
'Verification Failure')
log 'start-devmode.sh verification failed: signature mismatch'
return 1
;;
*)
log "start-devmode.sh verification failed for unknown reason: '${verify}'"
return 1
;;
esac
}
lockfile='/tmp/autoroot.lock'
exec 200>"${lockfile}"
flock -x -n -- 200 || { echo '[!] Another instance of this script is currently running'; exit 2; }
trap -- "rm -f -- '${lockfile}'" EXIT
[ -e "${USB_PATH}/autoroot.debug" ] && DEBUG='file'
[ -n "${DEBUG}" ] && toast 'Script is running!'
[ -e "${USB_PATH}/autoroot.telnet" ] && { telnetd -l sh || echo "[!] Failed to start telnetd (${?})"; }
umask 022
if ! tempdir="$(mktemp -d -- '/tmp/autoroot.XXXXXX')"; then
echo '[x] Failed to create random temporary directory; using PID-based fallback'
tempdir="/tmp/autoroot.${$}"
if ! mkdir -- "${tempdir}"; then
echo "[x] PID-based fallback temporary directory ${tempdir} already exists"
tempdir='/tmp/autoroot.temp'
rm -rf -- "${tempdir}"
mkdir -- "${tempdir}"
fi
fi
logfile="${tempdir}/log"
touch -- "${logfile}"
if [ -n "${DEBUG}" ]; then
loglink='/tmp/autoroot.log'
rm -rf -- "${loglink}"
ln -s -- "${logfile}" "${loglink}"
fi
log 'hi'
log "script path: ${0}"
debug "temp dir: ${tempdir}"
log "date: $(date -u -- '+%Y-%m-%d %H:%M:%S UTC')"
log "id: $(id)"
usb_oncefile="${USB_PATH}/autoroot.once"
tmp_oncefile='/tmp/autoroot.once'
[ -e "${usb_oncefile}" -a -e "${tmp_oncefile}" ] && { log 'Script already executed'; exit 3; }
touch -- "${usb_oncefile}" "${tmp_oncefile}"
fsync -- "${usb_oncefile}"
trap -- "cp -f -- '${logfile}' '${USB_PATH}/autoroot.log'" EXIT
webos_ver="$(get_sdkversion)"
log "webOS version: ${webos_ver}"
if [ ! -f "${IPK_SRC}" ]; then
error "IPK not found at '${IPK_SRC}'."
exit 1
fi
if [ -d '/var/luna/preferences/devmode_enabled' ]; then
log 'devmode_enabled is already a directory; is your TV already rooted?'
else
if [ -e '/var/luna/preferences/devmode_enabled' ]; then
log 'devmode_enabled exists; make sure the LG Dev Mode app is not installed!'
rm -f -- '/var/luna/preferences/devmode_enabled'
else
debug 'devmode_enabled does not exist'
fi
if ! mkdir -- '/var/luna/preferences/devmode_enabled'; then
error 'Failed to create devmode_enabled directory'
exit 1
fi
fi
restart_appinstalld() {
if restart appinstalld >/dev/null; then
debug 'appinstalld restarted'
else
log 'Failed to restart appinstalld'
fi
}
restart_appinstalld
ipkpath="${tempdir}/hbchannel.ipk"
cp -- "${IPK_SRC}" "${ipkpath}"
install_hbchannel() {
instpayload="$(printf '{"id":"com.ares.defaultName","ipkUrl":"%s","subscribe":true}' "${ipkpath}")"
fifopath="${tempdir}/fifo"
mkfifo -- "${fifopath}"
log "Installing ${ipkpath}..."
toast 'Installing...'
luna-send -w 20000 -i 'luna://com.webos.appInstallService/dev/install' "${instpayload}" >"${fifopath}" &
luna_pid="${!}"
if ! result="$(fgrep -m 1 -e 'installed' -e 'failed' -e 'Unknown method' -- "${fifopath}")"; then
rm -f -- "${fifopath}"
error 'Install timed out'
exit 1
fi
kill -TERM "${luna_pid}" 2>/dev/null || true
rm -f -- "${fifopath}"
case "${result}" in
*installed*) ;;
*"Unknown method"*)
error 'Installation failed (devmode_enabled not recognized)'
debug "/dev/install response: '${result}'"
return 1
;;
*failed*)
error 'Installation failed'
log "/dev/install response: '${result}'"
exit 1
;;
*)
error 'Installation failed for unknown reason'
log "/dev/install response: '${result}'"
exit 1
;;
esac
return 0
}
sleep_secs_base=2
retries=3
for retry in $(seq "${retries}" -1 0); do
if install_hbchannel; then
# success
break
fi
if [ "${retry}" -eq 0 ]; then
error 'Retries exhausted: giving up'
exit 1
fi
sleep_secs=$((sleep_secs_base * (retries - retry + 1)))
restart_appinstalld
log "Sleeping for ${sleep_secs} seconds before trying again (${retry} tries remaining)"
sleep "${sleep_secs}"
done
if ! /media/developer/apps/usr/palm/services/org.webosbrew.hbchannel.service/elevate-service >"${tempdir}/elevate.log"; then
error 'Elevation failed'
exit 1
fi
log 'Rooting complete'
toast 'Rooting complete. <h4>Do not install the LG Dev Mode app while rooted!</h4>'
if [ -f "${sd_script}" ]; then
if check_sd_verify; then
log 'Current firmware verifies start-devmode.sh signature'
if verify_sd; then
log 'Your start-devmode.sh passes verification. If the Dev Mode app is installed, uninstall it!'
else
mv -- "${sd_script}" "${sc_script}.backup"
log 'Your start-devmode.sh failed verification and was renamed to prevent /media/developer from being wiped'
toast '<b>Warning:</b> Renamed start-devmode.sh to prevent deletion of apps'
fi
else
log 'Current firmware does not verify start-devmode.sh signature, but an updated version might'
if [ ! -f "${sd_sig}" ]; then
log 'You are missing start-devmode.sig, so verification would fail. Be careful updating your firmware!'
fi
fi
else
debug 'start-devmode.sh does not exist; skipping checks'
fi
devmode_installed="$(get_devmode_app_state)"
debug "Dev Mode app installed: '${devmode_installed}'"
buttons_reboot='{"label":"Reboot now","onclick":"luna://com.webos.service.sleep/shutdown/machineReboot","params":{"reason":"remoteKey"}},{"label":"Don'\''t reboot"}'
buttons_ok='{"label":"OK"}'
message_reboot='Would you like to reboot now?'
message_devmode='However, the Dev Mode app is installed. You must uninstall it before rebooting!'
message_devmode_unknown='The status of the Dev Mode app could not be determined. Please report this issue. If you know it is not installed, you can reboot now. Otherwise, make sure it is removed before rebooting.<br>Would you like to reboot now?'
case "${devmode_installed}" in
false)
log "Dev Mode app not installed. (Don't install it!)"
buttons="${buttons_reboot}"
message="${message_reboot}"
;;
true)
log 'Dev Mode app installed; uninstall it before rebooting!'
buttons="${buttons_ok}"
message="${message_devmode}"
;;
*)
log "Unknown Dev Mode app state: '${devmode_installed}' (please report)"
buttons="${buttons_reboot}"
message="${message_devmode_unknown}"
;;
esac
payload="$(printf '{"sourceId":"%s","message":"<h3>dejavuln-autoroot</h3>Rooting complete. You may need to reboot for Homebrew Channel to appear.<br>%s","buttons":[%s]}' "${srcapp}" "${message}" "${buttons}")"
alert_response="$(luna-send -w 2000 -a "${srcapp}" -n 1 'luna://com.webos.notification/createAlert' "${payload}")"
debug "/createAlert response: '${alert_response}'"