-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFExploit.sh
More file actions
39 lines (39 loc) · 1.34 KB
/
FExploit.sh
File metadata and controls
39 lines (39 loc) · 1.34 KB
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
#!/bin/sh
# GNU GENERAL PUBLIC LICENSE
target () {
echo " ╔--------------------╗"
echo " ╔═════════════════╗════════════════════╝"
echo " ╚███████ ███████╝"
echo " ██ ██ ╚══════════════════╗"
echo " █████ █████ ║ Xploit v1.0 "
echo " ██ ██ ╔══════════════════╝"
echo " ╔██ ███████╗"
echo " ╚═════════════════╝════════════════════╗"
echo " ╚--------------------╝"
echo ""
echo "1) Exploit"
echo "2) Scan"
echo "0) Contribute"
echo ""
echo "╔══════════════[Sh3ll]═════════════╗"
echo "╚═╗══════════[FExploit]════════════╝"
echo " ╚═╗"
read -p " ╚═(Target)═> " targetq
}
if [ targetq ="1" ]; then
sh /opt/FExploit/rsc/exploits/main.sh
exit
else
if [ targetq ="2" ]; then
sh /opt/FExploit/rsc/scan/main.sh
exit
else
if [ targetq ="0" ]; then
sh /opt/FExploit/addexploit.sh
exit
else
echo "Error"
target
fi
fi
fi