/** * Steamless - Copyright (c) 2015 - 2019 atom0s [atom0s@live.com] * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to * Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. * * By using Steamless, you agree to the above license and its terms. * * Attribution - You must give appropriate credit, provide a link to the license and indicate if changes were * made. You must do so in any reasonable manner, but not in any way that suggests the licensor * endorses you or your use. * * Non-Commercial - You may not use the material (Steamless) for commercial purposes. * * No-Derivatives - If you remix, transform, or build upon the material (Steamless), you may not distribute the * modified material. You are, however, allowed to submit the modified works back to the original * Steamless project in attempt to have it added to the original project. * * You may not apply legal terms or technological measures that legally restrict others * from doing anything the license permits. * * No warranties are given. */ namespace Steamless.API.PE32 { using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; public class Pe32Helpers { /// /// Converts a byte array to the given structure type. /// /// /// /// /// public static T GetStructure(byte[] data, int offset = 0) { var ptr = Marshal.AllocHGlobal(data.Length); Marshal.Copy(data, offset, ptr, data.Length - offset); var obj = (T)Marshal.PtrToStructure(ptr, typeof(T)); Marshal.FreeHGlobal(ptr); return obj; } /// /// Converts the given object back to a byte array. /// /// /// /// public static byte[] GetStructureBytes(T obj) { var size = Marshal.SizeOf(obj); var data = new byte[size]; var ptr = Marshal.AllocHGlobal(size); Marshal.StructureToPtr(obj, ptr, true); Marshal.Copy(ptr, data, 0, size); Marshal.FreeHGlobal(ptr); return data; } /// /// Obtains a section from the given file information. /// /// /// /// /// /// public static NativeApi32.ImageSectionHeader32 GetSection(byte[] rawData, int index, NativeApi32.ImageDosHeader32 dosHeader, NativeApi32.ImageNtHeaders32 ntHeaders) { var sectionSize = Marshal.SizeOf(typeof(NativeApi32.ImageSectionHeader32)); var optionalHeaderOffset = Marshal.OffsetOf(typeof(NativeApi32.ImageNtHeaders32), "OptionalHeader").ToInt32(); var dataOffset = dosHeader.e_lfanew + optionalHeaderOffset + ntHeaders.FileHeader.SizeOfOptionalHeader; return GetStructure(rawData, dataOffset + (index * sectionSize)); } /// /// Scans the given data for the given pattern. /// /// Notes: /// Patterns are assumed to be 2 byte hex values with spaces. /// Wildcards are represented by ??. /// /// /// /// public static uint FindPattern(byte[] data, string pattern) { try { // Trim the pattern from extra whitespace.. var trimPattern = pattern.Replace(" ", "").Trim(); // Convert the pattern to a byte array.. var patternMask = new List(); var patternData = Enumerable.Range(0, trimPattern.Length).Where(x => x % 2 == 0) .Select(x => { var bt = trimPattern.Substring(x, 2); patternMask.Add(!bt.Contains('?')); return bt.Contains('?') ? (byte)0 : Convert.ToByte(bt, 16); }).ToArray(); // Scan the given data for our pattern.. for (var x = 0; x < data.Length; x++) { if (!patternData.Where((t, y) => patternMask[y] && t != data[x + y]).Any()) return (uint)x; } return 0; } catch { return 0; } } } }