-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CPTS: Module Attacking services ->ftp
- Loading branch information
1 parent
0e631bb
commit 67c2fa8
Showing
17 changed files
with
412 additions
and
77 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
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
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
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
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
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: medusa | ||
author: amandaguglieri | ||
draft: false | ||
TableOfContents: true | ||
tags: | ||
- pentesting | ||
- brute forcing | ||
- windows | ||
- passwords | ||
--- | ||
|
||
# Medusa | ||
|
||
Medusa is a speedy, parallel, and modular, login brute-forcer. The goal is to support as many services which allow remote authentication as possible. The author considers following items as some of the key features of this application: | ||
|
||
## Installation | ||
|
||
Pre-installed in Kali. | ||
|
||
```bash | ||
wget http://www.foofus.net/jmk/tools/medusa-2.2.tar.gz | ||
./configure | ||
make | ||
make install | ||
``` | ||
|
||
## Basic usage | ||
|
||
|
||
```bash | ||
# Brute force FTP logging | ||
medusa -u fiona -P /usr/share/wordlists/rockyou.txt -h $IP -M ftp -n 2121 | ||
# -u: username | ||
# -U: list of Usernames | ||
# -p: password | ||
# -P: list of passwords | ||
# -h: host /IP | ||
# -M: protocol to bruteforce | ||
# -n: for a different non-default port. For instance, port 2121 for ftp | ||
``` | ||
|
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
Oops, something went wrong.