-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
executable file
·31 lines (29 loc) · 674 Bytes
/
install
File metadata and controls
executable file
·31 lines (29 loc) · 674 Bytes
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
#!/bin/bash
echo '[!] Updating...'
apt update
echo
echo '[!] Installing Dependencies...'
echo ' Python3'
apt install python3 pip
echo ' Quo'
pip3 install quo==2021.6
echo ' PHP'
apt-get -y install php
echo ' ssh'
apt-get -y install ssh
echo ' Requests'
pip3 install requests
echo ' ngrok'
apt install zip wget
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
unzip ngrok-stable-linux-arm.zip
echo
echo '[!] Setting Permissions...'
chmod +x ngrok
chmod 777 template/nearyou/php/info.txt
chmod 777 template/nearyou/php/result.txt
echo
echo '[+] Almost done...'
mv -f ngrok /usr/bin/
rm -rf ngrok-stable-linux-arm.zip
echo '[!] Installed.'