From 6082e5bf2629ed4fd697bad67c2755d31eadef73 Mon Sep 17 00:00:00 2001 From: Jonathan Claudius Date: Fri, 26 Aug 2016 11:06:06 -0400 Subject: [PATCH] Bump verion to 0.0.10 --- README.md | 6 +++++- lib/ssh_scan/version.rb | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3736b098..9de27563 100644 --- a/README.md +++ b/README.md @@ -57,14 +57,16 @@ bundle install Run `ssh_scan -h` to get this - ssh_scan v0.0.9 (https://github.com/mozilla/ssh_scan) + ssh_scan v0.0.10 (https://github.com/mozilla/ssh_scan) Usage: ssh_scan [options] -t, --target [IP/Range/Hostname] IP/Ranges/Hostname to scan -f, --file [FilePath] File Path of the file containing IP/Range/Hostnames to scan + -T, --timeout [seconds] Timeout per connect after which ssh_scan gives up on the host -o, --output [FilePath] File to write JSON output to -p, --port [PORT] Port (Default: 22) -P, --policy [FILE] Custom policy file (Default: Mozilla Modern) + --threads [NUMBER] Number of worker threads (Default: 5) -u, --unit-test [FILE] Throw appropriate exit codes based on compliance status -v, --version Display just version info -h, --help Show this message @@ -74,12 +76,14 @@ Run `ssh_scan -h` to get this ssh_scan -t 192.168.1.1 ssh_scan -t server.example.com ssh_scan -t ::1 + ssh_scan -t ::1 -T 5 ssh_scan -f hosts.txt ssh_scan -o output.json ssh_scan -t 192.168.1.1 -p 22222 ssh_scan -t 192.168.1.1 -P custom_policy.yml ssh_scan -t 192.168.1.1 --unit-test -P custom_policy.yml + - See here for [example video](https://asciinema.org/a/7pliiw5zqhj7eqvz7q437u6vx) - See here for [example output](https://github.com/mozilla/ssh_scan/blob/master/examples/192.168.1.1.json) - See here for [example policies](https://github.com/mozilla/ssh_scan/blob/master/policies) diff --git a/lib/ssh_scan/version.rb b/lib/ssh_scan/version.rb index a135f65b..501b703c 100644 --- a/lib/ssh_scan/version.rb +++ b/lib/ssh_scan/version.rb @@ -1,3 +1,3 @@ module SSHScan - VERSION = '0.0.9' + VERSION = '0.0.10' end