Skip to content

Commit 641cc2e

Browse files
authored
0.8
1 parent 4dfb50c commit 641cc2e

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

adaptix_struct.go

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import (
66

77
type ListenerData struct {
88
Name string `json:"l_name"`
9+
RegName string `json:"l_reg_name"`
10+
Protocol string `json:"l_protocol"`
911
Type string `json:"l_type"`
1012
BindHost string `json:"l_bind_host"`
1113
BindPort string `json:"l_bind_port"`
@@ -179,3 +181,18 @@ type CredsData struct {
179181
AgentId string `json:"c_agent_id"`
180182
Host string `json:"c_host"`
181183
}
184+
185+
type TargetData struct {
186+
TargetId string `json:"t_target_id"`
187+
Computer string `json:"t_computer"`
188+
Domain string `json:"t_domain"`
189+
Address string `json:"t_address"`
190+
Os int `json:"t_os"`
191+
OsDesk string `json:"t_os_desk"`
192+
Tag string `json:"t_tag"`
193+
Info string `json:"t_info"`
194+
Date int64 `json:"t_date"`
195+
Alive bool `json:"t_alive"`
196+
Owned bool `json:"t_owned"`
197+
}
198+

0 commit comments

Comments
 (0)