View previous topic :: View next topic |
Author |
Message |
Kushie How do I cheat?
Reputation: 0
Joined: 15 Feb 2010 Posts: 5
|
Posted: Mon Feb 15, 2010 4:40 am Post subject: Opcode to Hexadecimal |
|
|
I am trying to convert the following, so I could use it in here:
Code: | Dim en1 As Byte() = {HERE}
Private Sub cmdNamnuOn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdNamnuOn.Click
WriteProcessMemory(hProcess(0).Handle, &H455E99, en1, 7, 0)
End Sub |
How do I convert this? :
Opcode: mov byte ptr [esi+000006e5],01
Also, the byte array for this is: c6 86 e6 06 00 00 01
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Mon Feb 15, 2010 4:51 am Post subject: |
|
|
there is no simple way to go directly from the string "mov byte ptr [esi+000006e5],01"
you're in for quite an interesting (read: tedious and boring) experience if you really want to try.
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Mon Feb 15, 2010 4:52 am Post subject: |
|
|
Actually, this looks similar to your other thread.
Locking, since you basically asked the same thing there.
|
|
Back to top |
|
 |
|