-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path548-tftp-fingerprints.nse
148 lines (131 loc) · 5.03 KB
/
548-tftp-fingerprints.nse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
local table = require 'table'
--[[
This is compiled list of known TFTP responses.
]]
author = {"Mak Kolybabi <[email protected]>"}
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
fingerprints = {};
--------------------------------------------------------------------------------
-- Example Fingerprint
--------------------------------------------------------------------------------
-- Based on the format of the 'match' directive used in service probes.
-- https://nmap.org/book/vscan-fileformat.html#vscan-tbl-versioninfo
--------------------------------------------------------------------------------
-- table.insert(fingerprints, {
-- TFTP_ERRCODE, "TFTP_ERRMSG", {
-- p = "Product",
-- v = "Version",
-- i = "Extra Info",
-- h = "Hostname",
-- o = "Operating System",
-- d = "Device Type",
-- cpe = {"CPE", ...},
-- }});
--------------------------------------------------------------------------------
-- SolarWinds
--------------------------------------------------------------------------------
table.insert(fingerprints, {
2, "The IP address is not in the range of allowable addresses.", {
p = "SolarWinds tftpd",
e = "IP disallowed",
o = "Windows",
cpe = {"a:solarwinds:tftp_server", "o:microsoft:windows/a"},
}});
--------------------------------------------------------------------------------
-- Cisco
--------------------------------------------------------------------------------
table.insert(fingerprints, {
0, "Invalid TFTP Opcode", {
p = "Cisco tftpd",
cpe = {"a:cisco:tftp_server"},
}});
--------------------------------------------------------------------------------
-- Plan 9
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Illegal TFTP operation", {
p = "Plan 9 tftpd",
o = "Plan 9",
cpe = {"o:belllabs:plan_9/a"},
}});
--------------------------------------------------------------------------------
-- Zoom X5 ADSL Modem
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Error: Illegal TFTP Operation", {
p = "Zoom X5 ADSL modem tftpd",
d = "broadband router",
cpe = {"h:zoom:x5/a"},
}});
--------------------------------------------------------------------------------
-- Cisco Router
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Illegal operation", {
p = "Cisco router tftpd",
o = "IOS",
d = "router",
cpe = {"a:cisco:tftp_server", "o:cisco:ios/a"},
}});
--------------------------------------------------------------------------------
-- Microsoft Windows Deployment Services
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Illegal operation error.", {
p = "Microsoft Windows Deployment Services tftpd",
o = "Windows",
cpe = {"o:microsoft:windows"},
}});
--------------------------------------------------------------------------------
-- SolarWinds Free
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Unknown operatation code: 0 received from", {
p = "SolarWinds Free tftpd",
cpe = {"a:solarwinds:tftp_server"},
}});
table.insert(fingerprints, {
4, "Could not find file '", {
p = "SolarWinds Free tftpd",
cpe = {"a:solarwinds:tftp_server"},
}});
--------------------------------------------------------------------------------
-- Brother MFC-9340CDW
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "illegal (unrecognized) tftp operation", {
p = "Brother printer tftpd",
d = "printer",
}});
--------------------------------------------------------------------------------
-- HP Intelligent Management Center
--------------------------------------------------------------------------------
table.insert(fingerprints, {
0, "Not defined, see error message(if any).", {
p = "HP Intelligent Management Center tftpd",
cpe = {"a:hp:intelligent_management_center"},
}});
--------------------------------------------------------------------------------
-- Windows 2003 Server Deployment Service
--------------------------------------------------------------------------------
table.insert(fingerprints, {
4, "Illegal TFTP operation", {
p = "Windows 2003 Server Deployment Service",
o = "Windows",
cpe = {"o:microsoft:windows_server_2003/a"},
}});
--------------------------------------------------------------------------------
-- Enistic Zone Controller
--------------------------------------------------------------------------------
table.insert(fingerprints, {
1, "File not found.", {
p = "Enistic zone controller tftpd",
}});
--------------------------------------------------------------------------------
-- Netkit
--------------------------------------------------------------------------------
table.insert(fingerprints, {
1, "File not found", {
p = "Netkit tftpd or atftpd",
cpe = {"a:netkit:netkit", "a:lefebvre:atftpd"},
}})