Documentation ¶
Index ¶
- Constants
- Variables
- func RegisterPlugin(p Plugin)
- type Metadata
- type Plugin
- type PluginID
- type Protocol
- type RPCB
- type Service
- type ServiceDHCP
- type ServiceDNS
- type ServiceEcho
- type ServiceFTP
- type ServiceHTTP
- type ServiceHTTPS
- type ServiceIMAP
- type ServiceIMAPS
- type ServiceIPMI
- type ServiceIPSEC
- type ServiceJDWP
- type ServiceKafka
- type ServiceLDAP
- type ServiceLDAPS
- type ServiceMQTT
- type ServiceMSSQL
- type ServiceModbus
- type ServiceMySQL
- type ServiceNTP
- type ServiceNetbios
- type ServiceOpenVPN
- type ServiceOracle
- type ServicePOP3
- type ServicePOP3S
- type ServicePostgreSQL
- type ServiceRDP
- type ServiceRPC
- type ServiceRedis
- type ServiceRsync
- type ServiceRtsp
- type ServiceSMB
- type ServiceSMTP
- type ServiceSMTPS
- type ServiceSNMP
- type ServiceSSH
- type ServiceStun
- type ServiceTelnet
- type ServiceUnknown
- type ServiceVNC
- type Target
Constants ¶
View Source
const ( ProtoDNS = "dns" ProtoDHCP = "dhcp" ProtoEcho = "echo" ProtoFTP = "ftp" ProtoHTTP = "http" ProtoHTTPS = "https" ProtoHTTP2 = "http2" ProtoIMAP = "imap" ProtoIMAPS = "imaps" ProtoIPMI = "ipmi" ProtoIPSEC = "ipsec" ProtoJDWP = "jdwp" ProtoKafka = "kafka" ProtoLDAP = "ldap" ProtoLDAPS = "ldaps" ProtoModbus = "modbus" ProtoMQTT = "mqtt" ProtoMSSQL = "mssql" ProtoMySQL = "mysql" ProtoNetbios = "netbios" ProtoNTP = "ntp" ProtoOracle = "oracle" ProtoOpenVPN = "openvpn" ProtoPOP3 = "pop3" ProtoPOP3S = "pop3s" ProtoPostgreSQL = "postgresql" ProtoRDP = "rdp" ProtoRPC = "rpc" ProtoRedis = "redis" ProtoRedisTLS = "redis" ProtoRsync = "rsync" ProtoRtsp = "rtsp" ProtoSMB = "smb" ProtoSMTP = "smtp" ProtoSMTPS = "smtps" ProtoSNMP = "snmp" ProtoSSH = "ssh" ProtoStun = "stun" ProtoTelnet = "telnet" ProtoVNC = "vnc" ProtoUnknown = "unknown" )
View Source
const TypeService string = "service"
Variables ¶
View Source
var Plugins = make(map[Protocol][]Plugin)
Functions ¶
func RegisterPlugin ¶
func RegisterPlugin(p Plugin)
This function must not be run concurrently. This function should only be run once per plugin.
Types ¶
type PluginID ¶
type PluginID struct {
// contains filtered or unexported fields
}
Used as a key for maps to plugins. i.e.: map[Service] Plugin
func CreatePluginID ¶
type Service ¶ added in v1.0.4
type Service struct { Host string `json:"host,omitempty"` IP string `json:"ip"` Port int `json:"port"` Protocol string `json:"protocol"` TLS bool `json:"tls"` Transport string `json:"transport"` Version string `json:"version,omitempty"` Raw json.RawMessage `json:"metadata"` }
func CreateServiceFrom ¶ added in v1.0.4
type ServiceDHCP ¶ added in v1.0.4
type ServiceDHCP struct {
Option string `json:"option"`
}
func (ServiceDHCP) Type ¶ added in v1.0.4
func (e ServiceDHCP) Type() string
type ServiceDNS ¶ added in v1.0.4
type ServiceDNS struct{}
func (ServiceDNS) Type ¶ added in v1.0.4
func (e ServiceDNS) Type() string
type ServiceEcho ¶ added in v1.1.8
type ServiceEcho struct{}
func (ServiceEcho) Type ¶ added in v1.1.8
func (e ServiceEcho) Type() string
type ServiceFTP ¶ added in v1.0.4
type ServiceFTP struct { Banner string `json:"banner"` AnonymousLogin bool `json:"anonymousLogin"` }
func (ServiceFTP) Type ¶ added in v1.0.4
func (e ServiceFTP) Type() string
type ServiceHTTP ¶ added in v1.0.4
type ServiceHTTP struct { Status string `json:"status"` // e.g. "200 OK" StatusCode int `json:"statusCode"` // e.g. 200 ResponseHeaders http.Header `json:"responseHeaders"` Technologies []string `json:"technologies,omitempty"` }
func (ServiceHTTP) Type ¶ added in v1.0.4
func (e ServiceHTTP) Type() string
type ServiceHTTPS ¶ added in v1.0.4
type ServiceHTTPS struct { Status string `json:"status"` // e.g. "200 OK" StatusCode int `json:"statusCode"` // e.g. 200 ResponseHeaders http.Header `json:"responseHeaders"` Technologies []string `json:"technologies,omitempty"` }
func (ServiceHTTPS) Type ¶ added in v1.0.4
func (e ServiceHTTPS) Type() string
type ServiceIMAP ¶ added in v1.0.4
type ServiceIMAP struct {
Banner string `json:"banner"`
}
func (ServiceIMAP) Type ¶ added in v1.0.4
func (e ServiceIMAP) Type() string
type ServiceIMAPS ¶ added in v1.0.4
type ServiceIMAPS struct {
Banner string `json:"banner"`
}
func (ServiceIMAPS) Type ¶ added in v1.0.4
func (e ServiceIMAPS) Type() string
type ServiceIPMI ¶ added in v1.1.9
type ServiceIPMI struct{}
func (ServiceIPMI) Type ¶ added in v1.1.9
func (e ServiceIPMI) Type() string
type ServiceIPSEC ¶ added in v1.0.4
type ServiceIPSEC struct { ResponderISP string `json:"responderISP"` MessageID string `json:"messageID"` }
func (ServiceIPSEC) Type ¶ added in v1.0.4
func (e ServiceIPSEC) Type() string
type ServiceJDWP ¶ added in v1.1.10
type ServiceJDWP struct { Description string `json:"description"` JdwpMajor int32 `json:"jdwpMajor"` JdwpMinor int32 `json:"jdwpMinor"` VMVersion string `json:"VMVersion"` VMName string `json:"VMName"` }
func (ServiceJDWP) Type ¶ added in v1.1.10
func (e ServiceJDWP) Type() string
type ServiceKafka ¶ added in v1.0.4
type ServiceKafka struct{}
func (ServiceKafka) Type ¶ added in v1.0.4
func (e ServiceKafka) Type() string
type ServiceLDAP ¶ added in v1.0.4
type ServiceLDAP struct{}
func (ServiceLDAP) Type ¶ added in v1.0.4
func (e ServiceLDAP) Type() string
type ServiceLDAPS ¶ added in v1.0.4
type ServiceLDAPS struct{}
func (ServiceLDAPS) Type ¶ added in v1.0.4
func (e ServiceLDAPS) Type() string
type ServiceMQTT ¶ added in v1.0.4
type ServiceMQTT struct{}
func (ServiceMQTT) Type ¶ added in v1.0.4
func (e ServiceMQTT) Type() string
type ServiceMSSQL ¶ added in v1.0.4
type ServiceMSSQL struct { }
func (ServiceMSSQL) Type ¶ added in v1.0.4
func (e ServiceMSSQL) Type() string
type ServiceModbus ¶ added in v1.0.4
type ServiceModbus struct{}
func (ServiceModbus) Type ¶ added in v1.0.4
func (e ServiceModbus) Type() string
type ServiceMySQL ¶ added in v1.0.4
type ServiceMySQL struct { PacketType string `json:"packetType"` // the type of packet returned by the server (i.e. handshake or error) ErrorMessage string `json:"errorMsg"` // error message if the server returns an error packet ErrorCode int `json:"errorCode"` // error code returned if the server returns an error packet }
func (ServiceMySQL) Type ¶ added in v1.0.4
func (e ServiceMySQL) Type() string
type ServiceNTP ¶ added in v1.0.4
type ServiceNTP struct{}
func (ServiceNTP) Type ¶ added in v1.0.4
func (e ServiceNTP) Type() string
type ServiceNetbios ¶ added in v1.0.4
type ServiceNetbios struct {
NetBIOSName string `json:"netBIOSName"`
}
func (ServiceNetbios) Type ¶ added in v1.0.4
func (e ServiceNetbios) Type() string
type ServiceOpenVPN ¶ added in v1.0.4
type ServiceOpenVPN struct{}
func (ServiceOpenVPN) Type ¶ added in v1.0.4
func (e ServiceOpenVPN) Type() string
type ServiceOracle ¶ added in v1.0.4
type ServiceOracle struct {
Info string `json:"info"`
}
func (ServiceOracle) Type ¶ added in v1.0.4
func (e ServiceOracle) Type() string
type ServicePOP3 ¶ added in v1.0.4
type ServicePOP3 struct {
Banner string `json:"banner"`
}
func (ServicePOP3) Type ¶ added in v1.0.4
func (e ServicePOP3) Type() string
type ServicePOP3S ¶ added in v1.0.4
type ServicePOP3S struct {
Banner string `json:"banner"`
}
func (ServicePOP3S) Type ¶ added in v1.0.4
func (e ServicePOP3S) Type() string
type ServicePostgreSQL ¶ added in v1.0.4
type ServicePostgreSQL struct {
AuthRequired bool `json:"authRequired"`
}
func (ServicePostgreSQL) Type ¶ added in v1.0.4
func (e ServicePostgreSQL) Type() string
type ServiceRDP ¶ added in v1.0.4
type ServiceRDP struct { OSFingerprint string `json:"fingerprint,omitempty"` // e.g. Windows Server 2016 or 2019 OSVersion string `json:"osVersion,omitempty"` TargetName string `json:"targetName,omitempty"` NetBIOSComputerName string `json:"netBIOSComputerName,omitempty"` NetBIOSDomainName string `json:"netBIOSDomainName,omitempty"` DNSComputerName string `json:"dnsComputerName,omitempty"` DNSDomainName string `json:"dnsDomainName,omitempty"` ForestName string `json:"forestName,omitempty"` }
func (ServiceRDP) Type ¶ added in v1.0.4
func (e ServiceRDP) Type() string
type ServiceRPC ¶ added in v1.0.4
type ServiceRPC struct {
Entries []RPCB `json:"entries"`
}
func (ServiceRPC) Type ¶ added in v1.0.4
func (e ServiceRPC) Type() string
type ServiceRedis ¶ added in v1.0.4
type ServiceRedis struct {
AuthRequired bool `json:"authRequired:"`
}
func (ServiceRedis) Type ¶ added in v1.0.4
func (e ServiceRedis) Type() string
type ServiceRsync ¶ added in v1.0.4
type ServiceRsync struct{}
func (ServiceRsync) Type ¶ added in v1.0.4
func (e ServiceRsync) Type() string
type ServiceRtsp ¶ added in v1.0.4
type ServiceRtsp struct {
ServerInfo string `json:"serverInfo"`
}
func (ServiceRtsp) Type ¶ added in v1.0.4
func (e ServiceRtsp) Type() string
type ServiceSMB ¶ added in v1.0.4
type ServiceSMB struct { SigningEnabled bool `json:"signingEnabled"` // e.g. Is SMB Signing Enabled? SigningRequired bool `json:"signingRequired"` // e.g. Is SMB Signing Required? OSVersion string `json:"osVersion"` NetBIOSComputerName string `json:"netBIOSComputerName,omitempty"` NetBIOSDomainName string `json:"netBIOSDomainName,omitempty"` DNSComputerName string `json:"dnsComputerName,omitempty"` DNSDomainName string `json:"dnsDomainName,omitempty"` ForestName string `json:"forestName,omitempty"` }
func (ServiceSMB) Type ¶ added in v1.0.4
func (e ServiceSMB) Type() string
type ServiceSMTP ¶ added in v1.0.4
type ServiceSMTP struct { Banner string `json:"banner"` AuthMethods []string `json:"auth_methods"` }
func (ServiceSMTP) Type ¶ added in v1.0.4
func (e ServiceSMTP) Type() string
type ServiceSMTPS ¶ added in v1.0.4
type ServiceSMTPS struct { Banner string `json:"banner"` AuthMethods []string `json:"auth_methods"` }
func (ServiceSMTPS) Type ¶ added in v1.0.4
func (e ServiceSMTPS) Type() string
type ServiceSNMP ¶ added in v1.0.4
type ServiceSNMP struct{}
func (ServiceSNMP) Type ¶ added in v1.0.4
func (e ServiceSNMP) Type() string
type ServiceSSH ¶ added in v1.0.4
type ServiceSSH struct { Banner string `json:"banner"` PasswordAuthEnabled bool `json:"passwordAuthEnabled"` Algo string `json:"algo"` HostKey string `json:"hostKey,omitempty"` HostKeyType string `json:"hostKeyType,omitempty"` HostKeyFingerprint string `json:"hostKeyFingerprint,omitempty"` }
func (ServiceSSH) Type ¶ added in v1.0.4
func (e ServiceSSH) Type() string
type ServiceStun ¶ added in v1.0.4
type ServiceStun struct {
Info string `json:"info"`
}
func (ServiceStun) Type ¶ added in v1.0.4
func (e ServiceStun) Type() string
type ServiceTelnet ¶ added in v1.0.4
type ServiceTelnet struct {
ServerData string `json:"serverData"`
}
func (ServiceTelnet) Type ¶ added in v1.0.4
func (e ServiceTelnet) Type() string
type ServiceUnknown ¶ added in v1.0.4
func (ServiceUnknown) Map ¶ added in v1.0.4
func (e ServiceUnknown) Map() map[string]any
func (ServiceUnknown) Type ¶ added in v1.0.4
func (e ServiceUnknown) Type() string
type ServiceVNC ¶ added in v1.0.4
type ServiceVNC struct{}
func (ServiceVNC) Type ¶ added in v1.0.4
func (e ServiceVNC) Type() string
Click to show internal directories.
Click to hide internal directories.