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
292
293
294
295
296
297
298
299
300
301
302
303
|
import Foundation
// MARK: - DNS Models
enum DNSRecordType: String, CaseIterable, Codable {
case A
case AAAA
case MX
case NS
case TXT
case CNAME
case SOA
case SRV
case CAA
case DS
var queryType: Int {
switch self {
case .A: return 1
case .AAAA: return 28
case .MX: return 15
case .NS: return 2
case .TXT: return 16
case .CNAME: return 5
case .SOA: return 6
case .SRV: return 33
case .CAA: return 257
case .DS: return 43
}
}
var usesRawDataValue: Bool {
switch self {
case .TXT, .SOA, .DS:
return true
default:
return false
}
}
}
struct DNSRecord: Identifiable, Codable {
var id = UUID()
let value: String
let ttl: Int
}
struct DNSSection: Identifiable, Codable {
var id = UUID()
let recordType: DNSRecordType
var records: [DNSRecord]
var wildcardRecords: [DNSRecord] = []
var dnssecSigned: Bool?
var error: String?
}
// MARK: - SSL Models
struct SSLCertificateInfo: Codable {
struct CertChainEntry: Codable {
let subject: String
let issuer: String
}
let commonName: String
let subjectAltNames: [String]
let issuer: String
let validFrom: Date
let validUntil: Date
let daysUntilExpiry: Int
let chainDepth: Int
let tlsVersion: String?
let cipherSuite: String?
let chain: [CertChainEntry]
init(
commonName: String,
subjectAltNames: [String],
issuer: String,
validFrom: Date,
validUntil: Date,
daysUntilExpiry: Int,
chainDepth: Int,
tlsVersion: String? = nil,
cipherSuite: String? = nil,
chain: [CertChainEntry] = []
) {
self.commonName = commonName
self.subjectAltNames = subjectAltNames
self.issuer = issuer
self.validFrom = validFrom
self.validUntil = validUntil
self.daysUntilExpiry = daysUntilExpiry
self.chainDepth = chainDepth
self.tlsVersion = tlsVersion
self.cipherSuite = cipherSuite
self.chain = chain
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
commonName = try container.decode(String.self, forKey: .commonName)
subjectAltNames = try container.decode([String].self, forKey: .subjectAltNames)
issuer = try container.decode(String.self, forKey: .issuer)
validFrom = try container.decode(Date.self, forKey: .validFrom)
validUntil = try container.decode(Date.self, forKey: .validUntil)
daysUntilExpiry = try container.decode(Int.self, forKey: .daysUntilExpiry)
chainDepth = try container.decode(Int.self, forKey: .chainDepth)
tlsVersion = try container.decodeIfPresent(String.self, forKey: .tlsVersion)
cipherSuite = try container.decodeIfPresent(String.self, forKey: .cipherSuite)
chain = try container.decodeIfPresent([CertChainEntry].self, forKey: .chain) ?? []
}
}
// MARK: - HTTP Headers Models
struct HTTPHeader: Identifiable, Codable {
var id = UUID()
let name: String
let value: String
static let securityHeaders: Set<String> = [
"strict-transport-security",
"x-frame-options",
"x-content-type-options",
"content-security-policy",
"referrer-policy"
]
var isSecurityHeader: Bool {
Self.securityHeaders.contains(name.lowercased())
}
}
// MARK: - Reachability Models
struct PortReachability: Identifiable, Codable {
var id = UUID()
let port: UInt16
let reachable: Bool
let latencyMs: Int?
}
// MARK: - IP Geolocation Models
struct IPGeolocation: Codable {
let ip: String
let city: String?
let region: String?
let country_name: String?
let org: String?
let latitude: Double?
let longitude: Double?
}
// MARK: - Email Security Models
struct EmailSecurityResult: Codable {
let spf: EmailSecurityRecord
let dmarc: EmailSecurityRecord
let dkim: EmailSecurityRecord
let bimi: EmailSecurityRecord
let mtaSts: MTASTSResult?
init(
spf: EmailSecurityRecord,
dmarc: EmailSecurityRecord,
dkim: EmailSecurityRecord,
bimi: EmailSecurityRecord = EmailSecurityRecord(found: false, value: nil),
mtaSts: MTASTSResult? = nil
) {
self.spf = spf
self.dmarc = dmarc
self.dkim = dkim
self.bimi = bimi
self.mtaSts = mtaSts
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
spf = try container.decode(EmailSecurityRecord.self, forKey: .spf)
dmarc = try container.decode(EmailSecurityRecord.self, forKey: .dmarc)
dkim = try container.decode(EmailSecurityRecord.self, forKey: .dkim)
bimi = try container.decodeIfPresent(EmailSecurityRecord.self, forKey: .bimi)
?? EmailSecurityRecord(found: false, value: nil)
mtaSts = try container.decodeIfPresent(MTASTSResult.self, forKey: .mtaSts)
}
}
struct EmailSecurityRecord: Codable {
let found: Bool
let value: String?
let matchedSelector: String?
init(found: Bool, value: String?, matchedSelector: String? = nil) {
self.found = found
self.value = value
self.matchedSelector = matchedSelector
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
found = try container.decode(Bool.self, forKey: .found)
value = try container.decodeIfPresent(String.self, forKey: .value)
matchedSelector = try container.decodeIfPresent(String.self, forKey: .matchedSelector)
}
}
struct MTASTSResult: Codable {
let txtFound: Bool
let policyMode: String?
}
// MARK: - Redirect Chain Models
struct RedirectHop: Identifiable, Codable {
var id = UUID()
let stepNumber: Int
let statusCode: Int
let url: String
let isFinal: Bool
}
// MARK: - Port Scan Models
struct PortScanResult: Identifiable, Codable {
var id = UUID()
let port: UInt16
let service: String
let open: Bool
}
// MARK: - History Models
struct HistoryEntry: Identifiable, Codable {
var id = UUID()
let domain: String
let timestamp: Date
let dnsSections: [DNSSection]
let sslInfo: SSLCertificateInfo?
let httpHeaders: [HTTPHeader]
let reachabilityResults: [PortReachability]
let ipGeolocation: IPGeolocation?
var emailSecurity: EmailSecurityResult?
var mtaSts: MTASTSResult?
var ptrRecord: String?
var redirectChain: [RedirectHop]
var portScanResults: [PortScanResult]
var hstsPreloaded: Bool?
init(domain: String, timestamp: Date, dnsSections: [DNSSection],
sslInfo: SSLCertificateInfo?, httpHeaders: [HTTPHeader],
reachabilityResults: [PortReachability], ipGeolocation: IPGeolocation?,
emailSecurity: EmailSecurityResult? = nil, mtaSts: MTASTSResult? = nil, ptrRecord: String? = nil,
redirectChain: [RedirectHop] = [], portScanResults: [PortScanResult] = [],
hstsPreloaded: Bool? = nil) {
self.domain = domain
self.timestamp = timestamp
self.dnsSections = dnsSections
self.sslInfo = sslInfo
self.httpHeaders = httpHeaders
self.reachabilityResults = reachabilityResults
self.ipGeolocation = ipGeolocation
self.emailSecurity = emailSecurity
self.mtaSts = mtaSts ?? emailSecurity?.mtaSts
self.ptrRecord = ptrRecord
self.redirectChain = redirectChain
self.portScanResults = portScanResults
self.hstsPreloaded = hstsPreloaded
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(UUID.self, forKey: .id) ?? UUID()
domain = try container.decode(String.self, forKey: .domain)
timestamp = try container.decode(Date.self, forKey: .timestamp)
dnsSections = try container.decode([DNSSection].self, forKey: .dnsSections)
sslInfo = try container.decodeIfPresent(SSLCertificateInfo.self, forKey: .sslInfo)
httpHeaders = try container.decode([HTTPHeader].self, forKey: .httpHeaders)
reachabilityResults = try container.decode([PortReachability].self, forKey: .reachabilityResults)
ipGeolocation = try container.decodeIfPresent(IPGeolocation.self, forKey: .ipGeolocation)
emailSecurity = try container.decodeIfPresent(EmailSecurityResult.self, forKey: .emailSecurity)
mtaSts = try container.decodeIfPresent(MTASTSResult.self, forKey: .mtaSts) ?? emailSecurity?.mtaSts
ptrRecord = try container.decodeIfPresent(String.self, forKey: .ptrRecord)
redirectChain = try container.decodeIfPresent([RedirectHop].self, forKey: .redirectChain) ?? []
portScanResults = try container.decodeIfPresent([PortScanResult].self, forKey: .portScanResults) ?? []
hstsPreloaded = try container.decodeIfPresent(Bool.self, forKey: .hstsPreloaded)
}
}
// MARK: - Cloudflare DNS-over-HTTPS Response
struct CloudflareDNSResponse: Decodable {
let Status: Int
let Answer: [CloudflareDNSAnswer]?
struct CloudflareDNSAnswer: Decodable {
let name: String
let type: Int
let TTL: Int
let data: String
}
}
|