├── .gitattributes ├── .gitignore ├── README.md ├── ViridiX ├── Fasm.NET.dll ├── Fasm.NET.xml ├── Serilog.Sinks.File.dll ├── Serilog.Sinks.File.xml ├── Serilog.Sinks.RollingFile.dll ├── Serilog.Sinks.RollingFile.xml ├── Serilog.dll ├── Serilog.xml ├── ViridiX.Linguist.dll └── ViridiX.Mason.dll ├── XboxImageGrabber.sln ├── XboxImageGrabber ├── D3DParser.cs ├── HaloAddressMappings_v1.0.ini ├── HaloParser.cs ├── PageTableMap.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── launchSettings.json ├── Resources │ └── system_memory_template.png └── XboxImageGrabber.csproj └── _Images ├── memory_profile.png └── system_memory_template.pdn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/README.md -------------------------------------------------------------------------------- /ViridiX/Fasm.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Fasm.NET.dll -------------------------------------------------------------------------------- /ViridiX/Fasm.NET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Fasm.NET.xml -------------------------------------------------------------------------------- /ViridiX/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /ViridiX/Serilog.Sinks.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.Sinks.File.xml -------------------------------------------------------------------------------- /ViridiX/Serilog.Sinks.RollingFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.Sinks.RollingFile.dll -------------------------------------------------------------------------------- /ViridiX/Serilog.Sinks.RollingFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.Sinks.RollingFile.xml -------------------------------------------------------------------------------- /ViridiX/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.dll -------------------------------------------------------------------------------- /ViridiX/Serilog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/Serilog.xml -------------------------------------------------------------------------------- /ViridiX/ViridiX.Linguist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/ViridiX.Linguist.dll -------------------------------------------------------------------------------- /ViridiX/ViridiX.Mason.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/ViridiX/ViridiX.Mason.dll -------------------------------------------------------------------------------- /XboxImageGrabber.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber.sln -------------------------------------------------------------------------------- /XboxImageGrabber/D3DParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/D3DParser.cs -------------------------------------------------------------------------------- /XboxImageGrabber/HaloAddressMappings_v1.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/HaloAddressMappings_v1.0.ini -------------------------------------------------------------------------------- /XboxImageGrabber/HaloParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/HaloParser.cs -------------------------------------------------------------------------------- /XboxImageGrabber/PageTableMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/PageTableMap.cs -------------------------------------------------------------------------------- /XboxImageGrabber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/Program.cs -------------------------------------------------------------------------------- /XboxImageGrabber/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XboxImageGrabber/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/Properties/Resources.resx -------------------------------------------------------------------------------- /XboxImageGrabber/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/Properties/launchSettings.json -------------------------------------------------------------------------------- /XboxImageGrabber/Resources/system_memory_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/Resources/system_memory_template.png -------------------------------------------------------------------------------- /XboxImageGrabber/XboxImageGrabber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/XboxImageGrabber/XboxImageGrabber.csproj -------------------------------------------------------------------------------- /_Images/memory_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/_Images/memory_profile.png -------------------------------------------------------------------------------- /_Images/system_memory_template.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grimdoomer/XboxImageGrabber/HEAD/_Images/system_memory_template.pdn --------------------------------------------------------------------------------