mirror of
				https://github.com/jtesta/ssh-audit.git
				synced 2025-11-04 03:02:15 +01:00 
			
		
		
		
	Bumped version number.
This commit is contained in:
		@@ -161,7 +161,7 @@ $ docker pull positronsecurity/ssh-audit
 | 
				
			|||||||
For convenience, a web front-end on top of the command-line tool is available at [https://www.ssh-audit.com/](https://www.ssh-audit.com/).
 | 
					For convenience, a web front-end on top of the command-line tool is available at [https://www.ssh-audit.com/](https://www.ssh-audit.com/).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## ChangeLog
 | 
					## ChangeLog
 | 
				
			||||||
### v2.4.0-dev (???)
 | 
					### v2.4.0 (2021-02-23)
 | 
				
			||||||
 - Added multi-threaded scanning support.
 | 
					 - Added multi-threaded scanning support.
 | 
				
			||||||
 - Added built-in Windows manual page (see `-m`/`--manual`); credit [Adam Russell](https://github.com/thecliguy).
 | 
					 - Added built-in Windows manual page (see `-m`/`--manual`); credit [Adam Russell](https://github.com/thecliguy).
 | 
				
			||||||
 - Added version check for OpenSSH user enumeration (CVE-2018-15473).
 | 
					 - Added version check for OpenSSH user enumeration (CVE-2018-15473).
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
name: ssh-audit
 | 
					name: ssh-audit
 | 
				
			||||||
version: '2.3.1-1'
 | 
					version: '2.4.0-1'
 | 
				
			||||||
license: 'MIT'
 | 
					license: 'MIT'
 | 
				
			||||||
summary: ssh-audit
 | 
					summary: ssh-audit
 | 
				
			||||||
description: |
 | 
					description: |
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
"""
 | 
					"""
 | 
				
			||||||
   The MIT License (MIT)
 | 
					   The MIT License (MIT)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   Copyright (C) 2017-2020 Joe Testa (jtesta@positronsecurity.com)
 | 
					   Copyright (C) 2017-2021 Joe Testa (jtesta@positronsecurity.com)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
					   Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
				
			||||||
   of this software and associated documentation files (the "Software"), to deal
 | 
					   of this software and associated documentation files (the "Software"), to deal
 | 
				
			||||||
@@ -21,7 +21,7 @@
 | 
				
			|||||||
   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
					   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
				
			||||||
   THE SOFTWARE.
 | 
					   THE SOFTWARE.
 | 
				
			||||||
"""
 | 
					"""
 | 
				
			||||||
VERSION = 'v2.4.0-dev'
 | 
					VERSION = 'v2.4.0'
 | 
				
			||||||
SSH_HEADER = 'SSH-{0}-OpenSSH_8.2'  # SSH software to impersonate
 | 
					SSH_HEADER = 'SSH-{0}-OpenSSH_8.2'  # SSH software to impersonate
 | 
				
			||||||
GITHUB_ISSUES_URL = 'https://github.com/jtesta/ssh-audit/issues'  # The URL to the Github issues tracker.
 | 
					GITHUB_ISSUES_URL = 'https://github.com/jtesta/ssh-audit/issues'  # The URL to the Github issues tracker.
 | 
				
			||||||
WINDOWS_MAN_PAGE = ''
 | 
					WINDOWS_MAN_PAGE = ''
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user