Description of the 'print' function in HyperDbg Scripts
print
print( Expression );
[Expression]
A MASM-like expressionarrow-up-right to evaluate.
Evaluates and prints a MASM expression.
print(@rcx);
Print rcx register.
print(dq(@rcx));
Print data as an 8-byte hex, pointed by rcx register.
print($proc+@rdx);
Print value pointed by $proc+@rdx which $proc is equivalent to current _EPROCESS added to the rdx register.
$proc+@rdx
_EPROCESS
You can see more examples herearrow-up-right.
You should consider avoiding "unsafe" behaviorarrow-up-right in your expressions.
printfarrow-up-right
Last updated 2 years ago