You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
317 B
14 lines
317 B
2 months ago
|
|
||
|
from tools.ToolBase import ToolBase
|
||
|
'''
|
||
|
apt install sublist3r
|
||
|
'''
|
||
|
class Sublist3rTool(ToolBase):
|
||
|
def validate_instruction(self, instruction):
|
||
|
timeout = 0
|
||
|
return instruction,timeout
|
||
|
|
||
|
def analyze_result(self, result,instruction,stderr,stdout):
|
||
|
#指令结果分析
|
||
|
return result
|