Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit 8748b19

Browse files
committed
Updated README and plugin.json for v1.1.0
1 parent 922614d commit 8748b19

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# EFI Resolver (v1.0.1)
1+
# EFI Resolver (v1.1.0)
22
Author: **Vector 35 Inc**
33

44
_A Binary Ninja plugin that automatically resolves type information for EFI protocol usage._
55

66
## Description:
77

8-
EFI Resolver is a Binary Ninja plugin that automates the task of resolving EFI protocol type information. It propagates pointers to system table, boot services, runtime services, and SMM/MM system table to any global variables where they are stored. The plugin also identifies references to the boot services and SMM/MM protocol functions and applies type information according to the GUID passed to these functions. The plugin supports all of the core UEFI specification, but does not support vendor protocols.
8+
EFI Resolver is a Binary Ninja plugin that automates the task of resolving EFI protocol type information. It propagates pointers to system table, MM system table, boot services, and runtime services to any global variables where they are stored. The plugin also identifies references to the boot services and MM protocol functions and applies type information according to the GUID passed to these functions. The plugin supports the core UEFI specification, but does not support vendor protocols.
99

1010
## Installation Instructions
1111

moduletype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def set_efi_module_entry_type(bv: BinaryView, modtype: EFIModuleType) -> None:
2727
if modtype == EFIModuleType.DXE:
2828
func.type = "EFI_STATUS _start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE* SystemTable)"
2929

30-
func.reanalyze()
30+
bv.update_analysis_and_wait()
3131

3232

3333
def identify_efi_module_type(bv: BinaryView) -> EFIModuleType:

plugin.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"python3"
99
],
1010
"description": "A Binary Ninja plugin that automatically resolves type information for EFI protocol usage.",
11-
"longdescription": "EFI Resolver is a Binary Ninja plugin that automates the task of resolving EFI protocol type information. It propagates pointers to system table, boot services, and runtime services to any global variables where they are stored. The plugin also identifies references to the boot services protocol functions and applies type information according to the GUID passed to these functions. The plugin supports all of the core UEFI specification, but does not support vendor protocols.",
11+
"longdescription": "EFI Resolver is a Binary Ninja plugin that automates the task of resolving EFI protocol type information. It propagates pointers to system table, MM system table, boot services, and runtime services to any global variables where they are stored. The plugin also identifies references to the boot services and MM protocol functions and applies type information according to the GUID passed to these functions. The plugin supports the core UEFI specification, but does not support vendor protocols.",
1212
"license": {
1313
"name": "Apache-2.0",
1414
"text": "Copyright 2023 Vector 35 Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License."
@@ -24,7 +24,7 @@
2424
"Windows": "no special instructions, package manager is recommended"
2525
},
2626
"dependencies": {},
27-
"version": "1.0.1",
27+
"version": "1.1.0",
2828
"author": "Vector 35 Inc",
2929
"minimumbinaryninjaversion": 4333
30-
}
30+
}

0 commit comments

Comments
 (0)