forked from Vector35/binaryninja-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion_switcher.py
153 lines (138 loc) · 5.13 KB
/
version_switcher.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/env python
# Copyright (c) 2015-2025 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
import sys
from binaryninja.update import UpdateChannel, are_auto_updates_enabled, set_auto_updates_enabled, is_update_installation_pending, install_pending_update
from binaryninja import core_version_info, get_install_directory, user_directory
import datetime
from six.moves import input
chandefault = list(UpdateChannel)[0].name
channel = None
versions = []
def load_channel(newchannel):
global channel
global versions
if (channel is not None and newchannel == channel.name):
print("Same channel, not updating.")
else:
try:
print("Loading channel %s" % newchannel)
channel = UpdateChannel[newchannel]
print("Loading versions...")
versions = channel.versions
except Exception:
print("%s is not a valid channel name. Defaulting to " % chandefault)
channel = UpdateChannel[chandefault]
def select(version):
done = False
date = datetime.datetime.fromtimestamp(version.time).strftime('%c')
while not done:
print("Version:\t%s" % version.version)
print("Updated:\t%s" % date)
print("Notes:\n\n-----\n%s" % version.notes)
print("-----")
print("\t1)\tSwitch to version")
print("\t2)\tMain Menu")
selection = input('Choice: ')
if selection.isdigit():
selection = int(selection)
else:
selection = 0
if (selection == 2):
done = True
elif (selection == 1):
if (version.version == channel.latest_version.version):
print("Requesting update to latest version.")
else:
print("Requesting update to prior version.")
if are_auto_updates_enabled():
print("Disabling automatic updates.")
set_auto_updates_enabled(False)
if (version.version == core_version_info()):
print("Already running %s" % version.version)
else:
print("version.version %s" % version.version)
print("core_version %s" % core_version_info())
print("Downloading...")
print(version.update())
print("Installing...")
if is_update_installation_pending:
#note that the GUI will be launched after update but should still do the upgrade headless
install_pending_update()
# forward updating won't work without reloading
sys.exit()
else:
print("Invalid selection")
def list_channels():
done = False
print("\tSelect channel:\n")
while not done:
channel_list = list(UpdateChannel)
for index, item in enumerate(channel_list):
print("\t%d)\t%s" % (index + 1, item.name))
print("\t%d)\t%s" % (len(channel_list) + 1, "Main Menu"))
selection = input('Choice: ')
if selection.isdigit():
selection = int(selection)
else:
selection = 0
if (selection <= 0 or selection > len(channel_list) + 1):
print("%s is an invalid choice." % selection)
else:
done = True
if (selection != len(channel_list) + 1):
load_channel(channel_list[selection - 1].name)
def toggle_updates():
set_auto_updates_enabled(not are_auto_updates_enabled())
def main():
global channel
done = False
load_channel(chandefault)
while not done:
print("\n\tBinary Ninja Version Switcher")
print("\t\tCurrent Install:\t%s" % get_install_directory())
print("\t\tCurrent User Path:\t%s" % user_directory())
print("\t\tCurrent Channel:\t%s" % channel.name)
print("\t\tCurrent Version:\t%s" % core_version_info())
print("\t\tAuto-Updates On:\t%s\n" % are_auto_updates_enabled())
for index, version in enumerate(versions):
date = datetime.datetime.fromtimestamp(version.time).strftime('%c')
print("\t%d)\t%s (%s)" % (index + 1, version.version, date))
print("\t%d)\t%s" % (len(versions) + 1, "Switch Channel"))
print("\t%d)\t%s" % (len(versions) + 2, "Toggle Auto Updates"))
print("\t%d)\t%s" % (len(versions) + 3, "Exit"))
selection = input('Choice: ')
if selection.isdigit():
selection = int(selection)
else:
selection = 0
if (selection <= 0 or selection > len(versions) + 3):
print("%d is an invalid choice.\n\n" % selection)
else:
if (selection == len(versions) + 3):
done = True
elif (selection == len(versions) + 2):
toggle_updates()
elif (selection == len(versions) + 1):
list_channels()
else:
select(versions[selection - 1])
if __name__ == "__main__":
main()