We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f8265 commit 09fa859Copy full SHA for 09fa859
volatility3/framework/plugins/windows/vadyarascan.py
@@ -18,7 +18,7 @@ class VadYaraScan(interfaces.plugins.PluginInterface):
18
"""Scans all the Virtual Address Descriptor memory maps using yara."""
19
20
_required_framework_version = (2, 4, 0)
21
- _version = (1, 1, 0)
+ _version = (1, 1, 1)
22
23
@classmethod
24
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
@@ -68,7 +68,7 @@ def _generator(self):
68
layer = self.context.layers[layer_name]
69
for start, size in self.get_vad_maps(task):
70
if size > sanity_check:
71
- vollog.warn(
+ vollog.debug(
72
f"VAD at 0x{start:x} over sanity-check size, not scanning"
73
)
74
continue
0 commit comments