-
Notifications
You must be signed in to change notification settings - Fork 14k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Telnet Modules Docs #11439
Added Telnet Modules Docs #11439
Conversation
Release NotesDocumentation has been added for the telnet_login and telnet_version auxiliary scanner modules. |
2. Do: ```set RHOSTS [IP]``` | ||
3. Do: ```set THREADS [NUMBER OF THREADS]``` | ||
4. Do: ```set USER_FILE [USERNAME FILE]``` | ||
5. Do: ```set PASS_FILE[PASSWORD FILE]``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing space after FILE
|
||
## Options | ||
|
||
This auxiliary module allows you to pass credentials in a number of ways. You can specifically set a username and password, you can pass a list of usernames and a list of passwords for it to iterate through, or you can provide a file that contains usernames and passwords separated by a space. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't needed and is more or less a duplicate of the description section
|
||
### USER_FILE | ||
|
||
File containing username one per line. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
usernames
@@ -0,0 +1,31 @@ | |||
## Description | |||
This module will scan a range of machines and prints any telnet servers that are running on it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prints The banner, usually containing the version, of any telnet
Added
auxiliary/scanner/telnet/telnet_login
andauxiliary/scanner/telnet/telnet_version
modules documentation.