Skip to content

Commit 8918b38

Browse files
committed
Windows: Improve nestat error checking
Should partially solve #863
1 parent 9b53767 commit 8918b38

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

volatility3/framework/plugins/windows/netstat.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,8 @@ def _generator(self, show_corrupt_results: Optional[bool] = None):
427427
self.config_path)
428428

429429
tcpip_module = self.get_tcpip_module(self.context, kernel.layer_name, kernel.symbol_table_name)
430+
if not tcpip_module:
431+
vollog.error("Unable to locate symbols for the memory image's tcpip module")
430432

431433
try:
432434
tcpip_symbol_table = pdbutil.PDBUtility.symbol_table_from_pdb(

0 commit comments

Comments
 (0)