Skip to content

Commit 600eb31

Browse files
committed
new binja versions support + macos support
1 parent 23fcf15 commit 600eb31

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

__init__.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,23 @@
4141
# ('DEV', 'DEV', 'sigscan_dev2.dll'), # anything in between 3.4.4169 and 3.4.4189 (inclusive) - all dev versions
4242
# ]
4343
win_files = [
44-
('3.1.3469', '3.1.3469', '3469sigscan.dll'),
45-
('3.2.3814', '3.2.3814', '3814sigscan.dll'),
4644
('3.3.3996', '3.3.3996', '3996sigscan.dll'),
47-
('3.4.4271', '3.4.4271', '4203sigscan.dll'),
48-
('DEV', 'DEV', '4203sigscan.dll')
45+
('3.4.4271', '3.4.4271', '4271sigscan.dll'),
46+
('3.5.4526', '3.5.4526', '4526sigscan.dll'),
47+
('DEV', 'DEV', 'DEVsigscan.dll')
4948
]
5049
linux_files = [
51-
('3.1.3469', '3.1.3469', '3469libsigscan.so'),
52-
('3.2.3814', '3.2.3814', '3814libsigscan.so'),
5350
('3.3.3996', '3.3.3996', '3996libsigscan.so'),
54-
('3.4.4271', '3.4.4271', '4203libsigscan.so'),
55-
('DEV', 'DEV', '4203libsigscan.so')
51+
('3.4.4271', '3.4.4271', '4271libsigscan.so'),
52+
('3.5.4526', '3.5.4526', '4526libsigscan.so'),
53+
('DEV', 'DEV', 'DEVlibsigscan.so')
54+
]
55+
darwin_files = [
56+
('3.3.3996', '3.3.3996', '3996libsigscan.dylib'),
57+
('3.4.4271', '3.4.4271', '4271libsigscan.dylib'),
58+
('3.5.4526', '3.5.4526', '4526libsigscan.dylib'),
59+
('DEV', 'DEV', 'DEVlibsigscan.dylib')
5660
]
57-
darwin_files = []
5861

5962
# Function that determines whether Binary Ninja version is supported (returns None if not, according file name if yes)
6063
def is_version_supported(files):

plugin.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
},
1717
"platforms":[
1818
"Windows",
19-
"Linux"
19+
"Linux",
20+
"Darwin"
2021
],
2122
"installinstructions":{
2223
"Windows":"",
23-
"Linux":""
24+
"Linux":"",
25+
"Darwin":""
2426
},
2527
"dependencies":{
2628
"pip":[
2729
"requests",
2830
"bs4"
2931
]
3032
},
31-
"version":"1.0.4",
33+
"version":"1.0.6",
3234
"author":"rikodot",
3335
"minimumbinaryninjaversion":0
3436
}

0 commit comments

Comments
 (0)