mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
32 lines
724 B
YAML
32 lines
724 B
YAML
id: ws-ftp-ssh-detect
|
|
|
|
info:
|
|
name: WS_FTP SSH - Detection
|
|
author: pussycat0x
|
|
severity: info
|
|
description: |
|
|
WS_FTP SSH server detection. WS_FTP is a Windows-based FTP/SFTP client and server that includes SSH functionality. It can be identified by the SSH banner format SSH-2.0-WS_FTP-SSH_version.
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
shodan-query: ssh product:"WS_FTP sshd"
|
|
tags: network,ssh,detect
|
|
|
|
tcp:
|
|
- inputs:
|
|
- data: "\n"
|
|
host:
|
|
- "{{Hostname}}"
|
|
port: 22
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "SSH-"
|
|
- "WS_FTP"
|
|
condition: and
|
|
|
|
extractors:
|
|
- type: regex
|
|
regex:
|
|
- "SSH-([0-9.]+)-WS_FTP-SSH_([0-9.]+)" |