File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77type 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+
You can’t perform that action at this time.
0 commit comments