Skip to content

SSH User Enumeration Script in Python Using The Timing Attack

License

Notifications You must be signed in to change notification settings

IrArTr/ssh_user_enum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ssh_enum_v0.3.py Usage: ssh_enum_v0.3.py [options]

Options:

  -h, --help      Show this help message and exit
  
  -u --userlist		Specify a new line delimited username file
  
  -i --ip         Specify the target
  
  -m --multiplier	Specify the multiplier for the password (used to cause the delay)
  
  -t --threshold	Adjust the threshold according to the multipler
  
  -p --port		    Specify a port if the SSH service is not running on port 22
  
  -a --autotune		Calculate the optimum delay/threshold

Tips

Running the script with just userlist and host arguments will use defaults. This will work but may not be optimal.

Running the script with autotune will attempt to find the ideal multiplier and appropriate threshold: ssh_enum_v0.3.py -u users.txt -i 192.168.0.1 -a

After the autotune mode has finished, it will display the multiplier and threshold. These values can be used for subsequent attacks against the same hsot: ssh_enum_v0.3.py - users.txt -i 192.168.0.1 -m 4000 -t 8

About

SSH User Enumeration Script in Python Using The Timing Attack

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.3%
  • JavaScript 4.7%