mirror of
https://github.com/mandiant/capa.git
synced 2025-12-10 23:00:37 -08:00
* updating copyright, back to the date of origin of file * updating regex to account for linter violation
64 lines
2.5 KiB
Python
64 lines
2.5 KiB
Python
# Copyright (C) 2022 Mandiant, Inc. All Rights Reserved.
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at: [package root]/LICENSE.txt
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and limitations under the License.
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Tuple, Iterator
|
|
|
|
import dnfile
|
|
|
|
import capa.features.extractors.dotnetfile
|
|
from capa.features.file import Import, FunctionName
|
|
from capa.features.common import Class, Format, String, Feature, Namespace, Characteristic
|
|
from capa.features.address import Address
|
|
|
|
|
|
def extract_file_import_names(pe: dnfile.dnPE) -> Iterator[Tuple[Import, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_import_names(pe=pe)
|
|
|
|
|
|
def extract_file_format(pe: dnfile.dnPE) -> Iterator[Tuple[Format, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_format(pe=pe)
|
|
|
|
|
|
def extract_file_function_names(pe: dnfile.dnPE) -> Iterator[Tuple[FunctionName, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_function_names(pe=pe)
|
|
|
|
|
|
def extract_file_strings(pe: dnfile.dnPE) -> Iterator[Tuple[String, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_strings(pe=pe)
|
|
|
|
|
|
def extract_file_mixed_mode_characteristic_features(pe: dnfile.dnPE) -> Iterator[Tuple[Characteristic, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_mixed_mode_characteristic_features(pe=pe)
|
|
|
|
|
|
def extract_file_namespace_features(pe: dnfile.dnPE) -> Iterator[Tuple[Namespace, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_namespace_features(pe=pe)
|
|
|
|
|
|
def extract_file_class_features(pe: dnfile.dnPE) -> Iterator[Tuple[Class, Address]]:
|
|
yield from capa.features.extractors.dotnetfile.extract_file_class_features(pe=pe)
|
|
|
|
|
|
def extract_features(pe: dnfile.dnPE) -> Iterator[Tuple[Feature, Address]]:
|
|
for file_handler in FILE_HANDLERS:
|
|
for feature, address in file_handler(pe):
|
|
yield feature, address
|
|
|
|
|
|
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,
|
|
)
|