doggo
What is doggo?
doggo is a modern command-line DNS client (like dig) written in Golang. It outputs information in a neat concise manner and supports protocols like DoH, DoT, DoQ, and DNSCrypt as well. To learn more about the doggo scanner itself visit doggo GitHub.
Deployment
The doggo chart can be deployed via helm:
# Install HelmChart (use -n to configure another namespace)
helm upgrade --install doggo secureCodeBox/doggo
Scanner Configuration
The following security scan configuration example are based on the doggo User Guide, please take a look at the original documentation for more configuration examples.
- Do a simple DNS Lookup:
doggo example.com
- Query MX records for github.com using 9.9.9.9 resolver:
doggo MX github.com @9.9.9.9
Requirements
Kubernetes: >=v1.11.0-0
Values
Key | Type | Default | Description |
---|---|---|---|
cascadingRules.enabled | bool | false | Enables or disables the installation of the default cascading rules for this scanner |
imagePullSecrets | list | [] | Define imagePullSecrets when a private registry is used (see: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/) |
parser.affinity | object | {} | Optional affinity settings that control how the parser job is scheduled (see: https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/) |
parser.env | list | [] | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
parser.image.pullPolicy | string | "IfNotPresent" | Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images |
parser.image.repository | string | "docker.io/securecodebox/parser-doggo" | Parser image repository |
parser.image.tag | string | defaults to the charts version | Parser image tag |
parser.resources | object | { requests: { cpu: "200m", memory: "100Mi" }, limits: { cpu: "400m", memory: "200Mi" } } | Optional resources lets you control resource limits and requests for the parser container. See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ |
parser.scopeLimiterAliases | object | {} | Optional finding aliases to be used in the scopeLimiter. |
parser.tolerations | list | [] | Optional tolerations settings that control how the parser job is scheduled (see: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) |
parser.ttlSecondsAfterFinished | string | nil | seconds after which the Kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
scanner.activeDeadlineSeconds | string | nil | There are situations where you want to fail a scan Job after some amount of time. To do so, set activeDeadlineSeconds to define an active deadline (in seconds) when considering a scan Job as failed. (see: https://kubernetes.io/docs/concepts/workloads/controllers/job/#job-termination-and-cleanup) |
scanner.affinity | object | {} | Optional affinity settings that control how the scanner job is scheduled (see: https://kubernetes.io/docs/tasks/configure-pod-container/assign-pods-nodes-using-node-affinity/) |
scanner.backoffLimit | int | 3 | There are situations where you want to fail a scan Job after some amount of retries due to a logical error in configuration etc. To do so, set backoffLimit to specify the number of retries before considering a scan Job as failed. (see: https://kubernetes.io/docs/concepts/workloads/controllers/job/#pod-backoff-failure-policy) |
scanner.env | list | [] | Optional environment variables mapped into each scanJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
scanner.extraContainers | list | [] | Optional additional Containers started with each scanJob (see: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) |
scanner.extraVolumeMounts | list | [] | Optional VolumeMounts mapped into each scanJob (see: https://kubernetes.io/docs/concepts/storage/volumes/) |
scanner.extraVolumes | list | [] | Optional Volumes mapped into each scanJob (see: https://kubernetes.io/docs/concepts/storage/volumes/) |
scanner.image.pullPolicy | string | "IfNotPresent" | Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images |
scanner.image.repository | string | "docker.io/securecodebox/scanner-doggo" | Container Image to run the scan |
scanner.image.tag | string | nil | defaults to the charts appVersion |
scanner.nameAppend | string | nil | append a string to the default scantype name. |
scanner.podSecurityContext | object | {} | Optional securityContext set on scanner pod (see: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) |
scanner.resources | object | {} | CPU/memory resource requests/limits (see: https://kubernetes.io/docs/tasks/configure-pod-container/assign-memory-resource/, https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/) |
scanner.securityContext | object | {"allowPrivilegeEscalation":false,"capabilities":{"drop":["all"]},"privileged":false,"readOnlyRootFilesystem":true,"runAsNonRoot":true} | Optional securityContext set on scanner container (see: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) |
scanner.securityContext.allowPrivilegeEscalation | bool | false | Ensure that users privileges cannot be escalated |
scanner.securityContext.capabilities.drop[0] | string | "all" | This drops all linux privileges from the container. |
scanner.securityContext.privileged | bool | false | Ensures that the scanner container is not run in privileged mode |
scanner.securityContext.readOnlyRootFilesystem | bool | true | Prevents write access to the containers file system |
scanner.securityContext.runAsNonRoot | bool | true | Enforces that the scanner image is run as a non root user |
scanner.suspend | bool | false | if set to true the scan job will be suspended after creation. You can then resume the job using kubectl resume <jobname> or using a job scheduler like kueue |
scanner.tolerations | list | [] | Optional tolerations settings that control how the scanner job is scheduled (see: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) |
scanner.ttlSecondsAfterFinished | string | nil | seconds after which the Kubernetes job for the scanner will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
License
Code of secureCodeBox is licensed under the Apache License 2.0.
CPU architectures
The scanner is currently supported for these CPU architectures:
- linux/amd64
Examples
example.com
- Scan
- Findings
# SPDX-FileCopyrightText: the secureCodeBox authors
#
# SPDX-License-Identifier: Apache-2.0
apiVersion: "execution.securecodebox.io/v1"
kind: Scan
metadata:
name: "doggo-example.com"
spec:
scanType: "doggo"
parameters:
# Target domain of the finding
- "example.com"
# Check domain/zone for typical dns records
- "A"
- "AAAA"
- "NS"
- "CNAME"
- "TXT"
- "MX"
- "SRV"
[
{
"name": "DNS Zone: example.com. | Type: A",
"description": "DNS record type A found for zone example.com. with address \"93.184.216.34\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "A",
"doggy_dns_address": "93.184.216.34",
"doggy_dns_status": "",
"doggy_dns_rtt": "33ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "3ad05381-3320-49ef-82d9-30f96c1455cd",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: AAAA",
"description": "DNS record type AAAA found for zone example.com. with address \"2606:2800:220:1:248:1893:25c8:1946\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "AAAA",
"doggy_dns_address": "2606:2800:220:1:248:1893:25c8:1946",
"doggy_dns_status": "",
"doggy_dns_rtt": "41ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "7b99197b-1688-4444-ad2d-4f845aaffa95",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: NS",
"description": "DNS record type NS found for zone example.com. with address \"a.iana-servers.net.\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "NS",
"doggy_dns_address": "a.iana-servers.net.",
"doggy_dns_status": "",
"doggy_dns_rtt": "38ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "e60b8566-527e-4000-8cde-9ab4889af072",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: NS",
"description": "DNS record type NS found for zone example.com. with address \"b.iana-servers.net.\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "NS",
"doggy_dns_address": "b.iana-servers.net.",
"doggy_dns_status": "",
"doggy_dns_rtt": "38ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "a4d0dd2d-b8d9-4045-a140-595f910fe89b",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: TXT",
"description": "DNS record type TXT found for zone example.com. with address \"\"v=spf1 -all\"\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "TXT",
"doggy_dns_address": "\"v=spf1 -all\"",
"doggy_dns_status": "",
"doggy_dns_rtt": "128ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "774b974c-147e-4c45-a547-a91ca0dff38f",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: TXT",
"description": "DNS record type TXT found for zone example.com. with address \"\"wgyf8z8cgvm2qmxpnbnldrcltvk4xqfn\"\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "TXT",
"doggy_dns_address": "\"wgyf8z8cgvm2qmxpnbnldrcltvk4xqfn\"",
"doggy_dns_status": "",
"doggy_dns_rtt": "128ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "62ec8af2-e719-4dc4-a724-c5906a5a34c0",
"parsed_at": "2023-03-17T12:53:18.805Z"
},
{
"name": "DNS Zone: example.com. | Type: MX",
"description": "DNS record type MX found for zone example.com. with address \"0 .\".",
"category": "DNS Information",
"location": "example.com",
"osi_layer": "NETWORK",
"severity": "INFORMATIONAL",
"attributes": {
"doggy_dns_type": "MX",
"doggy_dns_address": "0 .",
"doggy_dns_status": "",
"doggy_dns_rtt": "129ms",
"doggy_dns_nameserver": "10.96.0.10:53"
},
"id": "b2357556-fc4f-449d-95d9-2ad89b52f313",
"parsed_at": "2023-03-17T12:53:18.805Z"
}
]