./hbcdump -human -mode=function -pretty-disassemble index.android.bundle
hbcdump> help
These commands are defined internally. Type `help' to see this list.
Type `help name' to find out more about the function `name'.
epilogue
filename
at-virtual
block
summary
function
instruction
io
function-info
help
disassemble
string
hbcdump>
hbcdump> help string
Display string for ID
USAGE: string <STRING_ID>
hbcdump> help filename
Display file name for ID
USAGE: filename <FILENAME_ID>
hbcdump> help at-virtual
Display information about the function at a given virtual offset.
USAGE: at-virtual <OFFSET>
hdb
JavaScript command line debugger
hermesc
Standalone Hermes compiler. This can compile JavaScript to Hermes bytecode, but does not support executing it.
hvm
Standalone Hermes VM. This can execute Hermes bytecode, but does not support compiling it.
pip install hbctool
(hack) bongtrop@bongtrop-pc:lab/ $ hbctool disasm HermesReversingLab/assets/index.android.bundle HermesReversingLabHASM
[*] Disassemble 'HermesReversingLab/assets/index.android.bundle' to 'HermesReversingLabHASM' path
[*] Hermes Bytecode [ Source Hash: d0310a88a868dfb1ee21d12e9011725b1f716875, HBC Version: 74 ]
[*] Done
After disassembling HBC (Hermes Bytecode) to HASM (I named it; stands for Hermes Assembly).
In the HermesReversingLabHASM directory, there are 3 files as follows:
metadata.json: stores the important information of Hermes bytecode file
instruction.hasm: stores the application instructions or logics in HASM format (edit application logics in this file)
string.json: store the application strings or texts (edit strings in this file)
Edit the applicationβs instruction in HermesReversingLabHASM/instruction.hasm.
Save the file and assemble HASM to the HBC by using hbctool.
(hack) bongtrop@bongtrop-pc:lab/ $ hbctool asm HermesReversingLabHASM HermesReversingLab/assets/index.android.bundle
[*] Assemble 'HermesReversingLabHASM' to 'HermesReversingLab/assets/index.android.bundle' path
[*] Hermes Bytecode [ Source Hash: d0310a88a868dfb1ee21d12e9011725b1f716875, HBC Version: 74 ]
[*] Done
ΠΈ Π΄Π°Π»Π΅Π΅ ΠΏΠΎΠ΄ΠΏΠΈΡΡΠ²Π°Π΅ΠΌ apk