I searched a lot but did not got the clear answer the one I'm looking for.
I want to edit the hex of the file and insert bytes in a .dll
file
For example
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
("C:\test.dll")
End Sub
so that when I click button1
it searches hex like 12 23 34 45 56 67 78
and modify it to 00 00 00 00 00 00 00
/
Next, I want to insert without overwriting like 12 23 34 45 56
,
and I can insert 12 23 00 00 34 45 56
.
Can anybody can help with these two points?
Thanks.