FTP服务器 In Kali Linux
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FTP服务器 In Kali Linux相关的知识,希望对你有一定的参考价值。
参考技术A 安装ftp服务器apt-get install vsftpd
查看ftp服务器状态
/etc/init.d/vsftpd status [start/stop]
设置ftp访问的文件夹
/etc/init.d/vsftpd status
给文件夹添加777权限
chmod 777 /home/ftp_file/
添加允许访问用户
useradd -d /home/ftp/ -s /bin/bash user1
passwd user1 # 设置密码
修改配置文件
Gem load error while running wpscan in kali linux
转载请注明出处:https://blog.csdn.net/l1028386804/article/details/84030521
remove package
apt remove wpscan
install from source
git clone https://github.com/wpscanteam/wpscan
cd wpscan/
bundle install && rake install
以上是关于FTP服务器 In Kali Linux的主要内容,如果未能解决你的问题,请参考以下文章
vsftpd 认证模式:匿名开放(匿名用户)本地用户虚拟用户区别?