-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.py
123 lines (105 loc) · 4.16 KB
/
uninstall.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
import general_use
import dependencies
import tools
import subprocess
import os
def uninstall(toolname):
repo_canbus_utils = 'https://github.com/digitalbond/canbus-utils.git'
repo_kayak = 'https://github.com/dschanoeh/Kayak.git'
repo_caringcaribou = 'https://github.com/CaringCaribou/caringcaribou.git' #want to check this to make sure it works, instructions a bit unclear
repo_c0f = 'https://github.com/zombieCraig/c0f.git'
repo_udsim = 'https://github.com/zombieCraig/UDSim.git'
repo_j1939 = 'https://github.com/wang701/can-utils-j1939.git'
repo_canbadger = 'https://github.com/Gutenshit/CANBadger.git'
repo_canbadger_server = 'https://github.com/Gutenshit/CANBadger-Server.git'
repo_katoolin = 'https://github.com/LionSec/katoolin.git'
repo_bluelog = 'https://github.com/MS3FGX/Bluelog.git'
repo_bluemaho = 'https://github.com/zenware/bluemaho.git'
link_pyobd = 'http://www.obdtester.com/download/pyobd_0.9.3.tar.gz' #this might not work
link_o2oo = 'https://www.vanheusden.com/O2OO/O2OO-0.9.tgz'
link_romraider = 'http://assembla.com/spaces/romraider/documents/a5Ao9gHEir5P9Udmr6QqzO/download/RomRaider0.5.9RC3-linux.jar'
d = general_use.check_distribution()
pack_man = general_use.package_tool(d)
rm_rc = -1
#check path to make sure it's in the autopen directory
curr = os.getcwd()
back_index = curr.rfind('/')
ap_index = curr.find('autopen')
if curr[back_index:] != '/autopen':
path = curr[:ap_index+7]
else:
path = curr
os.chdir(path)
try:
if toolname == 'canbus-utils':
rm_rc = subprocess.run(['rm', '-rf', 'canbus-utils']).returncode
elif toolname == 'Kayak':
rm_rc = subprocess.run(['rm', '-rf', 'Kayak']).returncode
elif toolname == 'caringcaribou':
rm_rc = subprocess.run(['rm', '-rf', 'caringcaribou']).returncode
elif toolname == 'c0f':
rm_rc = subprocess.run(['rm', '-rf', 'c0f']).returncode
elif toolname == 'udsim':
rm_rc = subprocess.run(['rm', '-rf', 'UDSim']).returncode
elif toolname == 'katoolin':
rm_rc = subprocess.run(['rm', '-rf', 'katoolin']).returncode
elif toolname == 'bluelog':
rm_rc = subprocess.run(['rm', '-rf', 'Bluelog']).returncode
elif toolname == 'bluemaho':
rm_rc = subprocess.run(['rm', '-rf', 'bluemaho']).returncode
elif toolname == 'j1939':
rm_rc = subprocess.run(['rm', '-rf', 'can-utils-j1939']).returncode
elif toolname == 'canbadger-hw':
rm_rc = subprocess.run(['rm', '-rf', 'CANBadger']).returncode
#https://github.com/Gutenshit/CANBadger/wiki/Getting-the-board-ready
elif toolname == 'canbadger-sw':
rm_rc = subprocess.run(['rm', '-rf', 'CANBadger-Server']).returncode
elif toolname == 'pyobd':
try:
rm_rc = subprocess.run(['rm', '-rf','pyobd_0.9.3.tar.gz']).returncode
except:
pass
try:
rm_rc = subprocess.run('rm', '-rf', 'pyobd-0.9.3').returncode
except:
pass
elif toolname == 'o2oo':
try:
rm_rc = subprocess.run(['rm', '-rf','O2OO-0.9.tgz']).returncode
except:
pass
try:
rm_rc = subprocess.run('rm', '-rf', 'O2OO-0.9').returncode
except:
pass
elif toolname == 'btscanner':
rm_rc = subprocess.run(['sudo', pack_man, 'purge', '-y','btscanner']).returncode
elif toolname == 'gnuradio':
rm_rc = subprocess.run(['sudo', pack_man, 'purge','-y', 'gnuradio']).returncode
elif toolname == 'aircrack-ng':
rm_rc = subprocess.run(['sudo', pack_man, 'purge','-y', 'aircrack-ng']).returncode
elif toolname == 'gqrx':
rm_rc = subprocess.run(['sudo', pack_man, 'purge', '-y','gqrx']).returncode
elif toolname == 'can-utils':
rm_rc = subprocess.run(['sudo', pack_man, 'purge','-y', 'can-utils']).returncode
elif toolname == 'wireshark':
rm_rc = subprocess.run(['sudo', pack_man, 'purge','-y', 'wireshark']).returncode
elif toolname == 'tshark':
rm_rc = subprocess.run(['sudo', pack_man, 'purge','-y', 'tshark']).returncode
except:
print ('Not in correct directory')
print ('current directory is: ', os.getcwd())
pass
if rm_rc == 0:
#remove the tool from the text file
f = open("installed.txt","r+")
d = f.readlines()
f.seek(0)
for i in d:
if i != toolname:
f.write(i)
f.truncate()
print ('UNINSTALL SUCCESSFUL: Successfully uninstalled', toolname)
return rm_rc
def test(name):
return 0