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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
---
-- EAP (Extensible Authentication Protocol) library supporting a
-- limited subset of features.
--
-- The library was designed and tested against hostapd v0.6.10
-- The EAP protocol names are the ones specified in:
-- http://www.iana.org/assignments/eap-numbers/eap-numbers.xml
--
-- Scripts can use the library to start an eap session and then to
-- send identity and nak responses to identity and authentication
-- requests made by AP authenticators to analyze their behaviour.
--
-- The following sample code illustrates how to respond to an identity
-- request:
--
-- <code>
-- pcap:pcap_open(iface.device, 512, true, "ether proto 0x888e")
-- ...
-- local _, _, l2_data, l3_data, _ = pcap:pcap_receive()
-- local packet = eap.parse(l2_data .. l3_data3)
-- if packet then
-- if packet.eap.type == eap.eap_t.IDENTITY and packet.eap.code == eap.code_t.REQUEST then
-- eap.send_identity_response(iface, packet.eap.id, "anonymous")
-- end
-- end
-- </code>
--
--
-- @copyright Same as Nmap--See https://nmap.org/book/man-legal.html
--
-- @author Riccardo Cecolin <n@rikiji.de>
--
local math = require "math"
local nmap = require "nmap"
local packet = require "packet"
local stdnse = require "stdnse"
local string = require "string"
_ENV = stdnse.module("eap", stdnse.seeall)
-- Created 02/23/2012 - v0.1
local ETHER_BROADCAST = "01:80:c2:00:00:03"
local ETHER_TYPE_EAPOL_N = 0x888E
local ETHER_TYPE_EAPOL = string.pack(">I2",ETHER_TYPE_EAPOL_N)
local ETHER_HEADER_SIZE = 14
local EAPOL_HEADER_SIZE = 4
local EAP_HEADER_SIZE = 5
eapol_t = {
PACKET = 0,
START = 1,
LOGOFF = 2,
KEY = 3,
ASF = 4,
}
eapol_str = {
[0] = "EAP Packet",
[1] = "EAPOL Start",
[2] = "EAPOL Logoff",
[3] = "EAPOL Key",
[4] = "EAPOL Encapsulated ASF Alert",
}
code_t = {
REQUEST = 1,
RESPONSE = 2,
SUCCESS = 3,
FAILURE = 4,
INITIATE = 5,
FINISH = 6,
}
code_str = {
[1] = "Request",
[2] = "Response",
[3] = "Success",
[4] = "Failure",
[5] = "Initiate",
[6] = "Finish",
}
eap_t = {
IDENTITY = 1,
NAK = 3,
MD5 = 4,
TLS = 13,
TTLS = 21,
PEAP = 25,
MSCHAP = 29,
}
eap_str = {
[0] = "Reserved",
[1] = "Identity",
[2] = "Notification",
[3] = "Legacy Nak",
[4] = "MD5-Challenge",
[5] = "One-Time Password (OTP)",
[6] = "Generic Token Card (GTC)",
[7] = "Allocated",
[8] = "Allocated",
[9] = "RSA Public Key Authentication",
[10] = "DSS Unilateral",
[11] = "KEA",
[12] = "KEA-VALIDATE",
[13] = "EAP-TLS",
[14] = "Defender Token (AXENT)",
[15] = "RSA Security SecurID EAP",
[16] = "Arcot Systems EAP",
[17] = "EAP-Cisco Wireless",
[18] = "GSM Subscriber Identity Modules (EAP-SIM)",
[19] = "SRP-SHA1",
[20] = "Unassigned",
[21] = "EAP-TTLS",
[22] = "Remote Access Service",
[23] = "EAP-AKA Authentication",
[24] = "EAP-3Com Wireless",
[25] = "PEAP",
[26] = "MS-EAP-Authentication",
[27] = "Mutual Authentication w/Key Exchange (MAKE)",
[28] = "CRYPTOCard",
[29] = "EAP-MSCHAP-V2",
[30] = "DynamID",
[31] = "Rob EAP",
[32] = "Protected One-Time Password",
[33] = "MS-Authentication-TLV",
[34] = "SentriNET",
[35] = "EAP-Actiontec Wireless",
[36] = "Cogent Systems Biometrics Authentication EAP",
[37] = "AirFortress EAP",
[38] = "EAP-HTTP Digest",
[39] = "SecureSuite EAP",
[40] = "DeviceConnect EAP",
[41] = "EAP-SPEKE",
[42] = "EAP-MOBAC",
[43] = "EAP-FAST",
[44] = "ZoneLabs EAP (ZLXEAP)",
[45] = "EAP-Link",
[46] = "EAP-PAX",
[47] = "EAP-PSK",
[48] = "EAP-SAKE",
[49] = "EAP-IKEv2",
[50] = "EAP-AKA'",
[51] = "EAP-GPSK",
[52] = "EAP-pwd",
[53] = "EAP-EKE Version 1",
[54] = "EAP Method Type for PT-EAP",
[55] = "TEAP",
-- 56-253 Unassigned
[254] = "Reserved for the Expanded Type",
[255] = "Experimental",
}
local make_eapol = function (arg)
if not arg.src then return nil end
if not arg.type then arg.type = eapol_t.PACKET end
if not arg.version then arg.version = 1 end
if not arg.payload then arg.payload = "" end
local p = packet.Frame:new()
p.mac_src = arg.src
p.mac_dst = packet.mactobin(ETHER_BROADCAST)
p.ether_type = ETHER_TYPE_EAPOL
p.buf = string.pack(">BBs2", arg.version, arg.type, arg.payload)
p:build_ether_frame()
return p.frame_buf
end
local make_eap = function (arg)
if not arg.header then return nil end
if not arg.code then arg.code = code_t.REQUEST end
if not arg.id then arg.id = math.random(0,255) end
if not arg.type then arg.type = eap_t.IDENTITY end
if not arg.payload then arg.payload = "" end
local bin_payload = arg.payload
arg.header.payload = string.pack(">BBI2B", arg.code, arg.id, #bin_payload + EAP_HEADER_SIZE, arg.type) .. bin_payload
local v = make_eapol(arg.header)
stdnse.debug2("make eapol %s", arg.header.src)
return v
end
parse = function (packet)
local tb = {}
stdnse.debug2("packet size: 0x%x", #packet )
-- parsing ethernet header
tb.mac_src, tb.mac_dst, tb.ether_type = string.unpack(">c6c6I2", packet)
tb.mac_src_str = stdnse.tohex(tb.mac_src)
tb.mac_dst_str = stdnse.tohex(tb.mac_dst)
-- parsing eapol header
tb.version, tb.type, tb.length = string.unpack(">BBI2", packet, ETHER_HEADER_SIZE + 1)
stdnse.debug1("mac_src: %s, mac_dest: %s, ether_type: 0x%X",
tb.mac_src_str, tb.mac_dst_str, tb.ether_type)
if tb.ether_type ~= ETHER_TYPE_EAPOL_N then return nil, "not an eapol packet" end
stdnse.debug2("version: %X, type: %s, length: 0x%X",
tb.version, eapol_str[tb.type] or "unknown",
tb.length)
tb.eap = {}
if tb.length > 0 then
-- parsing body
tb.eap.code, tb.eap.id, tb.eap.length, tb.eap.type = string.unpack(">BBI2B", packet,
ETHER_HEADER_SIZE + EAPOL_HEADER_SIZE + 1)
stdnse.debug2("code: %s, id: 0x%X, length: 0x%X, type: %s",
code_str[tb.eap.code] or "unknown",
tb.eap.id, tb.eap.length, eap_str[tb.eap.type] or "unknown" )
if tb.length ~= tb.eap.length then
stdnse.debug1("WARNING length mismatch: 0x%X and 0x%X", tb.length, tb.eap.length )
end
end
tb.eap.body = {}
-- parsing payload
if tb.length > 5 and tb.eap.type == eap_t.IDENTITY then
tb.eap.body.identity = string.unpack("z", packet,
ETHER_HEADER_SIZE + EAPOL_HEADER_SIZE + EAP_HEADER_SIZE + 1)
stdnse.debug1("identity: %s", tb.eap.body.identity )
end
if tb.length > 5 and tb.eap.type == eap_t.MD5 then
tb.eap.body.challenge = string.unpack("s1", packet, ETHER_HEADER_SIZE + EAPOL_HEADER_SIZE + EAP_HEADER_SIZE + 1)
end
return tb
end
send_identity_response = function (iface, id, identity)
if not iface then
stdnse.debug1("no interface given")
return
end
local dnet = nmap.new_dnet()
local tb = {src = iface.mac, type = eapol_t.PACKET}
local response = make_eap{header = tb, code = code_t.RESPONSE, type = eap_t.IDENTITY, id = id, payload = identity}
dnet:ethernet_open(iface.device)
dnet:ethernet_send(response)
dnet:ethernet_close()
end
send_nak_response = function (iface, id, auth)
if not iface then
stdnse.debug1("no interface given")
return
end
local dnet = nmap.new_dnet()
local tb = {src = iface.mac, type = eapol_t.PACKET}
local response = make_eap{header = tb, code = code_t.RESPONSE, type = eap_t.NAK, id = id, payload = string.pack("B",auth)}
dnet:ethernet_open(iface.device)
dnet:ethernet_send(response)
dnet:ethernet_close()
end
send_start = function (iface)
if not iface then
stdnse.debug1("no interface given")
return
end
local dnet = nmap.new_dnet()
local start = make_eapol{type = eapol_t.START, src = iface.mac}
dnet:ethernet_open(iface.device)
dnet:ethernet_send(start)
dnet:ethernet_close()
end
return _ENV;
|