Daniel Seiller
8d92f25b8c
- Started implementing new parser for chunked data - Started documenting data formats - Started dissector for network protocol - Added AI-Graph renderer (converts .pth files to python data you can import into Blender) - Added Script to convert savefile to JSON - Added (old) parser for chunked data format - Added basic parser for LFVF data section (Vertex Data) - Added script to analyze and filter read trace generated with frida script - Added various Frida scripts
8 lines
No EOL
194 B
JavaScript
8 lines
No EOL
194 B
JavaScript
MemoryAccessMonitor.enable({
|
|
base: ptr("0x7fe944"),
|
|
size: 4
|
|
}, {
|
|
onAccess: function (details) {
|
|
console.log(details.operation, details.from, details.address)
|
|
},
|
|
}) |