This commit is contained in:
crusader
2017-11-15 19:38:42 +09:00
parent e1996e75a4
commit b7c7437840
6 changed files with 87 additions and 57 deletions

View File

@@ -0,0 +1,43 @@
package model
type DiscoveryZone struct {
ExcludePatterns []string `json:"excludePatterns"`
DiscoveryHost *DiscoveryHost `json:"discoveryHost"`
}
type DiscoveryHost struct {
Zone Zone `json:"zone"`
FirstScanRange string `json:"firstScanRange"`
LastScanRange string `json:"lastScanRange"`
ExcludeHosts []string `json:"excludeHosts"`
DiscoveryPort *DiscoveryPort `json:"discoveryPort"`
}
type DiscoveryPort struct {
Host Host `json:"host"`
FirstScanRange int `json:"firstScanRange"`
LastScanRange int `json:"lastScanRange"`
ExcludePorts []int `json:"excludePorts"`
DiscoveryService *DiscoveryService `json:"discoveryService"`
}
type DiscoveryService struct {
Port Port `json:"port"`
IncludeServices []string `json:"includeServices"`
}
/*
Dzone --> zone --> Dhost --> host --> Dport --> port --> Dservice --> service
zone --> Dhost --> host --> Dport --> port --> Dservice --> service
host --> Dport --> port --> Dservice --> service
port --> Dservice --> service
*/

View File

@@ -0,0 +1,11 @@
package model
type Host struct {
Zone *Zone `json:"zone"`
ID int `json:"id,omitempty"`
IP string `json:"ip"`
Mac string `json:"mac"`
OS string `json:"os,omitempty"`
}

View File

@@ -0,0 +1,9 @@
package model
type Port struct {
Host *Host `json:"host,omitempty"`
ID int `json:"id,omitempty"`
PortType string `json:"portType,omitempty"`
PortNumber int `json:"portNumber,omitempty"`
}

View File

@@ -0,0 +1,9 @@
package model
type Service struct {
Port *Port `json:"port,omitempty"`
ID int `json:"id,omitempty"`
TLSType string `json:"tlsType,omitempty"`
ServiceName string `json:"serviceName,omitempty"`
}

View File

@@ -0,0 +1,9 @@
package model
type Zone struct {
ID int `json:"id,omitempty"`
Network string `json:"network"`
IP string `json:"ip"`
Iface string `json:"iface"`
Mac string `json:"mac"`
}