Exemplo n.º 1
0
    def test_imports(self):
        """ Tests that the extension properly sets Mako imports. """
        from string import ascii_letters
        self._add_template("imports", "${ascii_letters}")

        imports = ["from string import ascii_letters"]
        with self.test_renderer(MAKO_IMPORTS=imports) as (_, mako):
            self.assertEqual(render_template("imports"), ascii_letters.encode())
Exemplo n.º 2
0
    def test_imports(self):
        """ Tests that the extension properly sets Mako imports. """
        from string import ascii_letters
        self._add_template("imports", "${ascii_letters}")

        imports = ["from string import ascii_letters"]
        with self.test_renderer(MAKO_IMPORTS=imports) as (_, mako):
            self.assertEqual(render_template("imports"),
                             ascii_letters.encode())
Exemplo n.º 3
0
class _QByteMap(dict):
    safe = '-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii')

    def __missing__(self, key):
        if key in self.safe:
            self[key] = chr(key)
        else:
            self[key] = '={:02X}'.format(key)
        return self[key]
Exemplo n.º 4
0
class _QByteMap(dict):

    safe = b"-!*+/" + ascii_letters.encode("ascii") + digits.encode("ascii")

    def __missing__(self, key):
        if key in self.safe:
            self[key] = chr(key)
        else:
            self[key] = "={:02X}".format(key)
        return self[key]
Exemplo n.º 5
0
CRLF = '\r\n'
NL = '\n'
EMPTYSTRING = ''

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_MAP = ['=%02X' % c for c in range(256)]
_QUOPRI_HEADER_MAP = _QUOPRI_MAP[:]
_QUOPRI_BODY_MAP = _QUOPRI_MAP[:]

# Safe header bytes which need no encoding.
for c in b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii'):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(' ')] = '_'

# Safe body bytes which need no encoding.
for c in (b' !"#$%&\'()*+,-./0123456789:;<>'
          b'?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`'
          b'abcdefghijklmnopqrstuvwxyz{|}~\t'):
    _QUOPRI_BODY_MAP[c] = chr(c)



# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""
Exemplo n.º 6
0
from string import ascii_letters, digits, hexdigits

CRLF = '\r\n'
NL = '\n'
EMPTYSTRING = ''

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_HEADER_MAP = dict((c, '=%02X' % c) for c in range(256))
_QUOPRI_BODY_MAP = _QUOPRI_HEADER_MAP.copy()

# Safe header bytes which need no encoding.
for c in b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii'):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(' ')] = '_'

# Safe body bytes which need no encoding.
for c in (b' !"#$%&\'()*+,-./0123456789:;<>'
          b'?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`'
          b'abcdefghijklmnopqrstuvwxyz{|}~\t'):
    _QUOPRI_BODY_MAP[c] = chr(c)


# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""
    return chr(octet) != _QUOPRI_HEADER_MAP[octet]
Exemplo n.º 7
0
CRLF = '\r\n'
NL = '\n'
EMPTYSTRING = ''

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_MAP = dict((c, '=%02X' % c) for c in range(256))
_QUOPRI_HEADER_MAP = _QUOPRI_MAP.copy()
_QUOPRI_BODY_MAP = _QUOPRI_MAP.copy()

# Safe header bytes which need no encoding.
for c in bytes(b'-!*+/' + ascii_letters.encode('ascii') +
               digits.encode('ascii')):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(' ')] = '_'

# Safe body bytes which need no encoding.
for c in bytes(b' !"#$%&\'()*+,-./0123456789:;<>'
               b'?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`'
               b'abcdefghijklmnopqrstuvwxyz{|}~\t'):
    _QUOPRI_BODY_MAP[c] = chr(c)


# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""
Exemplo n.º 8
0
from string import ascii_letters, digits, hexdigits

CRLF = "\r\n"
NL = "\n"
EMPTYSTRING = ""

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_HEADER_MAP = dict((c, "=%02X" % c) for c in range(256))
_QUOPRI_BODY_MAP = _QUOPRI_HEADER_MAP.copy()

# Safe header bytes which need no encoding.
for c in b"-!*+/" + ascii_letters.encode("ascii") + digits.encode("ascii"):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(" ")] = "_"

# Safe body bytes which need no encoding.
for c in (b" !\"#$%&'()*+,-./0123456789:;<>"
          b"?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`"
          b"abcdefghijklmnopqrstuvwxyz{|}~\t"):
    _QUOPRI_BODY_MAP[c] = chr(c)


# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""
    return chr(octet) != _QUOPRI_HEADER_MAP[octet]
Exemplo n.º 9
0
from string import ascii_letters, digits, hexdigits

