mirror of
https://github.com/mandiant/capa.git
synced 2025-12-21 06:42:49 -08:00
204 lines
7.1 KiB
Python
204 lines
7.1 KiB
Python
import logging
|
|
import itertools
|
|
from typing import Tuple, Iterator
|
|
|
|
import dnfile
|
|
import pefile
|
|
from dncil.clr.token import Token
|
|
|
|
import capa.features.extractors.helpers
|
|
from capa.features.file import Import, FunctionName
|
|
from capa.features.common import (
|
|
OS,
|
|
OS_ANY,
|
|
ARCH_ANY,
|
|
ARCH_I386,
|
|
ARCH_AMD64,
|
|
FORMAT_DOTNET,
|
|
Arch,
|
|
Class,
|
|
Format,
|
|
String,
|
|
Feature,
|
|
Namespace,
|
|
Characteristic,
|
|
)
|
|
from capa.features.address import NO_ADDRESS, Address, DNTokenAddress, DNTokenOffsetAddress, AbsoluteVirtualAddress
|
|
from capa.features.extractors.base_extractor import FeatureExtractor
|
|
from capa.features.extractors.dnfile.helpers import (
|
|
DnClass,
|
|
DnMethod,
|
|
iter_dotnet_table,
|
|
is_dotnet_mixed_mode,
|
|
get_dotnet_managed_imports,
|
|
get_dotnet_managed_methods,
|
|
calculate_dotnet_token_value,
|
|
get_dotnet_unmanaged_imports,
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def extract_file_format(**kwargs) -> Iterator[Tuple[Format, Address]]:
|
|
yield Format(FORMAT_DOTNET), NO_ADDRESS
|
|
|
|
|
|
def extract_file_import_names(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[Import, Address]]:
|
|
for method in get_dotnet_managed_imports(pe):
|
|
# like System.IO.File::OpenRead
|
|
yield Import(str(method)), DNTokenAddress(Token(method.token))
|
|
|
|
for imp in get_dotnet_unmanaged_imports(pe):
|
|
# like kernel32.CreateFileA
|
|
for name in capa.features.extractors.helpers.generate_symbols(imp.modulename, imp.methodname):
|
|
yield Import(name), DNTokenAddress(Token(imp.token))
|
|
|
|
|
|
def extract_file_function_names(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[FunctionName, Address]]:
|
|
for method in get_dotnet_managed_methods(pe):
|
|
yield FunctionName(str(method)), DNTokenAddress(Token(method.token))
|
|
|
|
|
|
def extract_file_namespace_features(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[Namespace, Address]]:
|
|
"""emit namespace features from TypeRef and TypeDef tables"""
|
|
|
|
# namespaces may be referenced multiple times, so we need to filter
|
|
namespaces = set()
|
|
|
|
for row in iter_dotnet_table(pe, "TypeDef"):
|
|
namespaces.add(row.TypeNamespace)
|
|
|
|
for row in iter_dotnet_table(pe, "TypeRef"):
|
|
namespaces.add(row.TypeNamespace)
|
|
|
|
# namespaces may be empty, discard
|
|
namespaces.discard("")
|
|
|
|
for namespace in namespaces:
|
|
# namespace do not have an associated token, so we yield 0x0
|
|
yield Namespace(namespace), NO_ADDRESS
|
|
|
|
|
|
def extract_file_class_features(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[Class, Address]]:
|
|
"""emit class features from TypeRef and TypeDef tables"""
|
|
for (rid, row) in enumerate(iter_dotnet_table(pe, "TypeDef")):
|
|
token = calculate_dotnet_token_value(pe.net.mdtables.TypeDef.number, rid + 1)
|
|
yield Class(DnClass.format_name(row.TypeNamespace, row.TypeName)), DNTokenAddress(Token(token))
|
|
|
|
for (rid, row) in enumerate(iter_dotnet_table(pe, "TypeRef")):
|
|
token = calculate_dotnet_token_value(pe.net.mdtables.TypeRef.number, rid + 1)
|
|
yield Class(DnClass.format_name(row.TypeNamespace, row.TypeName)), DNTokenAddress(Token(token))
|
|
|
|
|
|
def extract_file_os(**kwargs) -> Iterator[Tuple[OS, Address]]:
|
|
yield OS(OS_ANY), NO_ADDRESS
|
|
|
|
|
|
def extract_file_arch(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[Arch, Address]]:
|
|
# to distinguish in more detail, see https://stackoverflow.com/a/23614024/10548020
|
|
# .NET 4.5 added option: any CPU, 32-bit preferred
|
|
if pe.net.Flags.CLR_32BITREQUIRED and pe.PE_TYPE == pefile.OPTIONAL_HEADER_MAGIC_PE:
|
|
yield Arch(ARCH_I386), NO_ADDRESS
|
|
elif not pe.net.Flags.CLR_32BITREQUIRED and pe.PE_TYPE == pefile.OPTIONAL_HEADER_MAGIC_PE_PLUS:
|
|
yield Arch(ARCH_AMD64), NO_ADDRESS
|
|
else:
|
|
yield Arch(ARCH_ANY), NO_ADDRESS
|
|
|
|
|
|
def extract_file_strings(pe: dnfile.dnPE, **kwargs) -> Iterator[Tuple[String, Address]]:
|
|
yield from capa.features.extractors.common.extract_file_strings(pe.__data__)
|
|
|
|
|
|
def extract_file_mixed_mode_characteristic_features(
|
|
pe: dnfile.dnPE, **kwargs
|
|
) -> Iterator[Tuple[Characteristic, Address]]:
|
|
if is_dotnet_mixed_mode(pe):
|
|
yield Characteristic("mixed mode"), NO_ADDRESS
|
|
|
|
|
|
def extract_file_features(pe: dnfile.dnPE) -> Iterator[Tuple[Feature, Address]]:
|
|
for file_handler in FILE_HANDLERS:
|
|
for feature, addr in file_handler(pe=pe): # type: ignore
|
|
yield feature, addr
|
|
|
|
|
|
FILE_HANDLERS = (
|
|
extract_file_import_names,
|
|
extract_file_function_names,
|
|
extract_file_strings,
|
|
extract_file_format,
|
|
extract_file_mixed_mode_characteristic_features,
|
|
extract_file_namespace_features,
|
|
extract_file_class_features,
|
|
)
|
|
|
|
|
|
def extract_global_features(pe: dnfile.dnPE) -> Iterator[Tuple[Feature, Address]]:
|
|
for handler in GLOBAL_HANDLERS:
|
|
for feature, va in handler(pe=pe): # type: ignore
|
|
yield feature, va
|
|
|
|
|
|
GLOBAL_HANDLERS = (
|
|
extract_file_os,
|
|
extract_file_arch,
|
|
)
|
|
|
|
|
|
class DotnetFileFeatureExtractor(FeatureExtractor):
|
|
def __init__(self, path: str):
|
|
super(DotnetFileFeatureExtractor, self).__init__()
|
|
self.path: str = path
|
|
self.pe: dnfile.dnPE = dnfile.dnPE(path)
|
|
|
|
def get_base_address(self):
|
|
return AbsoluteVirtualAddress(0x0)
|
|
|
|
def get_entry_point(self) -> int:
|
|
# self.pe.net.Flags.CLT_NATIVE_ENTRYPOINT
|
|
# True: native EP: Token
|
|
# False: managed EP: RVA
|
|
return self.pe.net.struct.EntryPointTokenOrRva
|
|
|
|
def extract_global_features(self):
|
|
yield from extract_global_features(self.pe)
|
|
|
|
def extract_file_features(self):
|
|
yield from extract_file_features(self.pe)
|
|
|
|
def is_dotnet_file(self) -> bool:
|
|
return bool(self.pe.net)
|
|
|
|
def is_mixed_mode(self) -> bool:
|
|
return is_dotnet_mixed_mode(self.pe)
|
|
|
|
def get_runtime_version(self) -> Tuple[int, int]:
|
|
return self.pe.net.struct.MajorRuntimeVersion, self.pe.net.struct.MinorRuntimeVersion
|
|
|
|
def get_meta_version_string(self) -> str:
|
|
return self.pe.net.metadata.struct.Version.rstrip(b"\x00").decode("utf-8")
|
|
|
|
def get_functions(self):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def extract_function_features(self, f):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def get_basic_blocks(self, f):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def extract_basic_block_features(self, f, bb):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def get_instructions(self, f, bb):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def extract_insn_features(self, f, bb, insn):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def is_library_function(self, va):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|
|
|
|
def get_function_name(self, va):
|
|
raise NotImplementedError("DotnetFileFeatureExtractor can only be used to extract file features")
|