Compare commits
10 Commits
c8fb5d537d
...
ea6a009c0d
| Author | SHA1 | Date | |
|---|---|---|---|
|
ea6a009c0d
|
|||
|
bc2eefface
|
|||
|
a0ea3a3bbf
|
|||
|
92ac5ec7d8
|
|||
|
07ac6f6fc3
|
|||
|
7b47a70448
|
|||
|
96082f33aa
|
|||
|
945c1fe0bc
|
|||
|
5efff7c84e
|
|||
|
83ae53768c
|
7
.gitattributes
vendored
7
.gitattributes
vendored
@ -5,3 +5,10 @@ fail/bin/import-trace filter=lfs diff=lfs merge=lfs -text
|
||||
fail/bin/prune-trace filter=lfs diff=lfs merge=lfs -text
|
||||
fail/share/** filter=lfs diff=lfs merge=lfs -text
|
||||
just-bin/just filter=lfs diff=lfs merge=lfs -text
|
||||
injections/** filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
ghidra/**/*.db filter=lfs diff=lfs merge=lfs -text
|
||||
ghidra/**/*.gbf filter=lfs diff=lfs merge=lfs -text
|
||||
ghidra/**/*.prp filter=lfs diff=lfs merge=lfs -text
|
||||
ghidra/**/*.bak filter=lfs diff=lfs merge=lfs -text
|
||||
ghidra/**/*.dat filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
/build-*
|
||||
/ghidra/projects/**/*.lock*
|
||||
|
||||
BIN
fail-tables.png
(Stored with Git LFS)
Normal file
BIN
fail-tables.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -112,10 +112,10 @@ result module:
|
||||
[doc("Dump FAIL* markers to CSV")]
|
||||
[group("4: fail")]
|
||||
result-csv module:
|
||||
# INTO OUTFILE '/home/lab/smchurla/out.csv'
|
||||
# FIELDS TERMINATED BY ',' ENCLOSED BY '\"'
|
||||
# LINES TERMINATED BY '\n';"
|
||||
@echo "SELECT CONCAT(\"0x\", HEX(p.injection_instr_absolute)) AS fault_address, SUM(t.time2 - t.time1 + 1) AS total_fail_markers FROM trace t \
|
||||
@echo "SELECT \
|
||||
CONCAT(\"0x\", HEX(p.injection_instr_absolute)) AS fault_address, \
|
||||
SUM(t.time2 - t.time1 + 1) AS total_fail_markers \
|
||||
FROM trace t \
|
||||
JOIN variant v ON v.id = t.variant_id \
|
||||
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_address = t.data_address \
|
||||
JOIN result_GenericExperimentMessage r ON r.pilot_id = g.pilot_id \
|
||||
|
||||
0
ghidra/projects/2026-03-18_20-53_sum_c_fail.gpr
Normal file
0
ghidra/projects/2026-03-18_20-53_sum_c_fail.gpr
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/00/00000000.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/00/00000000.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/00/~00000000.db/db.2.gbf
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/00/~00000000.db/db.2.gbf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~index.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~index.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~journal.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/idata/~journal.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/project.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/project.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
18
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/projectState
Normal file
18
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/projectState
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PROJECT>
|
||||
<PROJECT_DATA_XML_NAME NAME="DISPLAY_DATA">
|
||||
<SAVE_STATE>
|
||||
<ARRAY NAME="EXPANDED_PATHS" TYPE="string">
|
||||
<A VALUE="2026-03-18_20-53_sum_c_fail:" />
|
||||
</ARRAY>
|
||||
<STATE NAME="SHOW_TABLE" TYPE="boolean" VALUE="false" />
|
||||
</SAVE_STATE>
|
||||
</PROJECT_DATA_XML_NAME>
|
||||
<PROJECT_DATA_XML_NAME NAME="LOADER_OPTIONS">
|
||||
<SAVE_STATE />
|
||||
</PROJECT_DATA_XML_NAME>
|
||||
<TOOL_MANAGER ACTIVE_WORKSPACE="Workspace">
|
||||
<WORKSPACE NAME="Workspace" ACTIVE="true" />
|
||||
</TOOL_MANAGER>
|
||||
</PROJECT>
|
||||
|
||||
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/00/00000000.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/00/00000000.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/00/~00000000.db/db.1.gbf
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/00/~00000000.db/db.1.gbf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/~journal.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/user/~journal.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/versioned/~index.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/versioned/~index.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/versioned/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_20-53_sum_c_fail.rep/versioned/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
0
ghidra/projects/2026-03-18_22-56_sum_aot_fail.gpr
Normal file
0
ghidra/projects/2026-03-18_22-56_sum_aot_fail.gpr
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/00/00000000.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/00/00000000.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/00/~00000000.db/db.2.gbf
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/00/~00000000.db/db.2.gbf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~index.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~index.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~journal.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/idata/~journal.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/project.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/project.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
419
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/projectState
Normal file
419
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/projectState
Normal file
@ -0,0 +1,419 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<PROJECT>
|
||||
<PROJECT_DATA_XML_NAME NAME="DISPLAY_DATA">
|
||||
<SAVE_STATE>
|
||||
<ARRAY NAME="EXPANDED_PATHS" TYPE="string">
|
||||
<A VALUE="2026-03-18_22-56_sum_aot_fail:" />
|
||||
</ARRAY>
|
||||
<STATE NAME="SHOW_TABLE" TYPE="boolean" VALUE="false" />
|
||||
</SAVE_STATE>
|
||||
</PROJECT_DATA_XML_NAME>
|
||||
<PROJECT_DATA_XML_NAME NAME="LOADER_OPTIONS">
|
||||
<SAVE_STATE />
|
||||
</PROJECT_DATA_XML_NAME>
|
||||
<TOOL_MANAGER ACTIVE_WORKSPACE="Workspace">
|
||||
<WORKSPACE NAME="Workspace" ACTIVE="true">
|
||||
<RUNNING_TOOL TOOL_NAME="CodeBrowser">
|
||||
<ROOT_NODE X_POS="1920" Y_POS="0" WIDTH="1710" HEIGHT="1382" EX_STATE="0">
|
||||
<SPLIT_NODE WIDTH="1621" HEIGHT="816" DIVIDER_LOCATION="148" ORIENTATION="VERTICAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Entropy" OWNER="EntropyPlugin" TITLE="Entropy" ACTIVE="false" GROUP="Header" INSTANCE_ID="3207819926581772885" />
|
||||
<COMPONENT_INFO NAME="Overview" OWNER="OverviewPlugin" TITLE="Overview" ACTIVE="false" GROUP="Header" INSTANCE_ID="3207819926581772883" />
|
||||
</COMPONENT_NODE>
|
||||
<SPLIT_NODE WIDTH="1710" HEIGHT="1297" DIVIDER_LOCATION="185" ORIENTATION="HORIZONTAL">
|
||||
<SPLIT_NODE WIDTH="316" HEIGHT="1297" DIVIDER_LOCATION="640" ORIENTATION="VERTICAL">
|
||||
<COMPONENT_NODE TOP_INFO="1">
|
||||
<COMPONENT_INFO NAME="Program Tree" OWNER="ProgramTreePlugin" TITLE="Program Trees" ACTIVE="true" GROUP="Default" INSTANCE_ID="3720077652375986239" />
|
||||
<COMPONENT_INFO NAME="Bookmarks" OWNER="BookmarkPlugin" TITLE="Bookmarks" ACTIVE="true" GROUP="Core.Bookmarks" INSTANCE_ID="3720077652375986238" />
|
||||
</COMPONENT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="DataTypes Provider" OWNER="DataTypeManagerPlugin" TITLE="Data Type Manager" ACTIVE="true" GROUP="Default" INSTANCE_ID="3720077673712410662" />
|
||||
<COMPONENT_INFO NAME="Symbol Tree" OWNER="SymbolTreePlugin" TITLE="Symbol Tree" ACTIVE="true" GROUP="Default" INSTANCE_ID="3720077652375986234" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
<SPLIT_NODE WIDTH="2791" HEIGHT="1297" DIVIDER_LOCATION="664" ORIENTATION="VERTICAL">
|
||||
<SPLIT_NODE WIDTH="2934" HEIGHT="733" DIVIDER_LOCATION="705" ORIENTATION="VERTICAL">
|
||||
<SPLIT_NODE WIDTH="1390" HEIGHT="1297" DIVIDER_LOCATION="557" ORIENTATION="HORIZONTAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Listing" OWNER="CodeBrowserPlugin" TITLE="Listing: system.elf" ACTIVE="true" GROUP="Core" INSTANCE_ID="3720077673225871399" />
|
||||
</COMPONENT_NODE>
|
||||
<SPLIT_NODE WIDTH="614" HEIGHT="1297" DIVIDER_LOCATION="606" ORIENTATION="VERTICAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Decompiler" OWNER="DecompilePlugin" TITLE="Decompile: wasm_runtime_call_wasm" ACTIVE="true" GROUP="Default" INSTANCE_ID="3720077673225871392" />
|
||||
<COMPONENT_INFO NAME="Bytes" OWNER="ByteViewerPlugin" TITLE="Bytes: system.elf" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871394" />
|
||||
<COMPONENT_INFO NAME="Data Window" OWNER="DataWindowPlugin" TITLE="Defined Data" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410677" />
|
||||
<COMPONENT_INFO NAME="Defined Strings" OWNER="ViewStringsPlugin" TITLE="Defined Strings" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410681" />
|
||||
<COMPONENT_INFO NAME="Equates Table" OWNER="EquateTablePlugin" TITLE="Equates Table" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871397" />
|
||||
<COMPONENT_INFO NAME="External Programs" OWNER="ReferencesPlugin" TITLE="External Programs" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871400" />
|
||||
<COMPONENT_INFO NAME="Functions Window" OWNER="FunctionWindowPlugin" TITLE="Functions" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871403" />
|
||||
<COMPONENT_INFO NAME="Relocation Table" OWNER="RelocationTablePlugin" TITLE="Relocation Table" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410680" />
|
||||
</COMPONENT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Function Call Trees" OWNER="CallTreePlugin" TITLE="Function Call Trees: wasm_runtime_call_wasm" ACTIVE="true" GROUP="Default" INSTANCE_ID="3720077652375986235" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</SPLIT_NODE>
|
||||
<SPLIT_NODE WIDTH="1386" HEIGHT="189" DIVIDER_LOCATION="495" ORIENTATION="HORIZONTAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Data Type Preview" OWNER="DataTypePreviewPlugin" TITLE="Data Type Preview" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673641107496" />
|
||||
</COMPONENT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Virtual Disassembler - Current Instruction" OWNER="DisassembledViewPlugin" TITLE="Disassembled View" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871396" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</SPLIT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Console" OWNER="ConsolePlugin" TITLE="Console" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871393" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</SPLIT_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1710" HEIGHT="1382">
|
||||
<SPLIT_NODE WIDTH="3428" HEIGHT="1323" DIVIDER_LOCATION="619" ORIENTATION="HORIZONTAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Script Manager" OWNER="GhidraScriptMgrPlugin" TITLE="Script Manager" ACTIVE="false" GROUP="Script Group" INSTANCE_ID="3720077652375986236" />
|
||||
</COMPONENT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Script Editor" OWNER="GhidraScriptMgrPlugin" TITLE="ImportMarkersAsBookmarks.java" ACTIVE="false" GROUP="Script Group" INSTANCE_ID="3719883365486679291" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1745" HEIGHT="1168">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Memory Map" OWNER="MemoryMapPlugin" TITLE="Memory Map" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077652375986224" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="383" Y_POS="7" WIDTH="1020" HEIGHT="1038">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Function Graph" OWNER="FunctionGraphPlugin" TITLE="Function Graph" ACTIVE="false" GROUP="Function Graph" INSTANCE_ID="3720077673712410682" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="550" Y_POS="206" WIDTH="655" HEIGHT="509">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Register Manager" OWNER="RegisterPlugin" TITLE="Register Manager" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871402" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1424" HEIGHT="666">
|
||||
<SPLIT_NODE WIDTH="1408" HEIGHT="559" DIVIDER_LOCATION="573" ORIENTATION="HORIZONTAL">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Symbol Table" OWNER="SymbolTablePlugin" TITLE="Symbol Table" ACTIVE="false" GROUP="symbolTable" INSTANCE_ID="3720077673712410678" />
|
||||
</COMPONENT_NODE>
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Symbol References" OWNER="SymbolTablePlugin" TITLE="Symbol References" ACTIVE="false" GROUP="symbolTable" INSTANCE_ID="3720077673712410679" />
|
||||
</COMPONENT_NODE>
|
||||
</SPLIT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="-1" Y_POS="-1" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Checksum Generator" OWNER="ComputeChecksumsPlugin" TITLE="Checksum Generator" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871398" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="-1" Y_POS="-1" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Function Tags" OWNER="FunctionTagPlugin" TITLE="Function Tags" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410663" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="-1" Y_POS="-1" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Comment Window" OWNER="CommentWindowPlugin" TITLE="Comments" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410676" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="-1" Y_POS="-1" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Python" OWNER="InterpreterPanelPlugin" TITLE="Python" ACTIVE="false" GROUP="Default" INSTANCE_ID="3207819978370941531" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="0" Y_POS="0" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Source Files and Transforms" OWNER="SourceFilesTablePlugin" TITLE="Source Files and Transforms" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673225871401" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="0" Y_POS="0" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="PyGhidra" OWNER="PyGhidra" TITLE="PyGhidra" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410675" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="0" Y_POS="0" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Jython" OWNER="Jython" TITLE="Jython" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077673712410664" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1710" HEIGHT="1382">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Bundle Manager" OWNER="GhidraScriptMgrPlugin" TITLE="Bundle Manager" ACTIVE="false" GROUP="Default" INSTANCE_ID="3720077652375986237" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="0" Y_POS="0" WIDTH="0" HEIGHT="0">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Function Call Graph" OWNER="FunctionCallGraphPlugin" TITLE="Function Call Graph" ACTIVE="false" GROUP="Function Call Graph" INSTANCE_ID="3720077673641107497" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1710" HEIGHT="1382">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Graph" OWNER="DefaultGraphDisplay" TITLE="Code Flow Graph: wasm_runtime_call_wasm" ACTIVE="false" GROUP="ProgramGraph" INSTANCE_ID="3718980025694815627" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="1710" HEIGHT="1382">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Operands" OWNER="TableServicePlugin" TITLE="Operand References for 00100011" ACTIVE="false" GROUP="Default" INSTANCE_ID="3718980025694815637" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
<WINDOW_NODE X_POS="1920" Y_POS="0" WIDTH="938" HEIGHT="579">
|
||||
<COMPONENT_NODE TOP_INFO="0">
|
||||
<COMPONENT_INFO NAME="Instruction Info" OWNER="ShowInstructionInfoPlugin" TITLE="Instruction Info: Address 0011e4b7" ACTIVE="false" GROUP="Default" INSTANCE_ID="3719900393528349943" />
|
||||
</COMPONENT_NODE>
|
||||
</WINDOW_NODE>
|
||||
</ROOT_NODE>
|
||||
<DATA_STATE>
|
||||
<PLUGIN NAME="NavigationHistoryPlugin">
|
||||
<XML NAME="HISTORY_LIST_0">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="CURRENT_LOC_INDEX" TYPE="int" VALUE="2" />
|
||||
<STATE NAME="LOCATION_COUNT" TYPE="int" VALUE="3" />
|
||||
<STATE NAME="MEMENTO_CLASS0" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<STATE NAME="MEMENTO_CLASS1" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<STATE NAME="MEMENTO_CLASS2" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<XML NAME="MEMENTO_DATA0">
|
||||
<SAVE_STATE>
|
||||
<XML NAME="MEMENTO0">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="CURSOR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.codebrowser.CodeViewerLocationMemento" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871399" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00100000" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00100000" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.MemoryBlockStartFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<ARRAY NAME="_COMMENT" TYPE="string">
|
||||
<A VALUE="//" />
|
||||
<A VALUE="// .text" />
|
||||
<A VALUE="// SHT_PROGBITS [0x100000 - 0x1405c7]" />
|
||||
<A VALUE="// ram:00100000-ram:001405c7" />
|
||||
<A VALUE="//" />
|
||||
</ARRAY>
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_TYPE" TYPE="int" VALUE="-1" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<STATE NAME="NUM_MEMENTOS" TYPE="int" VALUE="1" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00100000" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00100000" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.MemoryBlockStartFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<ARRAY NAME="_COMMENT" TYPE="string">
|
||||
<A VALUE="//" />
|
||||
<A VALUE="// .text" />
|
||||
<A VALUE="// SHT_PROGBITS [0x100000 - 0x1405c7]" />
|
||||
<A VALUE="// ram:00100000-ram:001405c7" />
|
||||
<A VALUE="//" />
|
||||
</ARRAY>
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_TYPE" TYPE="int" VALUE="-1" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<XML NAME="MEMENTO_DATA1">
|
||||
<SAVE_STATE>
|
||||
<XML NAME="MEMENTO0">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="INDEX" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.decompile.DecompilerLocationMemento" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871392" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="X_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Y_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.FunctionReturnTypeFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_FUNC_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_RETURN_TYPE" TYPE="string" VALUE="void" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_SIGNATURE" TYPE="string" VALUE="void processEntry _start(void)" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<XML NAME="MEMENTO1">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="CURSOR_OFFSET" TYPE="int" VALUE="468" />
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.codebrowser.CodeViewerLocationMemento" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871399" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.FunctionReturnTypeFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_FUNC_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_RETURN_TYPE" TYPE="string" VALUE="void" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_SIGNATURE" TYPE="string" VALUE="void processEntry _start(void)" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<STATE NAME="NUM_MEMENTOS" TYPE="int" VALUE="2" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.FunctionReturnTypeFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_FUNC_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_RETURN_TYPE" TYPE="string" VALUE="void" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_SIGNATURE" TYPE="string" VALUE="void processEntry _start(void)" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<XML NAME="MEMENTO_DATA2">
|
||||
<SAVE_STATE>
|
||||
<XML NAME="MEMENTO0">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="INDEX" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.decompile.DecompilerLocationMemento" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871392" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="X_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Y_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.FunctionReturnTypeFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_FUNC_ADDRESS" TYPE="string" VALUE="0010000c" />
|
||||
<STATE NAME="_RETURN_TYPE" TYPE="string" VALUE="void" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_SIGNATURE" TYPE="string" VALUE="void processEntry _start(void)" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<XML NAME="MEMENTO1">
|
||||
<SAVE_STATE>
|
||||
<STATE NAME="CURSOR_OFFSET" TYPE="int" VALUE="633" />
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.codebrowser.CodeViewerLocationMemento" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871399" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_ADDR_REP" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.AddressFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<STATE NAME="MEMENTO_CLASS" TYPE="string" VALUE="ghidra.app.plugin.core.gotoquery.DefaultNavigatableLocationMemento" />
|
||||
<STATE NAME="NUM_MEMENTOS" TYPE="int" VALUE="2" />
|
||||
<STATE NAME="PROGRAM_ID" TYPE="long" VALUE="3720077563001659439" />
|
||||
<STATE NAME="PROGRAM_PATH_" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail:/system.elf" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_ADDR_REP" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.AddressFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="-1" />
|
||||
</SAVE_STATE>
|
||||
</XML>
|
||||
<STATE NAME="LIST_COUNT" TYPE="int" VALUE="1" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="ProgramTreePlugin">
|
||||
<STATE NAME="Current Viewname" TYPE="string" VALUE="Program Tree" />
|
||||
<ARRAY NAME="GroupNameDWARF0" TYPE="string">
|
||||
<A VALUE="system.elf" />
|
||||
</ARRAY>
|
||||
<ARRAY NAME="GroupNameProgram Tree0" TYPE="string">
|
||||
<A VALUE="system.elf" />
|
||||
</ARRAY>
|
||||
<STATE NAME="NavigationToggleState" TYPE="boolean" VALUE="false" />
|
||||
<STATE NAME="NumberOfGroupsDWARF" TYPE="int" VALUE="1" />
|
||||
<STATE NAME="NumberOfGroupsProgram Tree" TYPE="int" VALUE="1" />
|
||||
<STATE NAME="NumberOfViews" TYPE="int" VALUE="2" />
|
||||
<STATE NAME="TreeName-0" TYPE="string" VALUE="Program Tree" />
|
||||
<STATE NAME="TreeName-1" TYPE="string" VALUE="DWARF" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="DecompilePlugin">
|
||||
<STATE NAME="INDEX" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871392" />
|
||||
<STATE NAME="Num Disconnected" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Y_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_ADDR_REP" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.AddressFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="ByteViewerPlugin">
|
||||
<STATE NAME="Block Column" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Block Num" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Block Offset" TYPE="string" VALUE="0" />
|
||||
<STATE NAME="Index" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871394" />
|
||||
<STATE NAME="Num Disconnected" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="X Offset" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Y Offset" TYPE="int" VALUE="0" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="ProgramManagerPlugin">
|
||||
<STATE NAME="CURRENT_FILE" TYPE="string" VALUE="system.elf" />
|
||||
<STATE NAME="LOCATION_0" TYPE="string" VALUE="/home/christoph/Notes/TU/MastersThesis/FailNix/ghidra/projects/" />
|
||||
<STATE NAME="NUM_PROGRAMS" TYPE="int" VALUE="1" />
|
||||
<STATE NAME="PATHNAME_0" TYPE="string" VALUE="/system.elf" />
|
||||
<STATE NAME="PROJECT_NAME_0" TYPE="string" VALUE="2026-03-18_22-56_sum_aot_fail" />
|
||||
<STATE NAME="VERSION_0" TYPE="int" VALUE="-1" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_ADDR_REP" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.AddressFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="FunctionGraphPlugin">
|
||||
<SAVE_STATE NAME="COMPLEX_LAYOUT_NAME" TYPE="SaveState">
|
||||
<COMPLEX_LAYOUT_NAME>
|
||||
<STATE NAME="LAYOUT_CLASS_NAME" TYPE="string" VALUE="ghidra.app.plugin.core.functiongraph.graph.layout.DecompilerNestedLayoutProvider" />
|
||||
<STATE NAME="LAYOUT_NAME" TYPE="string" VALUE="Nested Code Layout" />
|
||||
</COMPLEX_LAYOUT_NAME>
|
||||
</SAVE_STATE>
|
||||
<STATE NAME="DISPLAY_POPUPS" TYPE="boolean" VALUE="true" />
|
||||
<STATE NAME="DISPLAY_SATELLITE" TYPE="boolean" VALUE="true" />
|
||||
<STATE NAME="DOCK_SATELLITE" TYPE="boolean" VALUE="true" />
|
||||
<STATE NAME="DOCK_SATELLITE_POSITION" TYPE="string" VALUE="LOWER_RIGHT" />
|
||||
<STATE NAME="Disconnected Count" TYPE="int" VALUE="0" />
|
||||
<ENUM NAME="EDGE_HOVER_HIGHLIGHT" TYPE="enum" CLASS="ghidra.app.plugin.core.functiongraph.EdgeDisplayType" VALUE="ScopedFlowsFromVertex" />
|
||||
<ENUM NAME="EDGE_SELECTION_HIGHLIGHT" TYPE="enum" CLASS="ghidra.app.plugin.core.functiongraph.EdgeDisplayType" VALUE="AllCycles" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673712410682" />
|
||||
</PLUGIN>
|
||||
<PLUGIN NAME="CodeBrowserPlugin">
|
||||
<STATE NAME="INDEX" TYPE="int" VALUE="10978" />
|
||||
<STATE NAME="NAV_ID" TYPE="long" VALUE="3720077673225871399" />
|
||||
<STATE NAME="Num Disconnected" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="Y_OFFSET" TYPE="int" VALUE="-15" />
|
||||
<STATE NAME="_ADDRESS" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_ADDR_REP" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_BYTE_ADDR" TYPE="string" VALUE="00102b2d" />
|
||||
<STATE NAME="_CHAR_OFFSET" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_CLASSNAME" TYPE="string" VALUE="ghidra.program.util.AddressFieldLocation" />
|
||||
<STATE NAME="_COLUMN" TYPE="int" VALUE="0" />
|
||||
<STATE NAME="_ROW" TYPE="int" VALUE="0" />
|
||||
</PLUGIN>
|
||||
</DATA_STATE>
|
||||
</RUNNING_TOOL>
|
||||
</WORKSPACE>
|
||||
</TOOL_MANAGER>
|
||||
</PROJECT>
|
||||
|
||||
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/00/00000000.prp
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/00/00000000.prp
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/00/~00000000.db/db.1.gbf
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/00/~00000000.db/db.1.gbf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/~journal.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/user/~journal.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/versioned/~index.bak
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/versioned/~index.bak
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/versioned/~index.dat
(Stored with Git LFS)
Normal file
BIN
ghidra/projects/2026-03-18_22-56_sum_aot_fail.rep/versioned/~index.dat
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/c_host.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/c_host.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/c_module.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/c_module.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/grub/boot/grub/grub.cfg
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/grub/boot/grub/grub.cfg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/grub/boot/system.elf
(Stored with Git LFS)
Executable file
BIN
injections/2026-03-18_20-53_sum_c_fail/grub/boot/system.elf
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/markers.csv
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/markers.csv
(Stored with Git LFS)
Normal file
Binary file not shown.
|
BIN
injections/2026-03-18_20-53_sum_c_fail/result.txt
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/result.txt
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/startup.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/startup.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/cmos
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/cmos
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/config
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/config
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/cpu0
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/cpu0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/dma
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/dma
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/drive0.buffer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/drive0.buffer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/floppy
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/floppy
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/floppy.buffer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/floppy.buffer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/gameport
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/gameport
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/hard_drive
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/hard_drive
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/ioapic
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/ioapic
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/keyboard
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/keyboard
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/memory
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/memory
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/memory.ram
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/memory.ram
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pc_system
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pc_system
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pic
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pic
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pit
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/pit
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/serial
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/serial
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga.memory
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga.memory
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga.pel_data
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/vga.pel_data
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/state/virt_timer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/state/virt_timer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/system.elf
(Stored with Git LFS)
Executable file
BIN
injections/2026-03-18_20-53_sum_c_fail/system.elf
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/system.iso
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/system.iso
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_20-53_sum_c_fail/trace.pb
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_20-53_sum_c_fail/trace.pb
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/grub/boot/grub/grub.cfg
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/grub/boot/grub/grub.cfg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/grub/boot/system.elf
(Stored with Git LFS)
Executable file
BIN
injections/2026-03-18_22-56_sum_aot_fail/grub/boot/system.elf
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/markers.csv
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/markers.csv
(Stored with Git LFS)
Normal file
Binary file not shown.
|
BIN
injections/2026-03-18_22-56_sum_aot_fail/module_host.c
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/module_host.c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/result.txt
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/result.txt
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/startup.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/startup.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/cmos
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/cmos
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/config
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/config
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/cpu0
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/cpu0
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/dma
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/dma
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/drive0.buffer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/drive0.buffer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/floppy
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/floppy
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/floppy.buffer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/floppy.buffer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/gameport
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/gameport
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/hard_drive
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/hard_drive
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/ioapic
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/ioapic
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/keyboard
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/keyboard
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/memory
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/memory
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/memory.ram
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/memory.ram
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pc_system
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pc_system
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pic
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pic
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pit
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/pit
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/serial
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/serial
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga.memory
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga.memory
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga.pel_data
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/vga.pel_data
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/virt_timer
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/state/virt_timer
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/syscalls.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/syscalls.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.elf
(Stored with Git LFS)
Executable file
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.elf
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.iso
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.iso
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.o
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/system.o
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/trace.pb
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/trace.pb
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/wasm_aot_array.c
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/wasm_aot_array.c
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
injections/2026-03-18_22-56_sum_aot_fail/wasm_module.aot
(Stored with Git LFS)
Normal file
BIN
injections/2026-03-18_22-56_sum_aot_fail/wasm_module.aot
(Stored with Git LFS)
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user