-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathswit-scanner
40 lines (40 loc) · 2.36 KB
/
swit-scanner
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
#! /bin/bash
first_print(){
clear
echo `tput setaf 111`"
███████╗██╗ ██╗██╗████████╗ ███████╗ ██████╗ █████╗ ███╗ ██╗███╗ ██╗███████╗██████╗
██╔════╝██║ ██║██║╚══██╔══╝ ██╔════╝██╔════╝██╔══██╗████╗ ██║████╗ ██║██╔════╝██╔══██╗
███████╗██║ █╗ ██║██║ ██║ ███████╗██║ ███████║██╔██╗ ██║██╔██╗ ██║█████╗ ██████╔╝
╚════██║██║███╗██║██║ ██║ ╚════██║██║ ██╔══██║██║╚██╗██║██║╚██╗██║██╔══╝ ██╔══██╗
███████║╚███╔███╔╝██║ ██║ ███████║╚██████╗██║ ██║██║ ╚████║██║ ╚████║███████╗██║ ██║
╚══════╝ ╚══╝╚══╝ ╚═╝ ╚═╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝
________________________________________________________________________
| |
| WebSite: RedSecurity.xyz |
| Creator: RedSecurity Admin |
| E-mail: [email protected] |
| |
--------------------------------------------------------------------------
"
}
first_print
sleep .12
echo `tput setaf 202` 'Please select an option :) '
echo ''
sleep .12
echo '[1] Full Scan'
sleep .12
echo ''
echo '[2] Advanced Scan'
sleep .12
echo ''
echo '[3] INFO'
sleep .12
echo ''
read -p' ┌─[your chois]
└──╼ ' x
case $x in
"1") bash pages/full_scan;;
"2") bash pages/advanced_scan ;;
"3") bash pages/info ;;
esac