-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrunme.sh
141 lines (138 loc) · 4.99 KB
/
runme.sh
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
if [ -f ".setexebit" ];then
chmod +x src/*
fi
black="\033[0;30m" # Black
red="\033[0;91m" # Red
green="\033[1;92m" # Green
yellow="\033[0;93m" # Yellow
blue="\033[0;94m" # Blue
purple="\033[0;95m" # Purple
cyan="\033[0;36m" # Cyan
white="\033[0;97m" # White
ban="
____ _ ____
$red/ ___| / \ / ___|
$blue\___ \ / _ \ \___ \\
$green ___) / ___ \ ___) |
$cyan|____/_/ \_\____/ $green System Administrator's Basic Scripts
$white
"
printf "$ban"
menu="
${red}1: ${white}Eliminate Embedded Spaces In Files & Folders Name (src/filename-space-remover)
${red}2: ${white}CPU And Memory Information (src/hw_info)
${red}3: ${white}Enumerate Users Groups IDs (src/user-enumerator)
${red}4: ${white}Show Mounted Devices and It's Path (src/mounted-device-shower)
${red}5: ${white}Enumerate Users Login Shells (src/users-login-shell)
${red}6: ${white}Execute A Command On System Startup (src/add-rc-command)
${red}7: ${white}Search For A Library Or A Command (src/search-similar-packages)
${red}8: ${white}Perform a Symbolic Link On A File (src/symbolic-link)
${red}9: ${white}Perform a Hard Link On A File (src/hard-link)
${red}10: ${white}Change Run Level Into Single User Mode (src/single-user)
${red}11: ${white}Add A Startup Script to init.d and rc*.d (src/add-startup-script)
${red}12: ${white}Get Informations About Wireless Networks (src/wifi-scan)
${red}13: ${white}Scheduled Shutdown With A Notifier (src/scheduled-poweroff)
${red}14: ${white}Power-off Device without Syncing Disks/Storages
${red}15: ${white}Display the kernel routing tables
${red}16: ${white}Show Listening Sockets
${red}17: ${white}Display summary statistics for each protocol
${cyan}i: ${white}Open Input To Execute a Command With $SHELL
${cyan}m: ${white}Print This Menu Again
${cyan}b: ${white}Print Program Banner
${cyan}r: ${white}Print Banner And Menu Again
${cyan}c: ${white}Clear Screen
${cyan}a: ${white}About Me
${cyan}q: ${white}Quit This Program
"
printf "$menu"
aboutme(){
printf "I Am Mahmoud Osman, I Made This Software When I Was 16 Years Old Learning Linux Sysadmin And Working On Some Projects Using C++ etc...,\nI Started Out In 2021, Learned C/C++/Assembly With Binary Exploitation, Moved To Network Socket Programming, Then Into Malware And Software Development...etc, All Of Those Stuffs in 2021\nWhatever Year Your Reading This Aboutme, I Will try To keep This Aboutme Out Of My Reach.\nIn Order to Not Edit It. Goodluck\n"
}
loop(){
printf "\n${white}(${red}SAS${white})${purple} <-:${white} "
read -n 1 M
MN=
if [ "$M" == 1 ];then
read -n 1 MN
fi
MN=${M}${MN}
echo
if [ "$MN" == 1 ];then
printf "Enter Folder Path To Start The Operation On : "
read trg
src/filename-space-remover "$trg"
elif [ "$MN" == "m" ];then
printf "$menu"
elif [ "$MN" == "b" ];then
printf "$ban"
elif [ "$MN" == "r" ];then
printf "$ban\n$menu"
elif [ "$MN" == "c" ];then
clear
elif [ "$MN" == "q" ];then
exit 0
elif [ "$MN" == 2 ];then
src/hw_info
elif [ "$MN" == 3 ];then
src/user-enumerator
elif [ "$MN" == 4 ];then
src/mounted-device-shower
elif [ "$MN" == 5 ];then
src/users-login-shell
elif [ "$MN" == 6 ];then
printf "Enter Program Path Followed By It's Arguments : "
read cmd
src/add-rc-command "$cmd"
elif [ "$MN" == 7 ];then
printf "Enter A Package Name, Or A Similar Name To it : "
read arg
src/search-similar-packages "$arg"
elif [ "$MN" == 8 ];then
printf "Enter Original Filename : "
read of
printf "Enter File Link Name : "
read lf
src/symbolic-link "$of" "$lf"
elif [ "$MN" == 9 ];then
printf "Enter Original Filename : "
read of
printf "Enter File Link Name : "
read lf
src/hard-link "$of" "$lf"
elif [ "$MN" == 10 ];then
src/single-user
elif [ "$MN" == 11 ];then
printf "Script Name Or Path : "
read sp
src/add-startup-script "$sp"
elif [ "$MN" == 12 ];then
printf "Enter The Information You Want to see (Blank For Everything) : "
read INFO
src/wifi-scan "$INFO"
elif [ "$MN" == 13 ];then
printf "Enter Shutdown Time (12 Hour Format '00:00') : "
read tim
printf "Enter Message To Notify Users (Ex: Going Down For Emergency Disk Repair) : "
read notf
src/scheduled-poweroff -h "$tim" "$notf"
elif [ "$MN" == 14 ];then
printf "Risk Of Data Loss or Corruption, Are You Sure ? Press Enter To Proceed Or CTRL-C To Cancel : "
read
printf "For Security Reasons, Type Random 5 letters to halt the system without syncing or CTRL-C To Cancel : "
read -n 5
halt -n
elif [ "$MN" == 15 ];then
netstat -r
elif [ "$MN" == 16 ];then
netstat -l
elif [ "$MN" == 17 ];then
netstat -s
elif [ "$MN" == 'i' ];then
printf "CMD> "
read -e cmd
"$SHELL" -c "$cmd"
elif [ "$MN" == 'a' ];then
aboutme
fi
}
while [ 1 ];do loop; done