-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral_use.py
64 lines (51 loc) · 1.7 KB
/
general_use.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
'''
This script has functions that can be used across all scripts
'''
import platform
import subprocess
import os
def check_distribution():
'''
This function checks which distribution the user is running and returns that distribution type
'''
distro = ''
distribution = (platform.linux_distribution())[0]
if 'Kali' == distribution or 'kali' == distribution:
distro = 'kali'
elif 'Debian' == distribution or 'debian' == distribution:
distro = 'debian'
elif 'Ubuntu' == distribution or 'ubuntu' == distribution:
distro = 'ubuntu'
elif 'Red Hat' == distribution or 'red hat' == distribution:
distro = 'red hat'
return distro
def package_tool(d):
'''
This function returns which package manager the system uses to install scripts based on the distribution
'''
pt = ''
if d == 'kali' or d == 'debian' or d == 'ubuntu':
pt = 'apt-get'
elif d == 'red hat':
pt = 'yum'
return pt
def update(pack_man):
'''
This function updates software packages based on repository state
This needs to be included at the beginning of every major installation function
'''
update_rc = subprocess.run(['sudo', pack_man, 'update']).returncode
if update_rc != 0:
print ('UPDATE_ FAILED: Failed to update_ system')
print ('ERROR CODE:', update_rc)
else:
print ('UPDATE_ SUCCESSFUL: Successfully updated system')
def move_up_directory():
'''
This function moves up one directory from where the program is currently running.
To successfully install/open tools, different files need to be used that could be in other directories.
This is used to make sure that at the end of the process for that tool, the program ends in the main autopen directory.
'''
c = os.getcwd()
s = c.rfind('/')
os.chdir(c[:s])