From 37008b7fa16837d04c1658868646cad681cbe035 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 11 Feb 2026 18:04:07 -0800 Subject: Add BNTL utility plugin Allow users to easily create, diff, dump and validate type libraries Supports the following formats: - C header files (via core type parsers) - Binary files (collects exported and imported functions) - WinMD files (via `windows-metadata` crate) - Existing type library files (for easy fixups) - Apiset files (to resolve through forwarded windows dlls) Can be invoked as a regular plugin via UI commands or via CLI. Processing of type libraries inherently requires external linking, processing will automatically merge and deduplicate colliding type libraries so prefer to use inside a project or a directory and process all information (for a given platform) at once, rather than smaller invocations. --- plugins/bntl_utils/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 plugins/bntl_utils/README.md (limited to 'plugins/bntl_utils/README.md') diff --git a/plugins/bntl_utils/README.md b/plugins/bntl_utils/README.md new file mode 100644 index 00000000..2ad2ab4b --- /dev/null +++ b/plugins/bntl_utils/README.md @@ -0,0 +1,5 @@ +# BNTL Utilities + +A plugin and CLI tool for processing Binary Ninja type libraries (BNTL). + +For CLI build instructions and usage see [here](./cli/README.md). \ No newline at end of file -- cgit v1.3.1