CRLF = "\r\n"
NL = "\n"
EMPTYSTRING = ""

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_HEADER_MAP = dict((c, "=%02X" % c) for c in range(256))
_QUOPRI_BODY_MAP = _QUOPRI_HEADER_MAP.copy()

# Safe header bytes which need no encoding.
for c in b"-!*+/" + ascii_letters.encode("ascii") + digits.encode("ascii"):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(" ")] = "_"

# Safe body bytes which need no encoding.
for c in b" !\"#$%&'()*+,-./0123456789:;<>" b"?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`" b"abcdefghijklmnopqrstuvwxyz{|}~\t":
    _QUOPRI_BODY_MAP[c] = chr(c)


# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""
    return chr(octet) != _QUOPRI_HEADER_MAP[octet]

Exemplo n.º 10
0
class xtp(PatternExtractor):
    """
    Extract Patterns: Uses regular expressions to extract indicators from the
    input data and optionally filters these results heuristically. The unit is
    designed to extract indicators such as domain names and IP addresses, see
    below for a complete list. To extract data formats such as hex-encoded
    data, use `refinery.carve`.
    """
    def __init__(
            self,
            *pattern:
        arg('pattern',
            type=str,
            default=('hostname', 'url', 'email'),
            help=
            ('Choose the pattern to extract, defaults are hostname, url, and email. '
             'Use an asterix character to select all available patterns. The available '
             'patterns are: {}'.format(', '.join(p.name
                                                 for p in indicators)))),
            filter:
        arg('-f',
            dest='filter',
            action='count',
            help=
            ('If this setting is enabled, the xtp unit will attempt to reduce the number '
             'of false positives by certain crude heuristics. Specify multiple times to '
             'make the filtering more aggressive.')) = 0,
            min=1,
            max=None,
            len=None,
            stripspace=False,
            unique=False,
            longest=False,
            take=None):
        self.superinit(super(), **vars(), ascii=True, utf16=True)

        patterns = {
            p
            for name in pattern for p in indicators if fnmatch(p.name, name)
        }
        if indicators.hostname in patterns:
            patterns.remove(indicators.hostname)
            patterns.add(indicators.ipv4)
            patterns.add(indicators.domain)
        patterns = [F'(?P<{p.name}>{p.value})' for p in patterns]
        if not patterns:
            raise RefineryCriticalException(
                'The given mask does not match any known indicator pattern.')
        pattern = '|'.join(patterns)
        self.log_debug(F'using pattern: {pattern}')

        self.args.pattern = re.compile(pattern.encode(self.codec))
        self.args.filter = filter

    _ALPHABETIC = ascii_letters.encode('ASCII')
    _LEGITIMATE_HOSTS = {
        'adobe.com': 1,
        'aka.ms': 1,
        'apache.org': 1,
        'apple.com': 1,
        'azure.com': 1,
        'baidu.com': 2,
        'curl.haxx.se': 1,
        'digicert.com': 1,
        'globalsign.com': 1,
        'globalsign.net': 1,
        'google.com': 3,
        'iana.org': 1,
        'live.com': 1,
        'microsoft.com': 1,
        'msdn.com': 1,
        'msn.com': 1,
        'office.com': 1,
        'openssl.org': 1,
        'openxmlformats.org': 1,
        'purl.org': 1,
        'python.org': 1,
        'skype.com': 1,
        'sway-cdn.com': 1,
        'sway-extensions.com': 1,
        'symantec.com': 1,
        'symauth.com': 1,
        'symcb.com': 1,
        'thawte.com': 1,
        'verisign.com': 1,
        'w3.org': 1,
        'xml.org': 1,
        'xmlsoap.org': 1,
        'yahoo.com': 1,
    }

    _DOMAIN_WHITELIST = [
        'system.net',
        'wscript.shell',
    ]

    def _check_match(self, data, pos, name, value):
        if name == 'ipv4':
            ocets = [int(x) for x in value.split(B'.')]
            if ocets.count(0) >= 3:
                return None
            for area in (data[pos - 20:pos + 20],
                         data[pos * 2 - 40:pos * 2 + 40:2],
                         data[pos * 2 - 41:pos * 2 + 39:2]):
                if B'version' in area.lower():
                    return None
            ip = ip_address(value.decode(self.codec))
            if not ip.is_global:
                if self.args.filter > 1 or not ip.is_private:
                    return None
        elif name in ('url', 'socket', 'domain'):
            ioc = value.decode(self.codec)
            if '://' not in ioc: ioc = F'TCP://{ioc}'
            host = urlparse(ioc).netloc.split(':', 1)[0].lower()
            for white, level in self._LEGITIMATE_HOSTS.items():
                if level <= self.args.filter and host == white or host.endswith(
                        F'.{white}'):
                    return None
            if any(host == w for w in self._DOMAIN_WHITELIST):
                return None
            if name == 'domain':
                hostparts = host.split('.')
                # These heuristics attempt to filter out member access to variables in
                # scripts which can be mistaken for domains because of the TLD inflation
                # we've had.
                if len(hostparts) == 2 and hostparts[0] == 'this':
                    return None
                if len(hostparts[-2]) < 3:
                    return None
                if any(x.startswith('_') for x in hostparts):
                    return None
                if len(hostparts[-1]) > 3:
                    seen_before = len(
                        set(
                            re.findall(
                                R'{}(?:\.\w+)+'.format(
                                    hostparts[0]).encode('ascii'), data)))
                    if seen_before > 2:
                        return None
        elif name == 'email':
            at = value.find(B'@')
            ix = 0
            while value[ix] not in self._ALPHABETIC:
                ix += 1
            return None if at - ix < 3 else value[ix:]
        elif name == 'path':
            if len(value) < 8:
                return None
            if len(value) > 16 and len(re.findall(RB'\\x\d\d',
                                                  value)) > len(value) // 10:
                return None
        return value

    def process(self, data):
        whitelist = set()

        def check(match):
            for name, value in match.groupdict().items():
                if value is not None:
                    break
            else:
                raise RefineryCriticalException('Received empty match.')
            if value in whitelist:
                return None
            result = self._check_match(data, match.start(), name, value)
            if result is not None:
                return result
            whitelist.add(value)

        transforms = None if not self.args.filter else [check]
        yield from self.matches_processed(memoryview(data), self.args.pattern,
                                          transforms)
