mirror of
				https://github.com/jtesta/ssh-audit.git
				synced 2025-11-04 11:12:15 +01:00 
			
		
		
		
	Release v1.0.20160812.
This commit is contained in:
		@@ -18,9 +18,16 @@ usage: ssh-audit.py [-nv] host[:port]
 | 
				
			|||||||
Verbose flag will fill each row, i.e, not leave blanks, for easier usage with _batch_ scripts or with manual grepping.
 | 
					Verbose flag will fill each row, i.e, not leave blanks, for easier usage with _batch_ scripts or with manual grepping.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### example
 | 
					### example
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## ChangeLog
 | 
					## ChangeLog
 | 
				
			||||||
 | 
					### v1.0.20160812
 | 
				
			||||||
 | 
					 - implement compatibility feature
 | 
				
			||||||
 | 
					 - fix wrong mac algorithm warning
 | 
				
			||||||
 | 
					 - fix Dropbear SSH version typo
 | 
				
			||||||
 | 
					 - parse pre-banner header
 | 
				
			||||||
 | 
					 - better errors handling
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### v1.0.20160803
 | 
					### v1.0.20160803
 | 
				
			||||||
 - use OpenSSH 7.3 banner
 | 
					 - use OpenSSH 7.3 banner
 | 
				
			||||||
 - add new key-exchange algorithms
 | 
					 - add new key-exchange algorithms
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,7 +30,7 @@ SSH_BANNER = 'SSH-2.0-OpenSSH_7.3'
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
def usage():
 | 
					def usage():
 | 
				
			||||||
	p = os.path.basename(sys.argv[0])
 | 
						p = os.path.basename(sys.argv[0])
 | 
				
			||||||
	out.head('# {0} v1.0.20160803, moo@arthepsy.eu'.format(p))
 | 
						out.head('# {0} v1.0.20160812, moo@arthepsy.eu'.format(p))
 | 
				
			||||||
	out.info('\nusage: {} [-nv] host[:port]\n'.format(p))
 | 
						out.info('\nusage: {} [-nv] host[:port]\n'.format(p))
 | 
				
			||||||
	out.info('   -v  verbose')
 | 
						out.info('   -v  verbose')
 | 
				
			||||||
	out.info('   -n  disable colors' + os.linesep)
 | 
						out.info('   -n  disable colors' + os.linesep)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user