41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
|
id: ssh-sha1-hmac-algo
|
||
|
|
||
|
info:
|
||
|
name: SSH SHA-1 HMAC Algorithms Enabled
|
||
|
author: pussycat0x
|
||
|
severity: info
|
||
|
description: |
|
||
|
The SSH server at the remote end is set up to allow the use of SHA-1 HMAC algorithms.
|
||
|
reference:
|
||
|
- https://forums.ivanti.com/s/article/How-to-disable-SSH-SHA-1-HMAC-algorithms?language=en_US
|
||
|
metadata:
|
||
|
verified: true
|
||
|
max-request: 2
|
||
|
shodan-query: product:"OpenSSH"
|
||
|
tags: js,ssh,misconfig,network
|
||
|
|
||
|
javascript:
|
||
|
- pre-condition: |
|
||
|
isPortOpen(Host,Port);
|
||
|
code: |
|
||
|
let m = require("nuclei/ssh");
|
||
|
let c = m.SSHClient();
|
||
|
let response = c.ConnectSSHInfoMode(Host, Port);
|
||
|
to_json(response);
|
||
|
|
||
|
args:
|
||
|
Host: "{{Host}}"
|
||
|
Port: "22"
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
words:
|
||
|
- "server_to_client_macs"
|
||
|
- "client_to_server_macs"
|
||
|
condition: and
|
||
|
|
||
|
- type: word
|
||
|
words:
|
||
|
- "hmac-sha1"
|
||
|
# digest: 4a0a004730450220484762717b3b9118a897170f85324decab222fc75ac72bb42ffac2d9f61f534a02210099442b183e30ac52a41d090376c249d76da1398c84d4ea106106ae48d122ef64:922c64590222798bb761d5b6d8e72950
|