Exemplo n.º 11
0
 def __init__(self, filename: str, alphabet_only: bool = False):
     self.filename = filename
     self.alphabet_only = alphabet_only
     self.encoded_letters = ascii_letters.encode()
     self.compteur = 0
     self.chars = {}
Exemplo n.º 12
0
class xtp(PatternExtractor):
    """
    Extract Patterns: Uses regular expressions to extract indicators from the input data and
    optionally filters these results heuristically. The unit is designed to extract indicators
    such as domain names and IP addresses, see below for a complete list. To extract data
    formats such as hex-encoded data, use `refinery.carve`.
    """
    def __init__(
            self,
            *pattern:
        Arg('pattern',
            type=str,
            default=(
                indicators.hostname.name,
                indicators.url.name,
                indicators.email.name,
            ),
            help=
            ('Choose the pattern to extract. The unit uses {{default}} by default. Use an '
             'asterix character to select all available patterns. The available patterns '
             'are: {}'.format(', '.join(p.dashname for p in indicators)))),
            filter:
        Arg('-f',
            dest='filter',
            action='count',
            help=
            ('If this setting is enabled, the xtp unit will attempt to reduce the number '
             'of false positives by certain crude heuristics. Specify multiple times to '
             'make the filtering more aggressive.')) = 0,
            min=1,
            max=None,
            len=None,
            stripspace=False,
            duplicates=False,
            longest=False,
            take=None):
        self.superinit(super(), **vars(), ascii=True, utf16=True)

        patterns = {
            p
            for name in pattern for p in indicators
            if fnmatch(p.dashname, name)
        }
        # if indicators.hostname in patterns:
        #     patterns.remove(indicators.hostname)
        #     patterns.add(indicators.ipv4)
        #     patterns.add(indicators.domain)
        patterns = [F'(?P<{p.name}>{p.value})' for p in patterns]
        if not patterns:
            raise RefineryCriticalException(
                'The given mask does not match any known indicator pattern.')
        pattern = '|'.join(patterns)
        self.args.pattern = re.compile(pattern.encode(self.codec),
                                       flags=re.DOTALL)
        self.args.filter = filter

    _ALPHABETIC = ascii_letters.encode('ASCII')
    _LEGITIMATE_HOSTS = {
        'acm.org': 1,
        'adobe.com': 1,
        'aka.ms': 1,
        'android.com': 1,
        'apache.org': 1,
        'apple.com': 1,
        'archive.org': 2,
        'azure.com': 1,
        'baidu.com': 2,
        'bootstrapcdn.com': 2,
        'cdnjs.cloudflare.com': 4,
        'comodo.net': 1,
        'comodoca.com': 1,
        'curl.haxx.se': 1,
        'digicert.com': 1,
        'dublincore.org': 1,
        'fontawesome.com': 1,
        'github.com': 3,
        'globalsign.com': 1,
        'globalsign.net': 1,
        'godaddy.com': 1,
        'google.com': 4,
        'googleapis.com': 5,
        'googleusercontent.com': 5,
        'gov': 2,
        'gstatic.com': 2,
        'iana.org': 1,
        'intel.com': 1,
        'jquery.com': 1,
        'jsdelivr.net': 2,
        'live.com': 1,
        'microsoft.com': 1,
        'msdn.com': 1,
        'msn.com': 1,
        'office.com': 1,
        'office365.com': 2,
        'openssl.org': 1,
        'openxmlformats.org': 1,
        'purl.org': 1,
        'python.org': 1,
        'schema.org': 2,
        'sectigo.com': 1,
        'skype.com': 1,
        'sourceforge.net': 4,
        'sway-cdn.com': 1,
        'sway-extensions.com': 1,
        'symantec.com': 1,
        'symauth.com': 1,
        'symcb.com': 1,
        'symcd.com': 1,
        'thawte.com': 1,
        'usertrust.com': 1,
        'verisign.com': 1,
        'w3.org': 1,
        'wikipedia.org': 1,
        'wolfram.com': 1,
        'xml.org': 1,
        'xmlsoap.org': 1,
        'yahoo.com': 1,
    }

    _DOMAIN_WHITELIST = [
        'system.net',
        'wscript.shell',
    ]

    _BRACKETING = {
        B"'"[0]: B"'",
        B'"'[0]: B'"',
        B'('[0]: B')',
        B'{'[0]: B'}',
        B'['[0]: B']',
        B'<'[0]: B'>',
    }

    def _check_match(self, data, pos, name, value):
        term = self._BRACKETING.get(data[pos - 1], None)
        if term:
            pos = value.find(term)
            if pos > 0:
                value = value[:pos]
        if not self.args.filter:
            return value
        if name == indicators.hostname.name:
            if all(part.isdigit() for part in value.split(B'.')):
                name = indicators.ipv4.name
            elif B'.' not in value:
                name = indicators.ipv6.name
            else:
                name = indicators.domain.name
        if name == indicators.ipv4.name:
            ocets = [int(x) for x in value.split(B'.')]
            if ocets.count(0) >= 3:
                return None
            if self.args.filter > 2 and sum(ocets) < 10:
                return None
            for area in (data[pos - 20:pos + 20],
                         data[pos * 2 - 40:pos * 2 + 40:2],
                         data[pos * 2 - 41:pos * 2 + 39:2]):
                if B'version' in area.lower():
                    return None
            ip = ip_address(value.decode(self.codec))
            if not ip.is_global:
                if self.args.filter >= 3 or not ip.is_private:
                    return None
        elif name in {
                indicators.url.name, indicators.socket.name,
                indicators.hostname.name, indicators.domain.name,
                indicators.subdomain.name
        }:
            if self.args.filter >= 2:
                if LetterWeights.IOC(value) < 0.6:
                    self.log_info(value)
                    self.log_info(
                        'excluding indicator because of low IOC score')
                    return None
                if name != indicators.url.name and len(value) > 0x100:
                    self.log_info(value)
                    self.log_info('excluding indicator because it is too long')
                    return None
            ioc = value.decode(self.codec)
            if '://' not in ioc: ioc = F'tcp://{ioc}'
            parts = urlparse(ioc)
            host, _, _ = parts.netloc.partition(':')
            hl = host.lower()
            for white, level in self._LEGITIMATE_HOSTS.items():
                if self.args.filter >= level and (hl == white
                                                  or hl.endswith(F'.{white}')):
                    self.log_info(value)
                    self.log_info(
                        F'excluding indicator because domain {hl} is whitelisted via {white}; '
                        F'reduce level below {level} to allow, current level is {self.args.filter}'
                    )
                    return None
            if name == indicators.url.name:
                scheme = parts.scheme.lower()
                for p in ('http', 'https', 'ftp', 'file', 'mailto'):
                    if scheme.endswith(p):
                        pos = scheme.find(p)
                        value = value[pos:]
                        break
            if any(hl == w for w in self._DOMAIN_WHITELIST):
                self.log_info(value)
                self.log_info(
                    F'excluding indicator because domain {hl} is whitelisted')
                return None
            if name in {
                    indicators.hostname.name, indicators.domain.name,
                    indicators.subdomain.name
            }:
                hostparts = host.split('.')
                if self.args.filter >= 2:
                    if not all(p.isdigit() for p in hostparts) and all(
                            len(p) < 4 for p in hostparts):
                        self.log_info(value)
                        self.log_info(
                            'excluding host with too many short parts')
                        return None
                if self.args.filter >= 3:
                    if len(hostparts) <= sum(
                            3 for p in hostparts
                            if p != p.lower() and p != p.upper()):
                        self.log_info(value)
                        self.log_info(
                            'excluding host with too many mixed case parts')
                        return None
                # These heuristics attempt to filter out member access to variables in
                # scripts which can be mistaken for domains because of the TLD inflation
                # we've had.
                uppercase = sum(1 for c in host
                                if c.isalpha() and c.upper() == c)
                lowercase = sum(1 for c in host
                                if c.isalpha() and c.lower() == c)
                if lowercase and uppercase:
                    caseratio = uppercase / lowercase
                    if 0.1 < caseratio < 0.9:
                        self.log_info(value)
                        self.log_info(
                            'excluding indicator with too much uppercase letters'
                        )
                        return None
                if all(x.isidentifier() for x in hostparts):
                    if len(hostparts) == 2 and hostparts[0] in ('this',
                                                                'self'):
                        self.log_info(value)
                        self.log_info(
                            'excluding host that looks like a code snippet')
                        return None
                    if len(hostparts[-2]) < 3:
                        self.log_info(value)
                        self.log_info(
                            'excluding host with too short root domain name')
                        return None
                    if any(x.startswith('_') for x in hostparts):
                        self.log_info(value)
                        self.log_info('excluding host with underscores')
                        return None
                    if len(hostparts[-1]) > 3:
                        seen_before = len(
                            set(
                                re.findall(
                                    R'{}(?:\.\w+)+'.format(
                                        hostparts[0]).encode('ascii'), data)))
                        if seen_before > 2:
                            self.log_debug(value)
                            self.log_debug(
                                'excluding indicator that was already seen')
                            return None
        elif name == indicators.email.name:
            at = value.find(B'@')
            ix = 0
            while value[ix] not in self._ALPHABETIC:
                ix += 1
            return None if at - ix < 3 else value[ix:]
        elif name == indicators.path.name:
            if len(value) < 8:
                return None
            if len(value) > 16 and len(re.findall(RB'\\x\d\d',
                                                  value)) > len(value) // 10:
                return None
            if self.args.filter >= 2:
                try:
                    path = value.decode(self.codec)
                except Exception:
                    return None
                try:
                    path = Path(path)
                except Exception as E:
                    self.log_debug(F'error parsing path "{path}": {E!s}')
                    return None
                for k, part in enumerate(path.parts):
                    if not k:
                        drive, colon, slash = part.partition(':')
                        if colon and len(drive) == 1 and len(slash) <= 1:
                            continue
                        if part[0] == part[~0] == '%':
                            continue
                    if LetterWeights.Path(part) < 0.6:
                        return None
        return value

    def process(self, data):
        whitelist = set()

        def check(match):
            for name, value in match.groupdict().items():
                if value is not None:
                    break
            else:
                raise RefineryCriticalException('Received empty match.')
            if value in whitelist:
                return None
            result = self._check_match(data, match.start(), name, value)
            if result is not None:
                return self.labelled(result, pattern=name)
            whitelist.add(value)

        self.log_debug(self.args.pattern.pattern)

        transforms = [check]
        yield from self.matches_filtered(memoryview(data), self.args.pattern,
                                         *transforms)
