Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nu11secur1ty
GitHub Repository: nu11secur1ty/Kali-Linux
Path: blob/master/Bluevisku/bluevisku.sh
1303 views
1
#!/usr/bin/bash
2
# Author @nu11secur1ty 2020 Kali Linux 2020.x
3
echo -e "\e[1;93mType bluevisku.sh scan, or for help just press ENTER\e[00m"
4
sleep 3
5
systemctl enable bluetooth.service
6
systemctl start bluetooth.service
7
sleep 1;
8
9
echo -e "\e[1;94m Your interface device is \e[00m"
10
hciconfig
11
12
#hcitool
13
#echo "Total Arguments:" $#
14
#echo "All Arguments values:" $@
15
16
# You can also access all arguments in an array and use them in a script.
17
echo -e "\e[1;43m Your target list \e[00m"
18
args=("$@")
19
hcitool ${args[0]}
20
printf "\n"
21
echo -e "\e[1;73m-------------------------------------------------\e[00m"
22
echo -e "\e[1;45m Stop the BLUETOOTH service \e[00m"
23
sleep 1;
24
systemctl stop bluetooth.service
25
systemctl disable bluetooth.service
26
exit 0;
27
28