from tools.ToolBase import ToolBase class SmbmapTool(ToolBase): def validate_instruction(self, instruction): #指令过滤 timeout = 0 if " grep " not in instruction: instruction =instruction.strip() + " | grep -E 'READ|WRITE|Disk|path'" return instruction,timeout def analyze_result(self, result,instruction,stderr,stdout): #指令结果分析 return result