Exemplo n.º 13
0
from string import ascii_letters, digits, hexdigits

CRLF = "\r\n"
NL = "\n"
EMPTYSTRING = ""

# Build a mapping of octets to the expansion of that octet.  Since we're only
# going to have 256 of these things, this isn't terribly inefficient
# space-wise.  Remember that headers and bodies have different sets of safe
# characters.  Initialize both maps with the full expansion, and then override
# the safe bytes with the more compact form.
_QUOPRI_HEADER_MAP = dict((c, "=%02X" % c) for c in range(256))
_QUOPRI_BODY_MAP = _QUOPRI_HEADER_MAP.copy()

# Safe header bytes which need no encoding.
for c in bytes(b"-!*+/" + ascii_letters.encode("ascii") +
               digits.encode("ascii")):
    _QUOPRI_HEADER_MAP[c] = chr(c)
# Headers have one other special encoding; spaces become underscores.
_QUOPRI_HEADER_MAP[ord(" ")] = "_"

# Safe body bytes which need no encoding.
for c in bytes(b" !\"#$%&'()*+,-./0123456789:;<>"
               b"?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`"
               b"abcdefghijklmnopqrstuvwxyz{|}~\t"):
    _QUOPRI_BODY_MAP[c] = chr(c)


# Helpers
def header_check(octet):
    """Return True if the octet should be escaped with header quopri."""