a (assemble virtual address)
Description of the 'a' command in HyperDbg.
Command
a
Syntax
a [Address (hex)] [asm {AsmCmd1; AsmCmd2}] [pid ProcessId (hex)]
Description
Assembles (shows HEX byte codes) or puts the resulting instruction codes into the (virtual) memory.
Parameters
[Address (hex)] (optional)
The virtual address of where we want to start putting resulting codes into its memory.
If the Address is empty, you can use it to only assemble instructions without modifying the memory.
[asm {AsmCmd1; AsmCmd2}]
The target assembly codes.
[pid ProcessId (hex)] (optional)
The Process ID that's in the hex format is what we want to put the memory to its context (cr3).
If you don't specify the pid, then the default pid is the current process (HyperDbg) process layout of memory.
Examples
If you just want to view the result of assembly (byte codes in HEX) without modifying the memory, the following command can be used.
The following command is used when we want to assemble assembly codes and put the resulting bytes into the target memory at fffff800`3ad6f010
.
The following command is used when we want to assemble assembly codes and put the resulting bytes into the target memory at nt!ExAllocatePoolWithTag
.
The following command is used when we want to assemble assembly codes and put the resulting bytes into the target memory at nt!ExAllocatePoolWithTag+5
.
You can also write multiple lines of assembly codes and use function names in your assembly:
IOCTL
None
Remarks
By default, HyperDbg converts addresses to the object names (if the symbol for that address is available). If you want to see the address in hex format, you can turn
addressconversion
to off using the 'settings' command.To view the byte code of an assembly snippet, you can use the following command (
StartAddress
is useful when dealing with relative instructions like JMP).
HyperDbg uses keystone as its core assembler.
This command is guaranteed to keep debuggee in a halt state (in Debugger Mode); thus, nothing will change during its execution.
Requirements
None
Related
!a (assemble physical address)
Last updated