forked from bytezcrew/wfdroid-termux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wfdinstall
43 lines (43 loc) · 2.3 KB
/
wfdinstall
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
#!/data/data/com.termux/files/usr/bin/bash
echo "PREPARING FOR INSTALL WFDROID...";
sleep 5s
apt update -y
apt install curl -y
apt upgrade curl -y
apt install wget -y
apt upgrade wget -y
### MAKE A FILE MASTER ###
mkdir /data/data/com.termux/files/usr/share/wfdroid/
mkdir /data/data/com.termux/files/usr/share/wfdroid/done/
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/master
mv master /data/data/com.termux/files/usr/share/wfdroid/
chmod 775 /data/data/com.termux/files/usr/share/wfdroid/master
### MAKE A BINARY ###
touch /data/data/com.termux/files/usr/bin/wfdroid
echo "#!/data/data/com.termux/files/usr/bin/bash" >> /data/data/com.termux/files/usr/bin/wfdroid
echo "/data/data/com.termux/files/usr/share/wfdroid/master" >> /data/data/com.termux/files/usr/bin/wfdroid
chmod 775 /data/data/com.termux/files/usr/bin/wfdroid
### MAKE A WEB BRUTE FORCE TOOL ###
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/webbrute
mv webbrute /data/data/com.termux/files/usr/share/wfdroid/
chmod 775 /data/data/com.termux/files/usr/share/wfdroid/webbrute
### MAKE A WEB LOGIN FINDER ###
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/loginfinder
mv loginfinder /data/data/com.termux/files/usr/share/wfdroid/
chmod 775 /data/data/com.termux/files/usr/share/wfdroid/loginfinder
### MAKE A WEB SOURCE-CODE VIEWER ###
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/sourcecode
mv sourcecode /data/data/com.termux/files/usr/share/wfdroid/
chmod 775 /data/data/com.termux/files/usr/share/wfdroid/sourcecode
### MAKE A WFDROID UPDATER ###
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/update
mv update /data/data/com.termux/files/usr/share/wfdroid/
chmod 775 /data/data/com.termux/files/usr/share/wfdroid/update
### ADD WORDLIST ###
mkdir /data/data/com.termux/files/usr/share/wfdroid/list
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/list/wordlist.txt
mv wordlist.txt /data/data/com.termux/files/usr/share/wfdroid/list/
chmod 755 /data/data/com.termux/files/usr/share/wfdroid/list/wordlist.txt
wget https://raw.githubusercontent.com/bytezcrew/wfdroid-termux/master/list/dirlist.txt
mv dirlist.txt /data/data/com.termux/files/usr/share/wfdroid/list/
chmod 755 /data/data/com.termux/files/usr/share/wfdroid/list/dirlist.txt