-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinstall
executable file
·71 lines (53 loc) · 1.14 KB
/
install
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
#!/bin/sh
# Hello
# This is code for the installer
# BTW Why are you here?
# If you want to copy this, just leave my name here dont erase it
# Banner
clear
echo "Project Number : Project 003"
sleep 0.2
echo "Type : Installer"
sleep 0.2
echo "Build Date : 11-17-21"
sleep 0.2
echo "Author : JyanJohn"
sleep 0.2
echo "Version : 1.2"
echo ""
# Unnecesarry Loading Time
sleep 3
echo "Preparing for Installation..."
sleep 2
echo "Done!"
############## Install the dependencies
# Make sures the system is up to date
apt update
apt upgrade -y
# Installs some stuff
apt-get install git -y
apt-get install curl -y
apt-get install php -y
apt-get install wget -y
apt-get install toilet -y
# Installs more stuff
apt-get install python3 -y
apt-get install ruby -y
# Installs nmap
apt-get install nmap -y
apt-get install hydra -y
############### Final Setup
# Instructions
clear
echo "To use the Bruter, just type './main.sh'"
echo "<^> J Y A N J O H N <^>"
sleep 3
echo ""
# Finalizing
echo "Installing Gems and Cleanup"
apt autoremove
exec gem install lolcat
################ End of script
# Written in Termux using Vim
# Ubuntu-21.04 PRoot-Distro
# JyanJohn