mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-16 01:14:04 +09:00
minor changes on jmp.js
This commit is contained in:
@@ -58,4 +58,10 @@ for (let outcnt = 0; outcnt < payloadSize; outcnt++) {
|
|||||||
|
|
||||||
let image = gzip.decomp(encrypted)
|
let image = gzip.decomp(encrypted)
|
||||||
|
|
||||||
eval(image)
|
// convert java ByteArray into JS string
|
||||||
|
var simg = ""
|
||||||
|
for (let b of image) {
|
||||||
|
simg += String.fromCharCode(b & 255)
|
||||||
|
}
|
||||||
|
|
||||||
|
eval(simg)
|
||||||
Reference in New Issue
Block a user