Install Kali Linux in Raspberry 3

See the youtube video here
Useful tool: etcher (burn the image into SD card)

Enable SSH in Kail

sudo systemctl enable ssh
sudo systemctl start ssh

(optional) Create Home NAS with Raspberry

See the youtube video here
Useful tool: Samba

sudo mount /dev/sda1 /External/
sudo /etc/init.d/smbd restart

Nmap Script

All scirpts locate in /usr/share/nmap/scripts read the introduction from here

# go to nmap script folder
cd /usr/share/nmap/scripts/

# get the nmap-vulners nse
git clone https://github.com/vulnersCom/nmap-vulners.git

# get the vulscan nse
git clone https://github.com/scipag/vulscan.git

# update
cd vulscan/utilities/updater/
chmod +x updateFiles.sh
./updateFiles.sh

The nmap command will be

nmap --script vulscan -sV www.baidu.com

WireShark