Add host correlation and assurance coverage
This commit is contained in:
parent
8194d13734
commit
b40ac4252c
36 changed files with 944 additions and 23 deletions
|
|
@ -19,6 +19,9 @@ class HostEvent:
|
|||
peer_port: int = 0
|
||||
local_ip: str = ""
|
||||
local_port: int = 0
|
||||
target_uid: int = -1
|
||||
target_gid: int = -1
|
||||
mode: int = 0
|
||||
|
||||
@property
|
||||
def argv_str(self) -> str:
|
||||
|
|
@ -38,4 +41,7 @@ class HostEvent:
|
|||
"peer_port": self.peer_port,
|
||||
"local_ip": self.local_ip,
|
||||
"local_port": self.local_port,
|
||||
"target_uid": self.target_uid,
|
||||
"target_gid": self.target_gid,
|
||||
"mode": self.mode,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue