nuclei-templates/javascript/udp/detection/tftp-detect.yaml

37 lines
778 B
YAML
Raw Normal View History

2024-04-02 07:31:29 +00:00
id: tftp-detect
info:
name: TFTP Service - Detection
author: pussycat0x
severity: info
description: |
Detect TFTP Service.
metadata:
verified: true
max-request: 1
shodan-query: "port:69"
2024-04-02 07:31:29 +00:00
tags: js,tftp,udp,network
javascript:
2024-07-24 11:23:12 +00:00
- pre-condition: |
isUDPPortOpen(Host,Port);
code: |
2024-04-02 07:31:29 +00:00
let packet = bytes.NewBuffer();
let message = "1.txt"
let data = message;
packet.WriteString(data)
let c = require("nuclei/net");
let conn = c.Open('udp', `${Host}:${Port}`);
conn.SendHex(packet.Hex());
let resp = conn.RecvString(256);
resp;
args:
Host: "{{Host}}"
Port: 69
matchers:
- type: word
words:
- "Unknown transfer ID"
2024-07-24 11:14:28 +00:00
case-insensitive: true