Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/documentation/modules/auxiliary/scanner/ftp/anonymous.md
Views: 11789
Description
This module allows us to scan through a series of IP Addresses and provide details whether anonymous access is allowed or not in that particular FTP server. By default, anonymous access is not allowed by the FTP server.
Vulnerable Application
Install ftp server on Kali Linux:
apt-get install vsftpd
Allow local users to log in and to allow ftp uploads by editing file
/etc/vsftpd.conf
uncommenting the following:IMPORTANT: For allowing anonymous access set
anonymous_enable=YES
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:service vsftpd start
Installing FTP for IIS 7.5 in Windows:
IIS 7.5 for Windows Server 2008 R2:
On the taskbar, click Start, point to Administrative Tools, and then click Server Manager.
In the Server Manager hierarchy pane, expand Roles, and then click Web Server (IIS).
In the Web Server (IIS) pane, scroll to the Role Services section, and then click Add Role Services.
On the Select Role Services page of the Add Role Services Wizard, expand FTP Server.
Select FTP Service. (Note: To support ASP.NET Membership or IIS Manager authentication for the FTP service, you will also need to select FTP Extensibility.)
Click Next.
On the Confirm Installation Selections page, click Install.
On the Results page, click Close.
IIS 7.5 for Windows 7:
On the taskbar, click Start, and then click Control Panel.
In Control Panel, click Programs and Features, and then click Turn Windows Features on or off.
Expand Internet Information Services, then FTP Server.
Select FTP Service. (Note: To support ASP.NET Membership or IIS Manager authentication for the FTP service, you will also need to select FTP Extensibility.)
Click OK.
Enabling anonymous login on IIS
Open IIS Manager and navigate to the level you want to manage. ...
In Features View, double-click Authentication.
On the Authentication page, select Anonymous Authentication.
In the Actions pane, click Enable to use Anonymous authentication with the default settings.
Verification Steps
Do:
use auxiliary/scanner/ftp/anonymous
Do:
set RHOSTS [IP]
Do:
set RPORT [IP]
Do:
run