Пример #1
0
        /// <summary>
        /// Writes RETN instruction to the address provided in the process specified.
        /// </summary>
        /// <param name="process">Process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="size">Size of the return. 0 by default.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult MakeRETN(Process process, uint address, ushort size = 0)
        {
            var hProcess = NativeCall.OpenProcess(ProcessAccessFlags.All, false, process.Id);

            if (size != 0)
            {
                var array = new byte[3] {
                    (byte)InjectInstr.RET, (byte)(size & 0xFF), (byte)(size >> 8)
                };
                NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
                NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
                NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
                NativeCall.CloseHandle(hProcess);
                return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
            }
            else
            {
                var array = new byte[1] {
                    (byte)InjectInstr.RETN
                };
                NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
                NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
                NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
                NativeCall.CloseHandle(hProcess);
                return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
            }
        }
Пример #2
0
 /// <summary>
 /// Writes byte array passed to the process specified at the address provided.
 /// </summary>
 /// <param name="hProcess">Pointer to process where write memory.</param>
 /// <param name="address">Address of the process at which memory writing should occur.</param>
 /// <param name="array">Byte array to write to memory..</param>
 /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
 public static InjectResult WriteMemory(IntPtr hProcess, uint address, byte[] array)
 {
     NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
     NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
     NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
     return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
 }
Пример #3
0
        /// <summary>
        /// Writes memory of an object passed to the process specified at the address provided.
        /// </summary>
        /// <param name="hProcess">Pointer to process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="value"><see cref="IConvertible"/> to write.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult WriteMemory(IntPtr hProcess, uint address, IConvertible value)
        {
            var array = value.GetMemory();

            if (array == null)
            {
                return(InjectResult.ByteCastFailure);
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #4
0
        /// <summary>
        /// Writes byte array passed to the process specified at the address provided.
        /// </summary>
        /// <param name="process">Process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="array">Byte array to write to memory.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult WriteMemory(Process process, uint address, byte[] array)
        {
            var hProcess = NativeCall.OpenProcess(ProcessAccessFlags.All, false, process.Id);

            if (array == null)
            {
                return(InjectResult.ByteCastFailure);
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            NativeCall.CloseHandle(hProcess);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #5
0
        /// <summary>
        /// Writes CALL instruction to the address provided in the process specified.
        /// </summary>
        /// <param name="hProcess">Pointer to process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="function">Function that should be called.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult MakeCALL(IntPtr hProcess, uint address, uint function)
        {
            var array = new byte[5] {
                (byte)InjectInstr.CALL, 0, 0, 0, 0
            };
            var diff = BitConverter.GetBytes(function - address - 5);

            for (int a1 = 0; a1 < 4; ++a1)
            {
                array[1 + a1] = diff[a1];
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #6
0
        /// <summary>
        /// Makes function at the specified address of the process provided return a
        /// specific value passed.
        /// </summary>
        /// <param name="hProcess">Pointer to process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="value">Value that function should return.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult ReturnValue(IntPtr hProcess, uint address, uint value)
        {
            var array = new byte[6] {
                (byte)InjectInstr.MOV, 0, 0, 0, 0, (byte)InjectInstr.RETN
            };
            var diff = BitConverter.GetBytes(value);

            for (int a1 = 0; a1 < 4; ++a1)
            {
                array[1 + a1] = diff[a1];
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #7
0
        /// <summary>
        /// Writes NOP instructions to the address provided in the process specified.
        /// </summary>
        /// <param name="hProcess">Pointer to process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="size">Size of the NOP.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult MakeNOP(IntPtr hProcess, uint address, int size)
        {
            if (size <= 0)
            {
                return(InjectResult.InvalidSize);
            }
            var array = new byte[size];

            for (int a1 = 0; a1 < size; ++a1)
            {
                array[a1] = (byte)InjectInstr.NOP;
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #8
0
        /// <summary>
        /// Writes JMP instruction to the address provided in the process specified.
        /// </summary>
        /// <param name="process">Process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="function">Function to where JMP point.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult MakeJMP(Process process, uint address, uint function)
        {
            var hProcess = NativeCall.OpenProcess(ProcessAccessFlags.All, false, process.Id);
            var array    = new byte[5] {
                (byte)InjectInstr.JMP, 0, 0, 0, 0
            };
            var diff = BitConverter.GetBytes(function - address - 5);

            for (int a1 = 0; a1 < 4; ++a1)
            {
                array[1 + a1] = diff[a1];
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            NativeCall.CloseHandle(hProcess);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }
Пример #9
0
        /// <summary>
        /// Makes function at the specified address of the process provided return a
        /// specific value passed.
        /// </summary>
        /// <param name="process">Process where write memory.</param>
        /// <param name="address">Address of the process at which memory writing should occur.</param>
        /// <param name="value">Value that function should return. This value should
        /// be convertible to 4-byte unsigned integer type.</param>
        /// <returns><see cref="InjectResult"/> of the memory writing.</returns>
        public static InjectResult ReturnValue(Process process, uint address, object value)
        {
            var hProcess = NativeCall.OpenProcess(ProcessAccessFlags.All, false, process.Id);
            var array    = new byte[6] {
                (byte)InjectInstr.MOV, 0, 0, 0, 0, (byte)InjectInstr.RETN
            };
            var val = value.ReinterpretCast(typeof(uint));

            if (val == null)
            {
                return(InjectResult.ByteCastFailure);
            }
            var diff = BitConverter.GetBytes((uint)val);

            for (int a1 = 0; a1 < 4; ++a1)
            {
                array[1 + a1] = diff[a1];
            }
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, 4, out var old);
            NativeCall.WriteProcessMemory(hProcess, (IntPtr)address, array, (uint)array.Length, out var num);
            NativeCall.VirtualProtect(hProcess, (IntPtr)address, (UIntPtr)array.Length, old, out old);
            NativeCall.CloseHandle(hProcess);
            return(array.Length == num ? InjectResult.Success : InjectResult.WritingFailed);
        }