nuclei-templates/javascript/enumeration/ssh-password-auth.yaml

30 lines
621 B
YAML

id: ssh-password-auth
info:
name: SSH Password-based Authentication
author: princechaddha
severity: info
reference:
- https://nmap.org/nsedoc/scripts/ssh-auth-methods.html
metadata:
max-request: 1
shodan-query: product:"OpenSSH"
tags: ssh,js,enum,network
javascript:
- code: |
var m = require("nuclei/ssh");
var c = m.SSHClient();
var response = c.ConnectSSHInfoMode(Host, Port);
to_json(response);
args:
Host: "{{Host}}"
Port: "22"
matchers:
- type: dsl
dsl:
- '"UserAuth":'
- '"password"'
condition: and