summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknowntrojan <14975032+unknowntrojan@users.noreply.github.com>2023-05-10 18:24:50 +0200
committerunknowntrojan <14975032+unknowntrojan@users.noreply.github.com>2023-05-10 18:24:50 +0200
commitfe652692dc8ac79e28c3ac09e4149b9be8f51ac0 (patch)
tree96aea23a34cb82b1d378470934aa29f5bd3642a0
parent1e0893eb9d73d9b47f208ec6bb4ff07ba899ba29 (diff)
change menu items
-rw-r--r--src/lib.rs6
1 files 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 {},
);