forked from laudarch/Shellsploit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (48 loc) · 1.75 KB
/
setup.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
from optparse import OptionParser
from os import system
from os import path
from os import unlink
from sys import exit
from os import sep
if __name__ == '__main__':
parser = OptionParser()
parser.add_option('-s', '--setup', action="store")
parser.add_option('--user', action="store_true")
options, args = parser.parse_args()
if not options.setup:
exit("\n\tUsage : setup.py -s/--setup install or uninstall ..\n")
else:
if options.setup == 'install':
if options.user:
system('python easyinstall.py install --record shellsploit.ini --user')
else:
system('python easyinstall.py install --record shellsploit.ini')
with open("shellsploit.ini", "r") as mypath:
for line in mypath:
line = line.strip()
if line.split(sep)[-2] == "shell":
shellsploitpath = sep.join(line.strip().split(sep)[:len(line.strip().split(sep))-1])
if "core"+sep+"logo"+sep+"counter.pyc" in line:
unlink(line)
if "core"+sep+"logo"+sep+"counter.py" in line and not "core"+sep+"logo"+sep+"counter.pyc" in line:
counterpath = line
with open(counterpath, "r+") as universal:
data = universal.read().replace("SHELLSPL0ITMASTERS", shellsploitpath)
with open(counterpath, "w") as finish:
finish.write(data)
finish.close()
elif options.setup == 'uninstall':
if not path.isfile('shellsploit.ini'):
exit('\n\tIf you want uninstall you must install it first.\n')
else:
files = open('shellsploit.ini', 'r').readlines()
unlink('shellsploit.ini')
print ('')
for x in files:
if path.isfile(x.strip()):
print ('Remove : {0}').format(x.strip())
unlink(x.strip())
else:
exit('\nUninstall complate ! \n')
else:
exit("\n\tUsage : setup.py -s/--setup install or uninstall ..\n")