cipherrun 0.3.0

A fast, modular, and scalable TLS/SSL security scanner written in Rust
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
// DNS tools integration - dig and host
// Extended DNS lookups for target discovery

use crate::Result;
use crate::security::validate_hostname;
use serde::{Deserialize, Serialize};
use std::process::Command;

/// DNS record types
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum RecordType {
    A,
    AAAA,
    MX,
    CNAME,
    TXT,
    NS,
    SOA,
    PTR,
    SRV,
    CAA,
    TLSA,
}

impl RecordType {
    pub fn as_str(&self) -> &'static str {
        match self {
            RecordType::A => "A",
            RecordType::AAAA => "AAAA",
            RecordType::MX => "MX",
            RecordType::CNAME => "CNAME",
            RecordType::TXT => "TXT",
            RecordType::NS => "NS",
            RecordType::SOA => "SOA",
            RecordType::PTR => "PTR",
            RecordType::SRV => "SRV",
            RecordType::CAA => "CAA",
            RecordType::TLSA => "TLSA",
        }
    }
}

/// DNS lookup result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DnsLookupResult {
    pub domain: String,
    pub record_type: String,
    pub records: Vec<String>,
    pub ttl: Option<u32>,
    pub raw_output: String,
}

/// dig wrapper
pub struct Dig {
    dig_path: String,
}

impl Default for Dig {
    fn default() -> Self {
        Self::new()
    }
}

impl Dig {
    pub fn new() -> Self {
        Self {
            dig_path: "dig".to_string(),
        }
    }

    pub fn with_path(path: String) -> Self {
        Self { dig_path: path }
    }

    /// Check if dig is available
    pub fn is_available(&self) -> bool {
        Command::new(&self.dig_path)
            .arg("-v")
            .output()
            .map(|output| output.status.success())
            .unwrap_or(false)
    }

