# Copyright 2023 Google LLC # # 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 # # http://www.apache.org/licenses/LICENSE-2.0 # # 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 textwrap from pathlib import Path import pytest import capa.main import capa.rules import capa.helpers import capa.features.file import capa.features.insn import capa.features.common import capa.features.freeze import capa.features.basicblock import capa.features.extractors.null import capa.features.extractors.base_extractor from capa.features.address import Address, AbsoluteVirtualAddress from capa.features.extractors.base_extractor import BBHandle, SampleHashes, FunctionHandle EXTRACTOR = capa.features.extractors.null.NullStaticFeatureExtractor( base_address=AbsoluteVirtualAddress(0x401000), sample_hashes=SampleHashes( md5="6eb7ee7babf913d75df3f86c229df9e7", sha1="2a082494519acd5130d5120fa48786df7275fdd7", sha256="0c7d1a34eb9fd55bedbf37ba16e3d5dd8c1dd1d002479cc4af27ef0f82bb4792", ), global_features=[], file_features=[ (AbsoluteVirtualAddress(0x402345), capa.features.common.Characteristic("embedded pe")), ], functions={ AbsoluteVirtualAddress(0x401000): capa.features.extractors.null.FunctionFeatures( features=[ (AbsoluteVirtualAddress(0x401000), capa.features.common.Characteristic("indirect call")), ], basic_blocks={ AbsoluteVirtualAddress(0x401000): capa.features.extractors.null.BasicBlockFeatures( features=[ (AbsoluteVirtualAddress(0x401000), capa.features.common.Characteristic("tight loop")), ], instructions={ AbsoluteVirtualAddress(0x401000): capa.features.extractors.null.InstructionFeatures( features=[ (AbsoluteVirtualAddress(0x401000), capa.features.insn.Mnemonic("xor")), (AbsoluteVirtualAddress(0x401000), capa.features.common.Characteristic("nzxor")), ], ), AbsoluteVirtualAddress(0x401002): capa.features.extractors.null.InstructionFeatures( features=[ (AbsoluteVirtualAddress(0x401002), capa.features.insn.Mnemonic("mov")), ], ), }, ), }, ), }, ) def addresses(s) -> list[Address]: return sorted(i.address for i in s) def test_null_feature_extractor(): fh = FunctionHandle(AbsoluteVirtualAddress(0x401000), None) bbh = BBHandle(AbsoluteVirtualAddress(0x401000), None) assert addresses(EXTRACTOR.get_functions()) == [AbsoluteVirtualAddress(0x401000)] assert addresses(EXTRACTOR.get_basic_blocks(fh)) == [AbsoluteVirtualAddress(0x401000)] assert addresses(EXTRACTOR.get_instructions(fh, bbh)) == [ AbsoluteVirtualAddress(0x401000), AbsoluteVirtualAddress(0x401002), ] rules = capa.rules.RuleSet( [ capa.rules.Rule.from_yaml( textwrap.dedent( """ rule: meta: name: xor loop scopes: static: basic block dynamic: process features: - and: - characteristic: tight loop - mnemonic: xor - characteristic: nzxor """ ) ), ] ) capabilities = capa.main.find_capabilities(rules, EXTRACTOR) assert "xor loop" in capabilities.matches def compare_extractors(a, b): assert list(a.extract_file_features()) == list(b.extract_file_features()) assert addresses(a.get_functions()) == addresses(b.get_functions()) for f in a.get_functions(): assert addresses(a.get_basic_blocks(f)) == addresses(b.get_basic_blocks(f)) assert sorted(set(a.extract_function_features(f))) == sorted(set(b.extract_function_features(f))) for bb in a.get_basic_blocks(f): assert addresses(a.get_instructions(f, bb)) == addresses(b.get_instructions(f, bb)) assert sorted(set(a.extract_basic_block_features(f, bb))) == sorted( set(b.extract_basic_block_features(f, bb)) ) for insn in a.get_instructions(f, bb): assert sorted(set(a.extract_insn_features(f, bb, insn))) == sorted( set(b.extract_insn_features(f, bb, insn)) ) def test_freeze_str_roundtrip(): load = capa.features.freeze.loads_static dump = capa.features.freeze.dumps_static reanimated = load(dump(EXTRACTOR)) compare_extractors(EXTRACTOR, reanimated) def test_freeze_bytes_roundtrip(): load = capa.features.freeze.load dump = capa.features.freeze.dump reanimated = load(dump(EXTRACTOR)) compare_extractors(EXTRACTOR, reanimated) def roundtrip_feature(feature): assert feature == capa.features.freeze.features.feature_from_capa(feature).to_capa() def test_serialize_features(): roundtrip_feature(capa.features.insn.API("advapi32.CryptAcquireContextW")) roundtrip_feature(capa.features.common.String("SCardControl")) roundtrip_feature(capa.features.insn.Number(0xFF)) roundtrip_feature(capa.features.insn.Offset(0x0)) roundtrip_feature(capa.features.insn.Mnemonic("push")) roundtrip_feature(capa.features.file.Section(".rsrc")) roundtrip_feature(capa.features.common.Characteristic("tight loop")) roundtrip_feature(capa.features.basicblock.BasicBlock()) roundtrip_feature(capa.features.file.Export("BaseThreadInitThunk")) roundtrip_feature(capa.features.file.Import("kernel32.IsWow64Process")) roundtrip_feature(capa.features.file.Import("#11")) roundtrip_feature(capa.features.insn.OperandOffset(0, 0x8)) roundtrip_feature( capa.features.insn.Property("System.IO.FileInfo::Length", access=capa.features.common.FeatureAccess.READ) ) roundtrip_feature(capa.features.insn.Property("System.IO.FileInfo::Length")) def test_freeze_sample(tmpdir, z9324d_extractor): # tmpdir fixture handles cleanup o = tmpdir.mkdir("capa").join("test.frz").strpath path = z9324d_extractor.path assert capa.features.freeze.main([path, o, "-v"]) == 0 @pytest.mark.parametrize( "extractor", [ pytest.param("z9324d_extractor"), ], ) def test_freeze_load_sample(tmpdir, request, extractor): o = tmpdir.mkdir("capa").join("test.frz") extractor = request.getfixturevalue(extractor) Path(o.strpath).write_bytes(capa.features.freeze.dump(extractor)) null_extractor = capa.features.freeze.load(Path(o.strpath).read_bytes()) compare_extractors(extractor, null_extractor)