From fe652692dc8ac79e28c3ac09e4149b9be8f51ac0 Mon Sep 17 00:00:00 2001 From: unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> Date: Wed, 10 May 2023 18:24:50 +0200 Subject: change menu items --- src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index a2da6b0..5d14f65 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -851,6 +851,8 @@ impl Command for SigFinderCommand { pub extern "C" fn CorePluginInit() -> bool { binaryninja::logger::init(log::LevelFilter::Info).unwrap(); + // TODO: (maybe) if signature not found, maybe go back a few instructions and attempt to create a signature with an offset. + // external_logger::init().unwrap(); log::info!("say hello to the little ninja in your binja"); @@ -872,13 +874,13 @@ pub extern "C" fn CorePluginInit() -> bool { register_settings(); command::register_for_address( - "CoolSigMaker\\Create Signature from Address", + "CSM - Create Signature from Address", "Creates a Signature from the currently selected address", SigMakerCommand {}, ); command::register( - "CoolSigMaker\\Find Signature", + "CSM - Find Signature", "Finds a signature in the binary.", SigFinderCommand {}, ); -- cgit v1.3.1