如何使用ssh_scan遠端驗證SSH服務的配置和策略
導讀 | ssh_scan是一個面向 和 UNIX 伺服器的易用的 SSH 服務引數配置和策略的掃描器程式,其思路來自Mozilla OpenSSH安全指南,這個指南為 SSH 服務引數配置提供了一個可靠的安全策略基線的建議,如加密演算法(Ciphers),報文認證資訊碼演算法(MAC),金鑰交換演算法(KexAlgos)和其它。 |
ssh_scan有如下好處:
- 它的依賴是最小化的,ssh_scan只引入了本地 Ruby 和 BinData 來進行它的工作,沒有太多的依賴。
- 它是可移植的,你可以在其它的專案中使用ssh_scan或者將它用在自動化任務上。
- 它是易於使用的,只需要簡單的將它指向一個 SSH 服務就可以獲得一個該服務所支援的選項和策略狀態的 JSON 格式報告。
- 它同時也是易於配置的,你可以建立適合你策略需求的策略。
建議閱讀:如何在 Linux 上安裝配置 OpenSSH 服務
如何在 Linux 上安裝 ssh_scan
有如下三種安裝ssh_scan 的方式:
使用 Ruby gem 來安裝執行,如下:
----------- 在 Debian/Ubuntu ----------- $ sudo apt-get install ruby gem $ sudo gem install ssh_scan ----------- 在 CentOS/RHEL ----------- # yum install ruby rubygem # gem install ssh_scan
使用docker 容器來執行,如下:
# docker pull mozilla/ssh_scan # docker run -it mozilla/ssh_scan /app/bin/ssh_scan -t github.com
使用原始碼安裝執行,如下:
# git clone # cd ssh_scan # gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 # curl -sSL | bash -s stable # rvm install 2.3.1 # rvm use 2.3.1 # gem install bundler # bundle install # ./bin/ssh_scan
如何在 Linux 上使用 ssh_scan
使用ssh_scan的語法如下:
$ ssh_scan -t ip地址 $ ssh_scan -t 主機名
舉個例子來掃描 192.168.43.198 這臺伺服器的 SSH 配置和策略,鍵入:
$ ssh_scan -t 192.168.43.198
注意你同時也可以像下方展示的給 -t選項傳入一個[IP地址/地址段/主機名]:
$ ssh_scan -t 192.168.43.198,200,205 $ ssh_scan -t test.tecmint.lan
輸出示例:
I, [2017-05-09T10:36:17.913644 #7145] INFO -- : You're using the latest version of ssh_scan 0.0.19 [ { "ssh_scan_version": "0.0.19", "ip": "192.168.43.198", "port": 22, "server_banner": "SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.1", "ssh_version": 2.0, "os": "ubuntu", "os_cpe": "o:canonical:ubuntu:16.04", "ssh_lib": "openssh", "ssh_lib_cpe": "a:openssh:openssh:7.2p2", "cookie": "68b17bcca652eeaf153ed18877770a38", "key_algorithms": [ "curve25519-sha256@libssh.org", "ecdh-sha2-nistp256", "ecdh-sha2-nistp384", "ecdh-sha2-nistp521", "diffie-hellman-group-exchange-sha256", "diffie-hellman-group14-sha1" ], "server_host_key_algorithms": [ "ssh-rsa", "rsa-sha2-512", "rsa-sha2-256", "ecdsa-sha2-nistp256", "ssh-ed25519" ], "encryption_algorithms_client_to_server": [ "chacha20-poly1305@openssh.com", "aes128-ctr", "aes192-ctr", "aes256-ctr", "aes128-gcm@openssh.com", "aes256-gcm@openssh.com" ], "encryption_algorithms_server_to_client": [ "chacha20-poly1305@openssh.com", "aes128-ctr", "aes192-ctr", "aes256-ctr", "aes128-gcm@openssh.com", "aes256-gcm@openssh.com" ], "mac_algorithms_client_to_server": [ "umac-64-etm@openssh.com", "umac-128-etm@openssh.com", "hmac-sha2-256-etm@openssh.com", "hmac-sha2-512-etm@openssh.com", "hmac-sha1-etm@openssh.com", "umac-64@openssh.com", "umac-128@openssh.com", "hmac-sha2-256", "hmac-sha2-512", "hmac-sha1" ], "mac_algorithms_server_to_client": [ "umac-64-etm@openssh.com", "umac-128-etm@openssh.com", "hmac-sha2-256-etm@openssh.com", "hmac-sha2-512-etm@openssh.com", "hmac-sha1-etm@openssh.com", "umac-64@openssh.com", "umac-128@openssh.com", "hmac-sha2-256", "hmac-sha2-512", "hmac-sha1" ], "compression_algorithms_client_to_server": [ "none", "zlib@openssh.com" ], "compression_algorithms_server_to_client": [ "none", "zlib@openssh.com" ], "languages_client_to_server": [ ], "languages_server_to_client": [ ], "hostname": "tecmint", "auth_methods": [ "publickey", "password" ], "fingerprints": { "rsa": { "known_bad": "false", "md5": "0e:d0:d7:11:f0:9b:f8:33:9c:ab:26:77:e5:66:9e:f4", "sha1": "fc:8d:d5:a1:bf:52:48:a6:7e:f9:a6:2f:af:ca:e2:f0:3a:9a:b7:fa", "sha256": "ff:00:b4:a4:40:05:19:27:7c:33:aa:db:a6:96:32:88:8e:bf:05:a1:81:c0:a4:a8:16:01:01:0b:20:37:81:11" } }, "start_time": "2017-05-09 10:36:17 +0300", "end_time": "2017-05-09 10:36:18 +0300", "scan_duration_seconds": 0.221573169, "duplicate_host_key_ips": [ ], "compliance": { "policy": "Mozilla Modern", "compliant": false, "recommendations": [ "Remove these Key Exchange Algos: diffie-hellman-group14-sha1", "Remove these MAC Algos: umac-64-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, hmac-sha1", "Remove these Authentication Methods: password" ], "references": [ "https://wiki.mozilla.org/Security/Guidelines/OpenSSH" ] } } ]
你可以使用-p選項來指定不同的埠,-L選項來開啟日誌記錄配合-V選項來指定日誌級別:
$ ssh_scan -t 192.168.43.198 -p 22222 -L ssh-scan.log -V INFO
另外,可以使用-P或--policy選項來指定一個策略檔案(預設是 Mozilla Modern):
$ ssh_scan -t 192.168.43.198 -L ssh-scan.log -V INFO -P /path/to/custom/policy/file
ssh_scan 使用幫助與其它示例:
$ ssh_scan -h
輸出示例:
ssh_scan v0.0.17 () 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 -L, --logger [Log File Path] Enable logger -O, --from_json [FilePath] File to read JSON output from -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) --fingerprint-db [FILE] File location of fingerprint database (Default: ./fingerprints.db) --suppress-update-status Do not check for updates -u, --unit-test [FILE] Throw appropriate exit codes based on compliance status -V [STD_LOGGING_LEVEL], --verbosity -v, --version Display just version info -h, --help Show this message Examples: 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 -O output.json -o rescan_output.json ssh_scan -t 192.168.1.1 -p 22222 ssh_scan -t 192.168.1.1 -p 22222 -L output.log -V INFO ssh_scan -t 192.168.1.1 -P custom_policy.yml ssh_scan -t 192.168.1.1 --unit-test -P custom_policy.yml
SSH 伺服器相關參考閱讀:
- 使用 SSH Keygen(ssh-keygen)五步實現 SSH 免密登入
- 安全 SSH 伺服器的 5 個最 佳實踐
- 使用 Chroot 來限制 SSH 使用者進入某些目錄
- 如何配置 SSH 連線來簡化遠端登入
via:
作者: 譯者: 校對:
本文由 原創編譯, 榮譽推出
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2987818/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [SSH服務]——SSH詳解、常用的遠端連線工具
- Linux下 SSH遠端管理服務Linux
- ubuntu18.04開啟ssh服務和ssh遠端連線Ubuntu
- Ubuntu開啟ssh服務遠端登入Ubuntu
- 蘋果遠端裝置管理服務DEP含有驗證缺陷蘋果
- 如何在Flutter中整合華為遠端配置服務Flutter
- linux SSH服務允許root使用者遠端登入Linux
- Oracle服務端驗證機制Oracle服務端
- SMSSDK驗證碼服務端校驗介面服務端
- 如何使用ssh工具便於遠端管理
- bbossaop遠端服務介紹-點對點遠端服務呼叫和組播服務呼叫的區別
- SSH 遠端執行任務
- 雲端計算運維學習---ssh遠端管理服務運維
- win10 如何開啟遠端服務_win10如何開啟遠端連線服務Win10
- 透過 ForwardAgent ,在遠端機器上,使用本機 ssh key 進行驗證Forward
- bbossaop遠端服務介紹-遠端服務呼叫例項
- 如何在React Native專案中整合華為遠端配置服務React Native
- 使用nodejs和Java訪問遠端伺服器的服務NodeJSJava伺服器
- bbossaop遠端服務介紹-遠端服務id定義規則
- MVC驗證01-基礎、遠端驗證MVC
- centos 7 centos 8配置ssh遠端管理CentOS
- 使用 Frp 和 Docker 通過遠端桌面和 SSH 來遠端控制 Windows(反向代理)FRPDockerWindows
- Struts 驗證框架 配置和使用框架
- spring 的遠端服務是?Spring
- 如何在命令列下遠端安裝終端服務命令列
- 遠端訪問的型別使用的協議和身份驗證方法介紹型別協議
- PHP (Laravel) 實現 iOS 內購服務端驗證PHPLaraveliOS服務端
- 解決 Linux 下 SSH 遠端連線服務卡慢的全過程Linux
- Ubuntu 16.04遠端登入伺服器--ssh的安裝和配置Ubuntu伺服器
- (2)什麼是服務拆分和遠端呼叫
- Android程式使用SOAP呼叫遠端WebService服務AndroidWeb
- 本地除錯遠端服務除錯
- 《遠端控制》-服務端實現(一)服務端
- 遠端終端服務的簡單實現
- 小白的學習筆記——服務拆分和遠端呼叫筆記
- 使用免費的Oracle雲服務-遠端連線ATPOracle
- 如果呼叫遠端遠端url介面為https,且存在客戶端證書驗證,如何在客戶端處理HTTP客戶端
- 如何利用SSH通道來連線遠端的MysqlMySql