Linux installation FTP service (Pure-FTPd)

Table of contents

introduce

Install

client use


introduce

Quickly install the Pure-FTPd server on the attacking machine. If you already have an FTP server configured on your Kali system, you can skip these steps.

Install

kali@kali:~$ sudo apt update && sudo apt install pure-ftpd

Before any client can connect to the FTP server, we need to create a new user for Pure-FTPd. The following Bash script will automatically create users for us:

kali@kali:~$ cat ./setup-ftp.sh
#!/bin/bash

sudo groupadd ftpgroup
sudo useradd -g ftpgroup -d /dev/null -s /etc ftpuser
sudo pure-pw useradd offsec -u

Guess you like

Origin blog.csdn.net/u012206617/article/details/130541967