mirror of
https://github.com/mandiant/capa.git
synced 2025-12-22 23:26:21 -08:00
merge
This commit is contained in:
@@ -40,9 +40,6 @@ except ImportError:
|
||||
indirect=["sample", "scope"],
|
||||
)
|
||||
def test_binja_features(sample, scope, feature, expected):
|
||||
if feature == capa.features.common.Characteristic("stack string"):
|
||||
pytest.xfail("skip failing Binja stack string detection temporarily, see #1473")
|
||||
|
||||
if isinstance(feature, capa.features.file.Export) and "." in str(feature.value):
|
||||
pytest.xfail("skip Binja unsupported forwarded export feature, see #1646")
|
||||
|
||||
|
||||
71
tests/test_elffile_features.py
Normal file
71
tests/test_elffile_features.py
Normal file
@@ -0,0 +1,71 @@
|
||||
# Copyright (C) 2023 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.
|
||||
import io
|
||||
from pathlib import Path
|
||||
|
||||
from elftools.elf.elffile import ELFFile
|
||||
|
||||
from capa.features.extractors.elffile import extract_file_export_names, extract_file_import_names
|
||||
|
||||
CD = Path(__file__).resolve().parent
|
||||
SAMPLE_PATH = CD / "data" / "055da8e6ccfe5a9380231ea04b850e18.elf_"
|
||||
|
||||
|
||||
def test_elffile_import_features():
|
||||
expected_imports = [
|
||||
"memfrob",
|
||||
"puts",
|
||||
"__libc_start_main",
|
||||
"malloc",
|
||||
"__cxa_finalize",
|
||||
]
|
||||
path = Path(SAMPLE_PATH)
|
||||
elf = ELFFile(io.BytesIO(path.read_bytes()))
|
||||
# Extract imports
|
||||
imports = list(extract_file_import_names(elf))
|
||||
|
||||
# Verify that at least one import was found
|
||||
assert len(imports) > 0, "No imports were found."
|
||||
|
||||
# Extract the symbol names from the extracted imports
|
||||
extracted_symbol_names = [imported[0].value for imported in imports]
|
||||
|
||||
# Check if all expected symbol names are found
|
||||
for symbol_name in expected_imports:
|
||||
assert symbol_name in extracted_symbol_names, f"Symbol '{symbol_name}' not found in imports."
|
||||
|
||||
|
||||
def test_elffile_export_features():
|
||||
expected_exports = [
|
||||
"deregister_tm_clones",
|
||||
"register_tm_clones",
|
||||
"__do_global_dtors_aux",
|
||||
"completed.8060",
|
||||
"__do_global_dtors_aux_fini_array_entry",
|
||||
"frame_dummy",
|
||||
"_init",
|
||||
"__libc_csu_fini",
|
||||
"_fini",
|
||||
"__dso_handle",
|
||||
"_IO_stdin_used",
|
||||
"__libc_csu_init",
|
||||
]
|
||||
path = Path(SAMPLE_PATH)
|
||||
elf = ELFFile(io.BytesIO(path.read_bytes()))
|
||||
# Extract imports
|
||||
exports = list(extract_file_export_names(elf))
|
||||
|
||||
# Verify that at least one export was found
|
||||
assert len(exports) > 0, "No exports were found."
|
||||
|
||||
# Extract the symbol names from the extracted imports
|
||||
extracted_symbol_names = [exported[0].value for exported in exports]
|
||||
|
||||
# Check if all expected symbol names are found
|
||||
for symbol_name in expected_exports:
|
||||
assert symbol_name in extracted_symbol_names, f"Symbol '{symbol_name}' not found in exports."
|
||||
Reference in New Issue
Block a user