blob: 6efb9b5563b3027fd3771d0ef828f67808ce8472 (
plain)
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
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
from .mitigations import ElfMitigations
from pychrysalide import PluginModule
from pychrysalide.core import log_message, LMT_INFO
from pychrysalide.format.elf import ElfFormat
class CheckSec(PluginModule):
"""Check for Elf mititgations."""
def get_interface(self):
"""Provide the full plugin description."""
desc = {
'name' : 'CheckSec',
'desc' : 'Output the exploit mitigations compiled with a loaded binary',
'version' : '0.1',
'actions' : [ PluginModule.PGA_FORMAT_POST_ANALYSIS_ENDED ]
}
return desc
def handle_format_analysis(self, action, format, gid, status):
"""Get notified at the end of format analysis."""
if type(format) == ElfFormat:
m = ElfMitigations(format)
msg = 'Elf mitigations: NX: <b>%s</b> PIE: <b>%s</b> RelRO: <b>%s</b> Canary: <b>%s</b>' \
% (m._nx, m._pie, m._relro, m._canary)
self.log_message(LMT_INFO, msg)
|