EndpointDomain matches domains.
| 27 | |
| 28 | // EndpointDomain matches domains. |
| 29 | type EndpointDomain struct { |
| 30 | EndpointBase |
| 31 | |
| 32 | OriginalValue string |
| 33 | Domain string |
| 34 | DomainZone string |
| 35 | MatchType uint8 |
| 36 | } |
| 37 | |
| 38 | func (ep *EndpointDomain) check(entity *intel.Entity, domain string) (EPResult, Reason) { |
| 39 | result, reason := ep.match(ep, entity, ep.OriginalValue, "domain matches") |
nothing calls this directly
no outgoing calls
no test coverage detected