I have a few questions about this.
1. I do this as an incude in my script - right?
2. In my script I need to define what - $i_hProcess, $i_lpBaseAddress, $s_Type ,$i_nSize - are? As global variables?
3. If I need to define the items in question 2 above, then do I need to use all of them? If for example I dont need the - $i_lpBaseAddress, $s_Type ,$i_nSize - do I still need to define them and use them for this to work?
4. for the line: Func _WriteProcessMemory($i_hProcess, $i_lpBaseAddress, $s_Type ,$v_Inject, $i_nSize)
if i'm going to write opcodes to something in memory, an .exe for example, i assume that the $v_Inject would be the opcode? If it is the opcode then does it take the format of for example "90" (a NOP) or just 90 (without quotes)? What format does this take?
5. I dont understand this:
Local $v_Struct = DllStructCreate ($s_Type&'[' & $i_nSize & ']')
Local $v_lpNumberOfBytesRead = ''
is it necessary to use this? If so, do I need to define $s_Type and $i_nSize ??