تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح 04_metasploit arabic course ضمن كورس اطار Metasploit شرح قناة Abdallah Elsokary، الفديو رقم 5 مجانى معتمد اونلاين
https://www.facebook.com/ILLSW
https://www.facebook.com/groups/155349421484222
-------------------------------------------------------
Step 1 » Update repositories .
sudo apt-get update
Step 2 » Install VsFTPD package using the below command.
sudo apt-get install vsftpd
Step 3 » After installation open /etc/vsftpd.conf file and make changes as follows.
Uncomment the below lines (line no:29 and 33).
write_enableYES
local_umask022
» Uncomment the below line (line no: 120 ) to prevent access to the other folders outside the Home directory.
chroot_local_userYES
and add the following line at the end.
allow_writeable_chrootYES
» Add the following lines to enable passive mode.
pasv_enableYes
pasv_min_port40000
pasv_max_port40100
Step 4 » Restart vsftpd service using the below command.
sudo service vsftpd restart
Step 5 » Now ftp server will listen on port 21. Create user with the below command.Use /usr/sbin/nologin shell to prevent access to the bash shell for the ftp users .