Skip to content

Commit 2045d87

Browse files
authored
Add files via upload
1 parent 144560a commit 2045d87

File tree

6 files changed

+74
-36
lines changed

6 files changed

+74
-36
lines changed

INITIALIZE.sh

Lines changed: 52 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,57 @@
11
#!/bin/sh
22
DATE=$(date -u)
3-
mv 1.bash_aliases /home/
3+
4+
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
5+
echo "You must be root."
6+
exit
7+
fi
8+
echo "Installing Required Packages"
9+
apt update -y
10+
apt full-upgrade -y
11+
apt install ufw -y
12+
apt install cron -y
13+
apt install nano -y
14+
apt install locate -y
15+
apt install iptables -y
16+
apt install nmap -y
17+
apt install clamav -y
18+
apt install git -y
419
echo "Initializing Directories"
5-
mkdir /home/$USER
6-
chmod 5775 /home/$USER
7-
chmod 755 Startup.sh
8-
mkdir git
9-
mv *.md git
10-
mv LICENSE git
11-
chmod 755 *.sh 2> /dev/null
12-
chmod 755 1.bash_aliases 2> /dev/null
13-
mkdir -p /bin
14-
mkdir -p /bin/lib
15-
mkdir -p /bin/lib/sh
16-
mv Version.txt /bin/lib/sh
17-
mv *.sh /bin/lib/sh 2> /dev/null
18-
mv 1.bash_aliases /home/$USER/ 2> /dev/null
19-
mv /home/$USER/1.bash_aliases /bin/lib/sh 2> /dev/null
20-
shopt -s expand_aliases 2> /dev/null
21-
chmod 705 /bin/lib/sh 2> /dev/null
22-
mv git /bin/lib/sh 2> /dev/null
23-
sudo cat /bin/lib/sh/1.bash_aliases | sudo tee /home/$USER/.bashrc
24-
. /bin/lib/sh/LIB.sh
25-
git clone https://github.com/mksipe/LinuxAV-Light
26-
chmod 755 LinuxAV-Light
27-
chmod 755 /LinuxAV-Light/INITIALIZE.sh
28-
. /LinuxAV-Light/INITIALIZE.sh
20+
mkdir /Framework
21+
chmod 755 *.sh
22+
chmod 755 *.md
23+
chmod 755 *.txt
24+
chmod 755 *.bash_aliases
25+
chmod 755 LICENSE
26+
mv *.sh /Framework
27+
mv *.md /Framework
28+
mv *.txt /Framework
29+
mv *.bash_aliases /Framework
30+
mv LICENSE /Framework
31+
cd /Framework
2932
git clone https://github.com/mksipe/Linux-Tor-Incog
30-
chmod 755 Linux-Tor-Incog
31-
chmod 755 /Linux-Tor-Incog/INITIALIZE.sh
32-
. git/Linux-Tor-Incog/INITIALIZE.sh
33-
mv *.sh /bin/lib/sh
34-
echo "Software installed by $USER on $DATE in $PATH" | sudo tee /bin/lib/sh/Version.txt
33+
git clone https://github.com/mksipe/LinuxAV-Light
34+
mkdir /bin 2> /dev/null
35+
mkdir /bin/lib
36+
mkdir /bin/lib/sh
37+
mkdir /bin/lib/sh/MK3S
38+
mkdir /bin/lib/sh/MK3S/LTI
39+
mkdir /bin/lib/sh/MK3S/LAVL
40+
cd Linux-Tor-Incog
41+
mv *.sh /bin/lib/sh/MK3S/LTI
42+
cd /Framework
43+
cd LinuxAV-Light
44+
mv *.sh /bin/lib/sh/MK3S/LAVL
45+
cd /home
46+
rm -r /Framework
47+
echo "Software installed by $USER on $DATE in $PATH" | sudo tee /bin/lib/sh/MK3S/Version.txt
48+
cd /bin/lib/sh/MK3S
49+
chmod 755 /LTI/K1sh.sh
50+
chmod 755 /LAVL/K0SH.sh
51+
. /LTI/K1sh.sh
52+
. /LAVL/K0sh.sh
53+
shopt -s expand_aliases 2> /dev/null
54+
cd /root
55+
cat /bin/lib/sh/MK3S/LIB.conf .bashrc
56+
~/.bashrc
3557
echo "Done"

