gitextract_3ejl9pf4/ ├── .gitattributes ├── .gitignore ├── DllExport.bat ├── ERC/ │ ├── .gitignore │ ├── Documentation/ │ │ ├── .gitignore │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ └── index.md │ │ ├── articles/ │ │ │ ├── LICENSE.md │ │ │ ├── intro.md │ │ │ └── toc.yml │ │ ├── docfx.json │ │ ├── index.md │ │ └── toc.yml │ ├── ERC/ │ │ ├── .gitignore │ │ ├── Convert.cs │ │ ├── Display_Output.cs │ │ ├── ERC.Net.csproj │ │ ├── ERC.Net.xml │ │ ├── ERCException.cs │ │ ├── ERC_Core.cs │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Heap_Info.cs │ │ ├── Module_Info.cs │ │ ├── Opcode_Assembler.cs │ │ ├── Opcode_Disassembler.cs │ │ ├── Pattern_Tools.cs │ │ ├── Payloads.cs │ │ ├── Process_Info.cs │ │ ├── PtrRemover.cs │ │ ├── RopChainGenerator32.cs │ │ ├── RopChainGenerator64.cs │ │ ├── Thread_Info.cs │ │ └── Win32Errors.cs │ ├── LICENSE │ ├── README.md │ └── docs/ │ ├── api/ │ │ ├── ERC.DisplayOutput.html │ │ ├── ERC.ERCException.html │ │ ├── ERC.ErcCore.html │ │ ├── ERC.ErcResult-1.html │ │ ├── ERC.MachineType.html │ │ ├── ERC.ModuleInfo.html │ │ ├── ERC.ProcessInfo.html │ │ ├── ERC.Structures.AllocationProtect.html │ │ ├── ERC.Structures.CONTEXT32.html │ │ ├── ERC.Structures.CONTEXT64.html │ │ ├── ERC.Structures.CONTEXT_FLAGS.html │ │ ├── ERC.Structures.ClientID.html │ │ ├── ERC.Structures.FLOATING_SAVE_AREA.html │ │ ├── ERC.Structures.IMAGE_DATA_DIRECTORY.html │ │ ├── ERC.Structures.IMAGE_DOS_HEADER.html │ │ ├── ERC.Structures.IMAGE_FILE_HEADER.html │ │ ├── ERC.Structures.IMAGE_LOAD_CONFIG_CODE_INTEGRITY.html │ │ ├── ERC.Structures.IMAGE_LOAD_CONFIG_DIRECTORY32.html │ │ ├── ERC.Structures.IMAGE_LOAD_CONFIG_DIRECTORY64.html │ │ ├── ERC.Structures.IMAGE_NT_HEADERS32.html │ │ ├── ERC.Structures.IMAGE_NT_HEADERS64.html │ │ ├── ERC.Structures.IMAGE_OPTIONAL_HEADER32.html │ │ ├── ERC.Structures.IMAGE_OPTIONAL_HEADER64.html │ │ ├── ERC.Structures.LIST_ENTRY.html │ │ ├── ERC.Structures.LOADED_IMAGE.html │ │ ├── ERC.Structures.LoadLibraryFlags.html │ │ ├── ERC.Structures.M128A.html │ │ ├── ERC.Structures.MEMORY_BASIC_INFORMATION32.html │ │ ├── ERC.Structures.MEMORY_BASIC_INFORMATION64.html │ │ ├── ERC.Structures.MagicType.html │ │ ├── ERC.Structures.ProcessAccessFlags.html │ │ ├── ERC.Structures.RegisterInfo.html │ │ ├── ERC.Structures.StateEnum.html │ │ ├── ERC.Structures.SubSystemType.html │ │ ├── ERC.Structures.TEB.html │ │ ├── ERC.Structures.ThreadAccess.html │ │ ├── ERC.Structures.ThreadBasicInformation.html │ │ ├── ERC.Structures.TypeEnum.html │ │ ├── ERC.Structures.XSAVE_FORMAT64.html │ │ ├── ERC.Structures.html │ │ ├── ERC.ThreadInfo.html │ │ ├── ERC.Utilities.Convert.html │ │ ├── ERC.Utilities.OpcodeAssembler.html │ │ ├── ERC.Utilities.OpcodeDisassembler.html │ │ ├── ERC.Utilities.PatternTools.html │ │ ├── ERC.Utilities.Payloads.html │ │ ├── ERC.Utilities.PtrRemover.html │ │ ├── ERC.Utilities.RopChainGenerator32.X86Lists.html │ │ ├── ERC.Utilities.RopChainGenerator32.html │ │ ├── ERC.Utilities.RopChainGenerator64.X64Lists.html │ │ ├── ERC.Utilities.RopChainGenerator64.html │ │ ├── ERC.Utilities.html │ │ ├── ERC.html │ │ ├── index.html │ │ └── toc.html │ ├── articles/ │ │ ├── LICENSE.html │ │ ├── intro.html │ │ └── toc.html │ ├── index.html │ ├── manifest.json │ ├── search-stopwords.json │ ├── styles/ │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── lunr.js │ │ ├── main.css │ │ ├── main.js │ │ └── search-worker.js │ ├── toc.html │ └── xrefmap.yml ├── ERC.net/ │ └── ERC/ │ └── ERC.Net.xml ├── ErcXdbg/ │ ├── AssemblyInfo.cs │ ├── ErcMain.cs │ ├── ErcXdbg.cs │ ├── ErcXdbgPlugin.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Globals.cs │ ├── RegisteredCommands.cs │ ├── app.config │ └── packages.config ├── ErcXdbgPlugin.sln ├── LICENSE ├── Managed.x64dbg/ │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Managed.x64dbg.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SDK/ │ │ ├── Bridge.cs │ │ ├── Extensions.cs │ │ ├── PLog.cs │ │ ├── Plugins.cs │ │ ├── TitanEngine.cs │ │ └── WAPI.cs │ ├── Script/ │ │ └── Module.cs │ ├── app.config │ └── packages.config ├── README.md └── packages/ ├── .gitignore └── repositories.config