-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoftware.go
19 lines (18 loc) · 1.2 KB
/
software.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package censys
type Software struct {
ComponentUniformResourceIdentifiers string `json:"component_uniform_resource_identifiers"`
Edition string `json:"edition"`
Language string `json:"language"`
Other map[string]string `json:"other"`
Part string `json:"part"`
Product string `json:"product"`
Source string `json:"source"`
SoftwareEdition string `json:"sw_edition"`
TargetHardware string `json:"target_hw"`
TargetSoftware string `json:"target_sw"`
TransportFingerprint TransportFingerprint `json:"transport_fingerprint"`
UniformResourceIdentifier string `json:"uniform_resource_identifier"`
Update string `json:"update"`
Vendor string `json:"vendor"`
Version string `json:"version"`
}