Kali Samba Share
How to setup a Kali Samba Share
Install Samba
sudo apt install samba
Create a backup of the existing Samba configuration file and then create a new one:
sudo mv /etc/samba/smb.conf /etc/samba/smb.conf.old
sudo vim /etc/samba/smb.confPaste:
[myhackingblog]
path = /home/kali/shared_data
browseable = yes
read only = no
Create a password for your Samba user:
sudo smbpasswd -a kaliStart the required services:
sudo systemctl start smbd
sudo systemctl start nmbdCreated the shared folder:
mkdir /home/kali/shared_dataAllow access to the directory:
chmod -R 777 /home/kali/shared_dataEnjoy your Samba Share:

Last updated
Was this helpful?