summaryrefslogtreecommitdiff
path: root/plugins/python/checksec/plugin.py
blob: 7471681dfbaf4deaa0780018a87f39380a1e9114 (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
#!/usr/bin/python
# -*- coding: utf-8 -*-

from .mitigations import ElfMitigations
from pychrysalide.core import log_message, LogMessageType
from pychrysalide.format.elf import ElfFormat
from pychrysalide.plugins import PluginModule


class CheckSec(PluginModule):
    """Check for Elf mititgations."""

    _name = 'CheckSec'
    _desc = 'Output the exploit mitigations compiled with a loaded binary'
    _version = '0.1'
    _url = 'https://www.chrysalide.re/'

    _actions = ( PluginModule.PluginAction.FORMAT_POST_ANALYSIS_ENDED, )


    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(LogMessageType.INFO, msg)