Agent: Modify ExploiterResultData to have more details

This commit is contained in:
Shreya Malviya 2022-02-21 13:18:53 +05:30
parent 6150610bdc
commit 8d0fa3faef
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ class UnknownPluginError(Exception):
ExploiterResultData = namedtuple(
"ExploiterResultData", ["success", "info", "attempts", "error_message"]
"ExploiterResultData",
["exploit_success", "propagation_success", "os", "info", "attempts", "error_message"],
)
PingScanData = namedtuple("PingScanData", ["response_received", "os"])
PortScanData = namedtuple("PortScanData", ["port", "status", "banner", "service"])