mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +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)
|
||||
|
||||
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