Skip to content

Commit 714e987

Browse files
authored
Merge pull request #1270 from eve-mem/windows_vadyarascan_sanity_check_warnings
Windows: change warnings around large memory maps to debug level as per issue #1256
2 parents 67f8265 + 09fa859 commit 714e987

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/windows/vadyarascan.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class VadYaraScan(interfaces.plugins.PluginInterface):
1818
"""Scans all the Virtual Address Descriptor memory maps using yara."""
1919

2020
_required_framework_version = (2, 4, 0)
21-
_version = (1, 1, 0)
21+
_version = (1, 1, 1)
2222

2323
@classmethod
2424
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
@@ -68,7 +68,7 @@ def _generator(self):
6868
layer = self.context.layers[layer_name]
6969
for start, size in self.get_vad_maps(task):
7070
if size > sanity_check:
71-
vollog.warn(
71+
vollog.debug(
7272
f"VAD at 0x{start:x} over sanity-check size, not scanning"
7373
)
7474
continue

0 commit comments

Comments
 (0)