mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 23:59:48 -08:00
27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2022 FireEye, 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 pytest
|
|
from fixtures import *
|
|
|
|
import capa.features.extractors.elf
|
|
|
|
|
|
def test_elf_section_gnu_abi_tag():
|
|
path = get_data_path_by_name("2f7f5f")
|
|
with open(path, "rb") as f:
|
|
assert capa.features.extractors.elf.detect_elf_os(f) == "linux"
|
|
|
|
|
|
def test_elf_program_header_gnu_abi_tag():
|
|
path = get_data_path_by_name("7351f.elf")
|
|
with open(path, "rb") as f:
|
|
assert capa.features.extractors.elf.detect_elf_os(f) == "linux"
|