mirror of https://github.com/jtesta/ssh-audit.git
Bumped version number.
This commit is contained in:
parent
6f60722455
commit
f5431559ff
|
@ -42,6 +42,9 @@ usage: ssh-audit.py [-1246pbnvlt] <host>
|
||||||
![screenshot](https://user-images.githubusercontent.com/2982011/63970414-104bdb00-ca72-11e9-832f-3e535be32811.png)
|
![screenshot](https://user-images.githubusercontent.com/2982011/63970414-104bdb00-ca72-11e9-832f-3e535be32811.png)
|
||||||
|
|
||||||
## ChangeLog
|
## ChangeLog
|
||||||
|
### v2.1.0 (???)
|
||||||
|
- ???
|
||||||
|
|
||||||
### v2.0.0 (2019-08-29)
|
### v2.0.0 (2019-08-29)
|
||||||
- Forked from https://github.com/arthepsy/ssh-audit (development was stalled, and developer went MIA).
|
- Forked from https://github.com/arthepsy/ssh-audit (development was stalled, and developer went MIA).
|
||||||
- Added RSA host key length test.
|
- Added RSA host key length test.
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import binascii, os, io, sys, socket, struct, random, errno, getopt, re, hashlib, base64
|
import binascii, os, io, sys, socket, struct, random, errno, getopt, re, hashlib, base64
|
||||||
|
|
||||||
VERSION = 'v2.0.0'
|
VERSION = 'v2.1.0-dev'
|
||||||
|
|
||||||
if sys.version_info.major < 3:
|
if sys.version_info.major < 3:
|
||||||
print("\n!!!! NOTE: Python 2 is being considered for deprecation. If you have a good reason to need continued Python 2 support, please e-mail jtesta@positronsecurity.com with your rationale.\n\n")
|
print("\n!!!! NOTE: Python 2 is being considered for deprecation. If you have a good reason to need continued Python 2 support, please e-mail jtesta@positronsecurity.com with your rationale.\n\n")
|
||||||
|
|
Loading…
Reference in New Issue