diff options
| author | unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> | 2023-05-10 18:24:50 +0200 |
|---|---|---|
| committer | unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> | 2023-05-10 18:24:50 +0200 |
| commit | fe652692dc8ac79e28c3ac09e4149b9be8f51ac0 (patch) | |
| tree | 96aea23a34cb82b1d378470934aa29f5bd3642a0 /src/lib.rs | |
| parent | 1e0893eb9d73d9b47f208ec6bb4ff07ba899ba29 (diff) | |
change menu items
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 {}, ); |
