mirror of
https://github.com/mandiant/capa.git
synced 2026-04-28 11:53:20 -07:00
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# Copyright 2024 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 fixtures
|
|
|
|
|
|
@fixtures.parametrize_backend_feature_fixtures(
|
|
fixtures.BackendFeaturePolicy(
|
|
name="vmray",
|
|
include_tags={"vmray"},
|
|
)
|
|
)
|
|
def test_vmray_features(feature_fixture):
|
|
extractor = fixtures.get_vmray_extractor(feature_fixture.sample_path)
|
|
fixtures.run_feature_fixture(extractor, feature_fixture)
|
|
|
|
|
|
def test_vmray_processes():
|
|
# see #2394
|
|
path = (
|
|
fixtures.CD
|
|
/ "data"
|
|
/ "dynamic"
|
|
/ "vmray"
|
|
/ "2f8a79b12a7a989ac7e5f6ec65050036588a92e65aeb6841e08dc228ff0e21b4_min_archive.zip"
|
|
)
|
|
vmre = fixtures.get_vmray_extractor(path)
|
|
assert len(vmre.analysis.monitor_processes) == 9
|