binary-security-check 2.0.2

Analyzer of security features in executable binaries
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
// Copyright 2018-2025 Koutheir Attouchi.
// See the "LICENSE.txt" file at the top-level directory of this distribution.
//
// Licensed under the MIT license. This file may not be copied, modified,
// or distributed except according to those terms.

pub(crate) mod status;

use crate::elf::needed_libc::{LibCResolver, NeededLibC};
use crate::errors::Result;
use crate::parser::BinaryParser;
use crate::{archive, cmdline, elf, pe};

use self::status::{
    DisplayInColorTerm, ELFFortifySourceStatus, PEControlFlowGuardLevel, YesNoUnknownStatus,
};

pub(crate) trait BinarySecurityOption<'t> {
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>>;
}

struct PEDllCharacteristicsBitOption {
    name: &'static str,
    mask_name: &'static str,
    mask: u16,
    present: bool,
}

impl BinarySecurityOption<'_> for PEDllCharacteristicsBitOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        if let goblin::Object::PE(pe) = parser.object()
            && let Some(bit_is_set) =
                pe::dll_characteristics_bit_is_set(pe, self.mask_name, self.mask)
        {
            return Ok(Box::new(YesNoUnknownStatus::new(
                self.name,
                bit_is_set == self.present,
                true,
            )));
        }
        Ok(Box::new(YesNoUnknownStatus::unknown(self.name, true)))
    }
}

#[derive(Default)]
pub(crate) struct PEHasCheckSumOption;

impl BinarySecurityOption<'_> for PEHasCheckSumOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::PE(pe) = parser.object() {
            pe::has_check_sum(pe)
        } else {
            None
        };

        Ok(Box::new(r.map_or_else(
            || YesNoUnknownStatus::unknown("CHECKSUM", true),
            |r| YesNoUnknownStatus::new("CHECKSUM", r, true),
        )))
    }
}

#[derive(Default)]
pub(crate) struct DataExecutionPreventionOption;

impl BinarySecurityOption<'_> for DataExecutionPreventionOption {
    /// Returns information about support of Data Execution Prevention (DEP) in the executable.
    ///
    /// When DEP is supported, a virtual memory page can be marked as non-executable (NX), in which
    /// case trying to execute any code from that pages will raise an exception, and likely crash
    /// the application, instead of running arbitrary code.
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        if let goblin::Object::PE(_pe) = parser.object() {
            PEDllCharacteristicsBitOption {
                name: "DATA-EXEC-PREVENT",
                mask_name: "IMAGE_DLLCHARACTERISTICS_NX_COMPAT",
                mask: pe::IMAGE_DLLCHARACTERISTICS_NX_COMPAT,
                present: true,
            }
            .check(parser, options)
        } else {
            Ok(Box::new(YesNoUnknownStatus::unknown(
                "DATA-EXEC-PREVENT",
                true,
            )))
        }
    }
}

#[derive(Default)]
pub(crate) struct PERunsOnlyInAppContainerOption;

impl BinarySecurityOption<'_> for PERunsOnlyInAppContainerOption {
    /// Returns information about the requirement to run this executable inside `AppContainer`.
    ///
    /// This option indicates whether the executable must be run in the `AppContainer`
    /// process-isolation environment, such as a Universal Windows Platform (UWP) or Windows
    /// Phone 8.x app.
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        PEDllCharacteristicsBitOption {
            name: "RUNS-IN-APP-CONTAINER",
            mask_name: "IMAGE_DLLCHARACTERISTICS_APPCONTAINER",
            mask: pe::IMAGE_DLLCHARACTERISTICS_APPCONTAINER,
            present: true,
        }
        .check(parser, options)
    }
}

#[derive(Default)]
pub(crate) struct RequiresIntegrityCheckOption;

impl BinarySecurityOption<'_> for RequiresIntegrityCheckOption {
    /// Returns whether the operating system must to verify the digital signature of this executable
    /// at load time.
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        if let goblin::Object::PE(_pe) = parser.object() {
            PEDllCharacteristicsBitOption {
                name: "VERIFY-DIGITAL-CERT",
                mask_name: "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY",
                mask: pe::IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY,
                present: true,
            }
            .check(parser, options)
        } else {
            Ok(Box::new(YesNoUnknownStatus::unknown(
                "VERIFY-DIGITAL-CERT",
                true,
            )))
        }
    }
}

#[derive(Default)]
pub(crate) struct PEEnableManifestHandlingOption;

impl BinarySecurityOption<'_> for PEEnableManifestHandlingOption {
    /// Returns whether the operating system is allowed to consider manifest files when loading
    /// this executable.
    ///
    /// Enabling this causes the operating system to do manifest lookup and loads.
    /// When isolation is disabled for an executable, the Windows loader will not attempt to find an
    /// application manifest for the newly created process. The new process will not have a default
    /// activation context, even if there is a manifest inside the executable or placed in the same
    /// directory as the executable with name `executable-name.exe.manifest`.
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        PEDllCharacteristicsBitOption {
            name: "CONSIDER-MANIFEST",
            mask_name: "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION",
            mask: pe::IMAGE_DLLCHARACTERISTICS_NO_ISOLATION,
            present: false,
        }
        .check(parser, options)
    }
}

#[derive(Default)]
pub(crate) struct PEControlFlowGuardOption;