LIB.conf

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
alias MKS_clamAVconf='/bin/lib/sh/clamAVconf.sh'
2+
alias MKS_clamfullscan='clamscan -r --remove /'
3+
alias MKS_clamqsmartscan='clamscan -r --remove /usr /bin /var /sys /home'
4+
alias MKS_Current-Connections='/bin/lib/sh/Current_Connections.sh'
5+
alias MKS_Exploit-Search='/bin/lib/sh/Exploit-Search.sh'
6+
alias MKS_Network-Spoof-Prevention='/bin/lib/sh/Netspoof-Prevention.sh && rm -r Netspoof-Prevention.sh'
7+
alias MKS_Network-Status='/bin/lib/sh/Network\ Status.sh'
8+
alias MKS_Full-Network-Scan='/bin/lib/sh/Network-Scan.sh'
9+
alias MKS_Set-Password-Complexities='/bin/lib/sh/Password-Settings.sh'
10+
alias MKS_Set-Remote-Connection-Complexities='/bin/lib/sh-Settings.sh'
11+
alias MKS-System-Information='/bin/lib/sh/System\ information.sh'
12+
alias MKS_Firewall-Config='/bin/lib/sh/UFWC.sh'
13+
alias MKS_Update='/bin/lib/sh/Update.sh'
14+
alias MKS_User-Auth-Config='/bin/lib/sh/User-Auth.sh'
15+
alias MKS_help='/bin/lib/sh/MKShelp.sh'
16+
alias MKS_Media-Search='/bin/lib/sh/Mediascan.sh'
17+
alias MKS_file-Privilage='/bin/lib/sh/FileSUIDpriv.sh'
18+
alias MKS_Version='/bin/lib/sh/Version.txt'
19+
alias MKS_Stealth-Mode='/bin/lib/sh/Stealth-Mode.sh'
20+
echo "MK3S Installed Correctly."

Mediascan.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
apt install locate -y
32
echo "Results"
43
locate --basename "*.mp3"
54
locate --basename "*.mp4"

Network Status.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ sudo touch Network_Info_History.txt
1313
cat Network\ Information.txt >> Network_Info_History.txt
1414
cat /dev/null > Network\ Information.txt
1515

16-
sudo apt install nmap -y
17-
1816
echo "Fetching Network Information"
1917
echo "*----------$date----------*" >> Network\ Information.txt
2018
echo "----------IP Address----------" >> Network\ Information.txt

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ The System Information file gives out information about your system. (duh) Keep
5252

5353
## Outside Resources
5454

55-
System-Services Uses outside resources to help improve its quality. It uses the LinuxAV-Light repository to help configure antivirus programs on the system as well as teh Linux-tor-incog repository to help make your system use more secure ways to browse the internet and to remain anonymous.
55+
System-Services Uses outside resources to help improve its quality. It uses the LinuxAV-Light repository to help configure antivirus programs on the system as well as the Linux-tor-incog repository to help make your system use more secure ways to browse the internet and to remain anonymous.
5656

5757
## Add-Ons
5858

59-
The Add ons are mandatory and cant be uninstalled. Though if you don't want them on your system, you can download the script without the add ons with the branch that doesnt include add-ons (alone).
59+
The Add-ons are mandatory and cant is uninstalled. Though if you don't want them on your system, you can download the script without the add-ons with the branch that doesn't include add-ons (alone).

Stealth-Mode.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
apt install ufw -y
32
touch defalultUFW.txt
43
cp /etc/ufw/before.rules >> defalultUFW.txt
54
mv defalultUFW.txt /bin/lib/sh

0 commit comments

Comments
 (0)