Skip to content

SSH User Enumeration. This Python script can be used to enumerate valid usernames on a target SSH server. It uses the Paramiko library to perform the SSH connection and authentication.

License

Notifications You must be signed in to change notification settings

abdulr7mann/ssh-user-enumer8r

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

Reach me at:

  • Twitter
  • Discord

SSH User Enumeration

Current Release Downloads

The Python script utilizes the Paramiko library to perform SSH connection and authentication and can be used to enumerate valid usernames on an SSH server with a version below 7.5. This vulnerability exists because SSH versions prior to 7.5 handle authentication failures differently for valid and invalid user accounts, which can be exploited by attackers to determine whether a specific username exists on the system or not.

Prerequisites

  • Python 3
  • Paramiko library

Installation

  • Clone the repository: git clone https://github.com/abdulr7mann/ssh-user-enumer8r.git
  • Install the Paramiko library: pip install paramiko

Usage

python3 enumer8r.py [--host 127.0.0.1 | --ip-list ips.txt | --user root | --user-list users.txt] [--port 22]

Arguments:

  • --host: single IP address to attack
  • --ip-list: file with a list of IP addresses
  • --user: single username to use for attacking
  • --user-list: file with a list of usernames to use for attacking
  • --port: SSH port (default is 22)

At least one IP and one username must be provided.

Examples

# Attack a single host with a single username
python3 enumer8r.py --host 127.0.0.1 --user root

# Attack a list of hosts with a single username
python3 enumer8r.py --ip-list ips.txt --user root

# Attack a single host with a list of usernames
python3 enumer8r.py --host 127.0.0.1 --user-list users.txt

# Attack a list of hosts with a list of usernames
python3 enumer8r.py --ip-list ips.txt --user-list users.txt

License


This tool is released under the GNU General Public License v3.0. You can find a copy of the license in the LICENSE file.

Disclaimer

  • This tool is provided as-is and without any warranty. The author assumes no responsibility or liability for any errors or omissions that may occur while using this tool. Use at your own risk.
  • This tool is intended for legal and authorized use only. Misuse of this tool can result in criminal charges and/or damage to systems. The author is not responsible for any misuse or damage caused by this tool. Use at your own risk.

About

SSH User Enumeration. This Python script can be used to enumerate valid usernames on a target SSH server. It uses the Paramiko library to perform the SSH connection and authentication.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages