22.06.2021, 14:58
(22.06.2021, 05:32)Kannibal schrieb: i try to do what you do but my health continues to decrease,heres the video,try to correct my mistake
https://vimeo.com/565910778
Hey.
So, your originalcode is
Code:
mov [edi+38],eax //moves the value of eax into [edi+38]
Your injection now is
Code:
newmem:
mov [edi+38],(int)99 //moves 99 into [edi+38]
originalcode:
mov [edi+38],eax //moves the value of eax into [edi+38]
There are a few possibilities now:
1.
Code:
newmem:
mov eax, (int)99 //moves 99 into eax
originalcode:
mov [edi+38],eax //moves eax into [edi+38]
2.
Code:
newmem:
originalcode:
mov [edi+38],eax //moves eax into [edi+38]
mov [edi+38],(int)99 //moves 99 into [edi+38]
3.
Code:
newmem:
originalcode:
mov [edi+38],(int)99 //moves 99 into [edi+38]
Don't forget the call vivisector.exe+dddb0 instruction within the originalcode section