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
|
2024-06-07 10:04:29 +00:00
|
|
|
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:11:46 +00:00
|
|
|
- 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:11:46 +00:00
|
|
|
case-insensitive: true
|
|
|
|
# digest: 4a0a00473045022100c512c1a23c479681469c4b6a1e1e7a5740dfee043f58cb2a1d79767822cbb32802203dfa42884afa515fb2ac6dd0e0075422bc1f3ece618c6538164c8b9b09062e46:922c64590222798bb761d5b6d8e72950
|