mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
32 lines
715 B
YAML
32 lines
715 B
YAML
id: sunssh-detect
|
|
|
|
info:
|
|
name: SunSSH - Detection
|
|
author: pussycat0x
|
|
severity: info
|
|
description: |
|
|
SunSSH SSH server detection. SunSSH is the SSH implementation used in Solaris and other Sun Microsystems operating systems. It can be identified by the SSH banner format SSH-2.0-Sun_SSH_version.
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
shodan-query: ssh product:"SunSSH"
|
|
tags: network,ssh,detect
|
|
|
|
tcp:
|
|
- inputs:
|
|
- data: "\n"
|
|
host:
|
|
- "{{Hostname}}"
|
|
port: 22
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "SSH-"
|
|
- "Sun_SSH"
|
|
condition: and
|
|
|
|
extractors:
|
|
- type: regex
|
|
regex:
|
|
- "SSH-([0-9.]+)-Sun_SSH_([0-9.]+)" |