We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e9168 commit 9659e9fCopy full SHA for 9659e9f
conScan.py
@@ -1,4 +1,13 @@
1
-from binaryninja import *
+# Try to import stuff.
2
+try:
3
+ from binaryninja import *
4
+except:
5
+ print "[!!] Not running in Binary Ninja"
6
+
7
8
+ import r2pipe
9
10
+ print "[!!] Not running in Radare2"
11
12
class ilVar(object):
13
def __hash__(self):
dependency.py
@@ -5,7 +5,16 @@
'''
import analysis_engine as ae
14
15
16
17
18
19
class ImportedCall(object):
20
0 commit comments