nuclei-templates/network/unauth-ftp.yaml

27 lines
674 B
YAML
Raw Normal View History

2021-03-11 07:10:27 +00:00
id: unauth-ftp
info:
name: FTP Anonymous Login
2021-06-09 12:20:56 +00:00
author: C3l3si4n
2021-03-11 07:10:27 +00:00
severity: medium
reference:
- https://tools.ietf.org/html/rfc2577
2021-03-11 07:10:27 +00:00
tags: network,ftp
2022-08-16 16:26:33 +00:00
description: |
Anonymous FTP access allows anyone to access your public_ftp folder, allowing unidentified visitors to download (and possibly upload) files on your website. Anonymous FTP creates the potential for a security hole for hackers and is not recommended.
2022-08-16 12:52:05 +00:00
2021-03-11 07:10:27 +00:00
network:
- inputs:
- data: "USER anonymous\r\nPASS nuclei\r\n"
host:
2021-12-09 13:06:24 +00:00
- "{{Host}}:21"
2021-03-25 14:52:41 +00:00
- "{{Hostname}}"
2021-03-11 07:10:27 +00:00
matchers:
- type: word
words:
- "Anonymous access allowed,"
2022-08-16 16:26:33 +00:00
part: response