44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
id: ssh-weakkey-exchange-algo
|
|
|
|
info:
|
|
name: SSH Weak Key Exchange Algorithms Enabled
|
|
author: pussycat0x
|
|
severity: low
|
|
description: |
|
|
SSH Weak Key Exchange Algorithms Enabled indicates that the SSH server or client is configured to allow the use of less secure key exchange methods, posing a potential security risk during the establishment of secure connections. It's crucial to update configurations to prioritize stronger key exchange algorithms.
|
|
reference:
|
|
- https://www.tenable.com/plugins/nessus/153953
|
|
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:
|
|
- "ServerKex"
|
|
|
|
- type: word
|
|
words:
|
|
- "diffie-hellman-group-exchange-sha1"
|
|
- "diffie-hellman-group1-sha1"
|
|
- "gss-gex-sha1"
|
|
- "gss-group1-sha1"
|
|
- "gss-group14-sha1"
|
|
- "rsa1024-sha1"
|
|
condition: or
|
|
# digest: 4b0a00483046022100f82d571f7176c663032cd479b27791a342a1468db6f3c2f5c924cb722c5ec4a002210080b44dd430101db321879e09d4e61a021f556cb586b8d606663469350ce671ef:922c64590222798bb761d5b6d8e72950 |