From d24a2aab98477025f6d5311053490d9fa14deef4 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 7 Nov 2024 17:03:39 -0500 Subject: WARP: Add manual file loading and initial user settings Also just some general cleanup in the matcher --- plugins/warp/src/plugin.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugins/warp/src/plugin.rs') diff --git a/plugins/warp/src/plugin.rs b/plugins/warp/src/plugin.rs index 67d77dda..66f5c99d 100644 --- a/plugins/warp/src/plugin.rs +++ b/plugins/warp/src/plugin.rs @@ -17,6 +17,7 @@ use warp::signature::function::Function as WarpFunction; mod copy; mod create; mod find; +mod load; mod types; mod workflow; @@ -188,6 +189,11 @@ pub extern "C" fn CorePluginInit() -> bool { "Load all types from a signature file and ignore functions", types::LoadTypes {}, ); + + binaryninja::command::register( + "WARP\\Load Signature File", + "Load file into the matcher, this does NOT kick off matcher analysis", + load::LoadSignatureFile {}, ); binaryninja::command::register_for_function( -- cgit v1.3.1