    /// Lookup DNS record
    pub fn lookup(&self, domain: &str, record_type: RecordType) -> Result<DnsLookupResult> {
        // SECURITY: Validate domain to prevent command injection (CWE-78)
        validate_hostname(domain)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid domain: {}", e)))?;

        let output = Command::new(&self.dig_path)
            .arg(domain)
            .arg(record_type.as_str())
            .arg("+short")
            .output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let records: Vec<String> = stdout
                .lines()
                .filter(|line| !line.is_empty())
                .map(|line| line.trim().to_string())
                .collect();

            Ok(DnsLookupResult {
                domain: domain.to_string(),
                record_type: record_type.as_str().to_string(),
                records,
                ttl: None,
                raw_output: stdout,
            })
        } else {
            Err(crate::error::TlsError::Other(format!(
                "dig lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }

    /// Lookup with detailed output
    pub fn lookup_detailed(
        &self,
        domain: &str,
        record_type: RecordType,
    ) -> Result<DnsLookupResult> {
        // SECURITY: Validate domain to prevent command injection
        validate_hostname(domain)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid domain: {}", e)))?;

        let output = Command::new(&self.dig_path)
            .arg(domain)
            .arg(record_type.as_str())
            .output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let (records, ttl) = parse_dig_output(&stdout, record_type);

            Ok(DnsLookupResult {
                domain: domain.to_string(),
                record_type: record_type.as_str().to_string(),
                records,
                ttl,
                raw_output: stdout,
            })
        } else {
            Err(crate::error::TlsError::Other(format!(
                "dig detailed lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }

    /// Reverse DNS lookup
    pub fn reverse_lookup(&self, ip: &str) -> Result<Vec<String>> {
        // SECURITY: Validate IP address to prevent command injection
        validate_hostname(ip)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid IP address: {}", e)))?;

        let output = Command::new(&self.dig_path)
            .arg("-x")
            .arg(ip)
            .arg("+short")
            .output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let records: Vec<String> = stdout
                .lines()
                .filter(|line| !line.is_empty())
                .map(|line| line.trim().to_string())
                .collect();

            Ok(records)
        } else {
            Err(crate::error::TlsError::Other(format!(
                "dig reverse lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }

    /// Query specific nameserver
    pub fn query_nameserver(
        &self,
        domain: &str,
        record_type: RecordType,
        nameserver: &str,
    ) -> Result<DnsLookupResult> {
        // SECURITY: Validate inputs to prevent command injection
        validate_hostname(domain)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid domain: {}", e)))?;
        validate_hostname(nameserver)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid nameserver: {}", e)))?;

        let output = Command::new(&self.dig_path)
            .arg(format!("@{}", nameserver))
            .arg(domain)
            .arg(record_type.as_str())
            .arg("+short")
            .output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let records: Vec<String> = stdout
                .lines()
                .filter(|line| !line.is_empty())
                .map(|line| line.trim().to_string())
                .collect();

            Ok(DnsLookupResult {
                domain: domain.to_string(),
                record_type: record_type.as_str().to_string(),
                records,
                ttl: None,
                raw_output: stdout,
            })
        } else {
            Err(crate::error::TlsError::Other(format!(
                "dig nameserver query failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }
}

/// host wrapper
pub struct Host {
    host_path: String,
}

impl Default for Host {
    fn default() -> Self {
        Self::new()
    }
}

impl Host {
    pub fn new() -> Self {
        Self {
            host_path: "host".to_string(),
        }
    }

    pub fn with_path(path: String) -> Self {
        Self { host_path: path }
    }

    /// Check if host is available
    pub fn is_available(&self) -> bool {
        Command::new(&self.host_path)
            .arg("-V")
            .output()
            .map(|output| output.status.success())
            .unwrap_or(false)
    }

    /// Simple DNS lookup
    pub fn lookup(&self, domain: &str) -> Result<Vec<String>> {
        // SECURITY: Validate domain to prevent command injection
        validate_hostname(domain)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid domain: {}", e)))?;

        let output = Command::new(&self.host_path).arg(domain).output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let addresses = parse_host_output(&stdout);
            Ok(addresses)
        } else {
            Err(crate::error::TlsError::Other(format!(
                "host lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }

    /// Lookup specific record type
    pub fn lookup_type(&self, domain: &str, record_type: RecordType) -> Result<Vec<String>> {
        // SECURITY: Validate domain to prevent command injection
        validate_hostname(domain)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid domain: {}", e)))?;

        let output = Command::new(&self.host_path)
            .arg("-t")
            .arg(record_type.as_str())
            .arg(domain)
            .output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let records = parse_host_output(&stdout);
            Ok(records)
        } else {
            Err(crate::error::TlsError::Other(format!(
                "host type lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }

    /// Reverse DNS lookup
    pub fn reverse_lookup(&self, ip: &str) -> Result<Vec<String>> {
        // SECURITY: Validate IP address to prevent command injection
        validate_hostname(ip)
            .map_err(|e| crate::error::TlsError::Other(format!("Invalid IP address: {}", e)))?;

        let output = Command::new(&self.host_path).arg(ip).output()?;

        if output.status.success() {
            let stdout = String::from_utf8_lossy(&output.stdout).to_string();
            let records = parse_host_output(&stdout);
            Ok(records)
        } else {
            Err(crate::error::TlsError::Other(format!(
                "host reverse lookup failed: {}",
                String::from_utf8_lossy(&output.stderr)
            )))
        }
    }
}

fn parse_dig_output(output: &str, _record_type: RecordType) -> (Vec<String>, Option<u32>) {
    let mut records = Vec::new();
    let mut ttl = None;
    let mut in_answer = false;

    for line in output.lines() {
        if line.contains(";; ANSWER SECTION:") {
            in_answer = true;
            continue;
        }

        if in_answer && line.starts_with(';') {
            break;
        }

        if in_answer && !line.trim().is_empty() {
            let parts: Vec<&str> = line.split_whitespace().collect();
            if parts.len() >= 5 {
                // Format: domain TTL class type data
                if ttl.is_none()
                    && let Ok(t) = parts[1].parse::<u32>()
                {
                    ttl = Some(t);
                }

                // Extract the data part (everything after type)
                let data = parts[4..].join(" ");
                records.push(data);
            }
        }
    }

    (records, ttl)
}

fn parse_host_output(output: &str) -> Vec<String> {
    let mut addresses = Vec::new();

    for line in output.lines() {
        // Example: "example.com has address 93.184.216.34"
        // Example: "example.com has IPv6 address 2606:2800:220:1:248:1893:25c8:1946"
        if line.contains("has address") || line.contains("has IPv6 address") {
            if let Some(addr) = line.split_whitespace().last() {
                addresses.push(addr.to_string());
            }
        } else if line.contains("mail is handled by") {
            // MX record: "example.com mail is handled by 10 mail.example.com."
            let parts: Vec<&str> = line.split_whitespace().collect();
            if let Some(mx) = parts.last() {
                addresses.push(mx.trim_end_matches('.').to_string());
            }
        }
    }

    addresses
}

/// Extended DNS lookup - try multiple methods
pub fn extended_lookup(domain: &str) -> Result<ExtendedDnsInfo> {
    let dig = Dig::new();
    let host = Host::new();

    let mut info = ExtendedDnsInfo {
        domain: domain.to_string(),
        a_records: Vec::new(),
        aaaa_records: Vec::new(),
        mx_records: Vec::new(),
        cname_records: Vec::new(),
        txt_records: Vec::new(),
        caa_records: Vec::new(),
        tlsa_records: Vec::new(),
    };

    // Try dig first (more detailed)
    if dig.is_available() {
        if let Ok(result) = dig.lookup(domain, RecordType::A) {
            info.a_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::AAAA) {
            info.aaaa_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::MX) {
            info.mx_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::CNAME) {
            info.cname_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::TXT) {
            info.txt_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::CAA) {
            info.caa_records = result.records;
        }
        if let Ok(result) = dig.lookup(domain, RecordType::TLSA) {
            info.tlsa_records = result.records;
        }
    } else if host.is_available() {
        // Fallback to host
        if let Ok(records) = host.lookup(domain) {
            info.a_records = records;
        }
        if let Ok(records) = host.lookup_type(domain, RecordType::MX) {
            info.mx_records = records;
        }
    }

    Ok(info)
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExtendedDnsInfo {
    pub domain: String,
    pub a_records: Vec<String>,
    pub aaaa_records: Vec<String>,
    pub mx_records: Vec<String>,
    pub cname_records: Vec<String>,
    pub txt_records: Vec<String>,
    pub caa_records: Vec<String>,
    pub tlsa_records: Vec<String>,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parse_host_output() {
        let output = "example.com has address 93.184.216.34\nexample.com has IPv6 address 2606:2800:220:1:248:1893:25c8:1946";
        let addresses = parse_host_output(output);
        assert_eq!(addresses.len(), 2);
        assert_eq!(addresses[0], "93.184.216.34");
    }

    #[test]
    fn test_record_type_as_str() {
        assert_eq!(RecordType::A.as_str(), "A");
        assert_eq!(RecordType::MX.as_str(), "MX");
        assert_eq!(RecordType::TLSA.as_str(), "TLSA");
    }
}