lint -fix
parent
dea1b97942
commit
761b165414
|
@ -4,7 +4,7 @@ info:
|
||||||
name: SSH Weak Key Exchange Algorithms Enabled
|
name: SSH Weak Key Exchange Algorithms Enabled
|
||||||
author: pussycat0x
|
author: pussycat0x
|
||||||
severity: low
|
severity: low
|
||||||
description: |
|
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.
|
"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:
|
reference:
|
||||||
- https://www.tenable.com/plugins/nessus/153953
|
- https://www.tenable.com/plugins/nessus/153953
|
||||||
|
@ -17,7 +17,7 @@ javascript:
|
||||||
- code: |
|
- code: |
|
||||||
let m = require("nuclei/ssh");
|
let m = require("nuclei/ssh");
|
||||||
let c = m.SSHClient();
|
let c = m.SSHClient();
|
||||||
let response = c.ConnectSSHInfoMode(Host, Port);
|
let response = c.ConnectSSHInfoMode({{Host}}, {{Port}});
|
||||||
to_json(response);
|
to_json(response);
|
||||||
|
|
||||||
args:
|
args:
|
||||||
|
@ -26,11 +26,11 @@ javascript:
|
||||||
|
|
||||||
matchers-condition: and
|
matchers-condition: and
|
||||||
matchers:
|
matchers:
|
||||||
- type : word
|
- type: word
|
||||||
words:
|
words:
|
||||||
- "ServerKex"
|
- "ServerKex"
|
||||||
|
|
||||||
- type : word
|
- type: word
|
||||||
words:
|
words:
|
||||||
- "diffie-hellman-group-exchange-sha1"
|
- "diffie-hellman-group-exchange-sha1"
|
||||||
- "diffie-hellman-group1-sha1"
|
- "diffie-hellman-group1-sha1"
|
||||||
|
|
Loading…
Reference in New Issue