mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
f893b6c0cb
Signed-off-by: Dwi Siswanto <git@dw1.io>
27 lines
510 B
YAML
27 lines
510 B
YAML
id: ssh-server-fingerprint
|
|
|
|
info:
|
|
name: Fingerprint SSH Server Software
|
|
author: Ice3man543,tarunKoyalwar
|
|
severity: info
|
|
metadata:
|
|
shodan-query: port:22
|
|
|
|
|
|
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"
|
|
|
|
extractors:
|
|
- type: json
|
|
name: server
|
|
json:
|
|
- '.ServerID.Raw'
|
|
part: response
|