mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
32 lines
709 B
YAML
32 lines
709 B
YAML
id: mocana-ssh-detect
|
|
|
|
info:
|
|
name: Mocana SSH - Detection
|
|
author: pussycat0x
|
|
severity: info
|
|
description: |
|
|
Mocana embedded SSH server detection. Mocana provides embedded SSH implementations for IoT and embedded devices that can be identified by the SSH banner format SSH-2.0-Mocana SSH.
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
shodan-query: product:"Mocana embedded SSH"
|
|
tags: network,ssh,detect
|
|
|
|
tcp:
|
|
- inputs:
|
|
- data: "\n"
|
|
host:
|
|
- "{{Hostname}}"
|
|
port: 22
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "SSH-"
|
|
- "Mocana"
|
|
condition: and
|
|
|
|
extractors:
|
|
- type: regex
|
|
regex:
|
|
- "SSH-([0-9.]+)-Mocana SSH" |