Skip to content

Commit 5506ca8

Browse files
committed
new: [wifi-connection] wifi-connection object template
1 parent 5d36c15 commit 5506ca8

1 file changed

Lines changed: 148 additions & 0 deletions

File tree

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
{
2+
"attributes": {
3+
"authentication-type": {
4+
"description": "Authentication method used by the wireless network",
5+
"misp-attribute": "text",
6+
"multiple": false,
7+
"ui-priority": 1,
8+
"values_list": [
9+
"open",
10+
"wep",
11+
"wpa-personal",
12+
"wpa2-personal",
13+
"wpa3-personal",
14+
"wpa-enterprise",
15+
"wpa2-enterprise",
16+
"wpa3-enterprise",
17+
"802.1x",
18+
"unknown"
19+
]
20+
},
21+
"bssid": {
22+
"description": "Access Point MAC address (BSSID)",
23+
"misp-attribute": "mac-address",
24+
"multiple": true,
25+
"ui-priority": 1
26+
},
27+
"captive-portal-url": {
28+
"description": "Captive portal URL associated with the WiFi network",
29+
"misp-attribute": "url",
30+
"multiple": true
31+
},
32+
"channel": {
33+
"description": "WiFi channel number",
34+
"misp-attribute": "integer",
35+
"multiple": false
36+
},
37+
"comment": {
38+
"description": "Additional contextual information",
39+
"misp-attribute": "comment",
40+
"multiple": false
41+
},
42+
"country-code": {
43+
"description": "Regulatory country code advertised by the AP",
44+
"misp-attribute": "text",
45+
"multiple": false
46+
},
47+
"device-model": {
48+
"description": "Wireless access point model",
49+
"misp-attribute": "text",
50+
"multiple": false
51+
},
52+
"encryption": {
53+
"description": "Encryption algorithm used",
54+
"misp-attribute": "text",
55+
"multiple": false,
56+
"ui-priority": 0,
57+
"values_list": [
58+
"none",
59+
"wep",
60+
"tkip",
61+
"ccmp-aes",
62+
"gcpm",
63+
"unknown"
64+
]
65+
},
66+
"essid-hidden": {
67+
"description": "Indicates whether the SSID is hidden",
68+
"misp-attribute": "boolean",
69+
"multiple": false,
70+
"ui-priority": 0
71+
},
72+
"first-seen": {
73+
"description": "First observation timestamp",
74+
"misp-attribute": "datetime",
75+
"multiple": false
76+
},
77+
"frequency": {
78+
"description": "Operating frequency band",
79+
"misp-attribute": "text",
80+
"values_list": [
81+
"2.4ghz",
82+
"5ghz",
83+
"6ghz"
84+
]
85+
},
86+
"hostname": {
87+
"description": "Hostname of the wireless access point",
88+
"misp-attribute": "hostname",
89+
"multiple": true
90+
},
91+
"ip-address": {
92+
"description": "IP address assigned to the access point",
93+
"misp-attribute": "ip-dst",
94+
"multiple": true
95+
},
96+
"last-seen": {
97+
"description": "Last observation timestamp",
98+
"misp-attribute": "datetime",
99+
"multiple": false
100+
},
101+
"password": {
102+
"description": "WiFi pre-shared key or password (sensitive information)",
103+
"disable_correlation": true,
104+
"misp-attribute": "text",
105+
"multiple": false,
106+
"ui-priority": 0
107+
},
108+
"security-protocol": {
109+
"description": "Wireless security protocol",
110+
"misp-attribute": "text",
111+
"multiple": false,
112+
"values_list": [
113+
"802.11a",
114+
"802.11b",
115+
"802.11g",
116+
"802.11n",
117+
"802.11ac",
118+
"802.11ax",
119+
"802.11be"
120+
]
121+
},
122+
"signal-strength": {
123+
"description": "Observed signal strength (RSSI in dBm)",
124+
"misp-attribute": "integer",
125+
"multiple": false
126+
},
127+
"ssid": {
128+
"description": "WiFi network SSID (Service Set Identifier)",
129+
"misp-attribute": "text",
130+
"multiple": false,
131+
"ui-priority": 1
132+
},
133+
"vendor": {
134+
"description": "Access point vendor or manufacturer",
135+
"misp-attribute": "text",
136+
"multiple": false
137+
}
138+
},
139+
"description": "Wireless network connection parameters including SSID, authentication, encryption and configuration details.",
140+
"meta-category": "network",
141+
"name": "wifi-connection",
142+
"requiredOneOf": [
143+
"ssid",
144+
"bssid"
145+
],
146+
"uuid": "107695a8-0ce0-4c9c-be51-5b21ea32257a",
147+
"version": 1
148+
}

0 commit comments

Comments
 (0)