While I debug with GDB I can print string:
x/s $r0
The output is
IDog123456
I want to change the value so when I print x/s $r0 I will see
ICat45555
I have tried to :
set $r0+1 ={int} 0x43617434 #Cat4
set $r0+5 ={int} 0x35353535 #5555
But it doesn't work , How can I do that without malloc ? only with hex string please?