Skip to content

Commit d1911a7

Browse files
committed
minor syntax change
1 parent 47b8738 commit d1911a7

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

documentation/modules/auxiliary/scanner/ftp/anonymous.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ This module allows us to scan through a series of IP Addresses and provide detai
88

99
1. ```apt-get install vsftpd```
1010
2. Allow local users to log in and to allow ftp uploads by editing file `/etc/vsftpd.conf` uncommenting the following:
11-
```
12-
local_enable=YES
13-
write_enable=YES
14-
chroot_list_enable=YES
15-
chroot_list_file=/etc/vsftpd.chroot_list
16-
```
11+
12+
```
13+
local_enable=YES
14+
write_enable=YES
15+
chroot_list_enable=YES
16+
chroot_list_file=/etc/vsftpd.chroot_list
17+
```
18+
1719
3. **IMPORTANT:** For allowing anonymous access set ```anonymous_enable=YES```
1820
4. Create the file `/etc/vsftpd.chroot_list` and add the local users you want allow to connect to FTP server. Start service and test connections:
1921
5. ```service vsftpd start```

0 commit comments

Comments
 (0)