mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
add ftp detect and workflow
This commit is contained in:
32
network/detection/ftp-detect.yaml
Normal file
32
network/detection/ftp-detect.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
id: ftp-detec
|
||||
|
||||
info:
|
||||
name: FTP Service - Detect
|
||||
author: Mys7ic
|
||||
severity: info
|
||||
description: |
|
||||
FTP service was detected.
|
||||
reference:
|
||||
- https://www.rfc-editor.org/rfc/rfc959
|
||||
classification:
|
||||
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
|
||||
cwe-id: CWE-200
|
||||
metadata:
|
||||
max-request: 1
|
||||
tags: network,ftp,detect,detection,tcp
|
||||
|
||||
tcp:
|
||||
- inputs:
|
||||
- data: "\r\n"
|
||||
host:
|
||||
- "{{Hostname}}"
|
||||
port: 21
|
||||
read-size: 2048
|
||||
matchers-condition: or
|
||||
matchers:
|
||||
- type: regex
|
||||
regex:
|
||||
- "^220.*FTP.*"
|
||||
- type: word
|
||||
words:
|
||||
- "FTP"
|
||||
10
workflows/ftp-workflow.yaml
Normal file
10
workflows/ftp-workflow.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
id: ftp-workflow
|
||||
|
||||
info:
|
||||
name: FTP Security Checks
|
||||
author: Mys7ic
|
||||
description: A simple workflow that runs all FTP related nuclei templates on a given target.
|
||||
workflows:
|
||||
- template: network/detection/ftp-detect.yaml
|
||||
subtemplates:
|
||||
- tags: ssh
|
||||
Reference in New Issue
Block a user