Skip to content

Commit

Permalink
new binja versions support + macos support
Browse files Browse the repository at this point in the history
  • Loading branch information
rikodot committed Nov 19, 2023
1 parent 23fcf15 commit 600eb31
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
21 changes: 12 additions & 9 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,23 @@
# ('DEV', 'DEV', 'sigscan_dev2.dll'), # anything in between 3.4.4169 and 3.4.4189 (inclusive) - all dev versions
# ]
win_files = [
('3.1.3469', '3.1.3469', '3469sigscan.dll'),
('3.2.3814', '3.2.3814', '3814sigscan.dll'),
('3.3.3996', '3.3.3996', '3996sigscan.dll'),
('3.4.4271', '3.4.4271', '4203sigscan.dll'),
('DEV', 'DEV', '4203sigscan.dll')
('3.4.4271', '3.4.4271', '4271sigscan.dll'),
('3.5.4526', '3.5.4526', '4526sigscan.dll'),
('DEV', 'DEV', 'DEVsigscan.dll')
]
linux_files = [
('3.1.3469', '3.1.3469', '3469libsigscan.so'),
('3.2.3814', '3.2.3814', '3814libsigscan.so'),
('3.3.3996', '3.3.3996', '3996libsigscan.so'),
('3.4.4271', '3.4.4271', '4203libsigscan.so'),
('DEV', 'DEV', '4203libsigscan.so')
('3.4.4271', '3.4.4271', '4271libsigscan.so'),
('3.5.4526', '3.5.4526', '4526libsigscan.so'),
('DEV', 'DEV', 'DEVlibsigscan.so')
]
darwin_files = [
('3.3.3996', '3.3.3996', '3996libsigscan.dylib'),
('3.4.4271', '3.4.4271', '4271libsigscan.dylib'),
('3.5.4526', '3.5.4526', '4526libsigscan.dylib'),
('DEV', 'DEV', 'DEVlibsigscan.dylib')
]
darwin_files = []

# Function that determines whether Binary Ninja version is supported (returns None if not, according file name if yes)
def is_version_supported(files):
Expand Down
8 changes: 5 additions & 3 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@
},
"platforms":[
"Windows",
"Linux"
"Linux",
"Darwin"
],
"installinstructions":{
"Windows":"",
"Linux":""
"Linux":"",
"Darwin":""
},
"dependencies":{
"pip":[
"requests",
"bs4"
]
},
"version":"1.0.4",
"version":"1.0.6",
"author":"rikodot",
"minimumbinaryninjaversion":0
}

0 comments on commit 600eb31

Please sign in to comment.