impl BinarySecurityOption<'_> for PEControlFlowGuardOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::PE(pe) = parser.object() {
            pe::supports_control_flow_guard(pe)
        } else {
            PEControlFlowGuardLevel::Unknown
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct PEHandlesAddressesLargerThan2GBOption;

impl BinarySecurityOption<'_> for PEHandlesAddressesLargerThan2GBOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::PE(pe) = parser.object() {
            YesNoUnknownStatus::new(
                "HANDLES-ADDR-GT-2GB",
                pe::handles_addresses_larger_than_2_gigabytes(pe),
                true,
            )
        } else {
            YesNoUnknownStatus::unknown("HANDLES-ADDR-GT-2GB", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct AddressSpaceLayoutRandomizationOption;

impl BinarySecurityOption<'_> for AddressSpaceLayoutRandomizationOption {
    /// Returns the level of support of Address Space Layout Randomization (ASLR).
    ///
    /// When ASLR is supported, the executable should be randomly re-based at load time, enabling
    /// virtual address allocation randomization, which affects the virtual memory location of heaps,
    /// stacks, and other operating system allocations.
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        match parser.object() {
            goblin::Object::PE(pe) => Ok(Box::new(pe::supports_aslr(pe))),
            goblin::Object::Elf(elf_obj) => Ok(Box::new(elf::supports_aslr(elf_obj))),
            _ => Ok(Box::new(YesNoUnknownStatus::unknown("ASLR", true))),
        }
    }
}

#[derive(Default)]
pub(crate) struct PESafeStructuredExceptionHandlingOption;

impl BinarySecurityOption<'_> for PESafeStructuredExceptionHandlingOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::PE(pe) = parser.object() {
            YesNoUnknownStatus::new(
                "SAFE-SEH",
                pe::has_safe_structured_exception_handlers(parser, pe),
                true,
            )
        } else {
            YesNoUnknownStatus::unknown("SAFE-SEH", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFStackMustBeExecutableOption;

impl BinarySecurityOption<'_> for ELFStackMustBeExecutableOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            YesNoUnknownStatus::new("EXEC-STACK", elf::stack_must_be_executable(elf), false)
        } else {
            YesNoUnknownStatus::unknown("EXEC-STACK", false)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFSupportsShadowStackOption;

impl BinarySecurityOption<'_> for ELFSupportsShadowStackOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            let predicate = elf::supports_shadow_stack(elf, parser.bytes())?;
            YesNoUnknownStatus::new("SHADOW-STACK", predicate, true)
        } else {
            YesNoUnknownStatus::unknown("SHADOW-STACK", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFBranchTargetIdentificationOption;

impl BinarySecurityOption<'_> for ELFBranchTargetIdentificationOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            let predicate = elf::branch_target_identification(elf, parser.bytes())?;
            YesNoUnknownStatus::new("BRANCH-TARGET-ID", predicate, true)
        } else {
            YesNoUnknownStatus::unknown("BRANCH-TARGET-ID", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFGuardedControlStackOption;

impl BinarySecurityOption<'_> for ELFGuardedControlStackOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            let predicate = elf::guarded_control_stack(elf, parser.bytes())?;
            YesNoUnknownStatus::new("GUARDED-CTRL-STACK", predicate, true)
        } else {
            YesNoUnknownStatus::unknown("GUARDED-CTRL-STACK", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFStackProtectionOption;

impl BinarySecurityOption<'_> for ELFStackProtectionOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = match parser.object() {
            goblin::Object::Elf(elf_obj) => {
                YesNoUnknownStatus::new("STACK-PROT", elf::has_stack_protection(elf_obj), true)
            }

            goblin::Object::Archive(archive) => {
                let r = archive::has_stack_protection(parser, archive)?;
                YesNoUnknownStatus::new("STACK-PROT", r, true)
            }

            _ => YesNoUnknownStatus::unknown("STACK-PROT", true),
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFReadOnlyAfterRelocationsOption;

impl BinarySecurityOption<'_> for ELFReadOnlyAfterRelocationsOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            YesNoUnknownStatus::new(
                "READ-ONLY-RELOC",
                elf::becomes_read_only_after_relocations(elf),
                true,
            )
        } else {
            YesNoUnknownStatus::unknown("READ-ONLY-RELOC", true)
        };
        Ok(Box::new(r))
    }
}

#[derive(Default)]
pub(crate) struct ELFImmediateBindingOption;

impl BinarySecurityOption<'_> for ELFImmediateBindingOption {
    fn check(
        &self,
        parser: &BinaryParser,
        _options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        let r = if let goblin::Object::Elf(elf) = parser.object() {
            YesNoUnknownStatus::new("IMMEDIATE-BIND", elf::requires_immediate_binding(elf), true)
        } else {
            YesNoUnknownStatus::unknown("IMMEDIATE-BIND", true)
        };
        Ok(Box::new(r))
    }
}

pub(crate) struct ELFFortifySourceOption {
    libc_spec: Option<cmdline::LibCSpec>,
}

impl ELFFortifySourceOption {
    pub(crate) fn new(libc_spec: Option<cmdline::LibCSpec>) -> Self {
        Self { libc_spec }
    }
}

impl BinarySecurityOption<'_> for ELFFortifySourceOption {
    fn check(
        &self,
        parser: &BinaryParser,
        options: &crate::cmdline::Options,
    ) -> Result<Box<dyn DisplayInColorTerm>> {
        if let goblin::Object::Elf(elf) = parser.object() {
            let libc = if let Some(spec) = self.libc_spec {
                NeededLibC::from_spec(spec)
            } else if let Some(path) = &options.libc {
                NeededLibC::open_elf_for_architecture(path, elf)?
            } else {
                LibCResolver::get(options)?.find_needed_by_executable(elf)?
            };

            let result = ELFFortifySourceStatus::new(libc, elf)?;
            Ok(Box::new(result))
        } else {
            Ok(Box::new(YesNoUnknownStatus::unknown(
                "FORTIFY-SOURCE",
                true,
            )))
        }
    }
}