Browse Source

MIT license; normalized README

master
boB Rudis 4 years ago
parent
commit
2b80cba50c
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 3
      .Rbuildignore
  2. 19
      DESCRIPTION
  3. 2
      LICENSE
  4. 21
      LICENSE.md
  5. 2
      R/clandnstine-package.R
  6. 67
      README.Rmd
  7. 247
      README.md
  8. 3
      man/clandnstine.Rd
  9. 3
      man/doh_post.Rd
  10. 7
      man/gdns_context.Rd
  11. 5
      man/gdns_get_address.Rd
  12. 29
      man/gdns_get_hosts.Rd
  13. 29
      man/gdns_get_resolution_type.Rd
  14. 29
      man/gdns_get_resolvconf.Rd
  15. 29
      man/gdns_get_root_servers.Rd
  16. 29
      man/gdns_get_timeout.Rd
  17. 29
      man/gdns_get_tls_ca_file.Rd
  18. 29
      man/gdns_get_tls_ca_path.Rd
  19. 29
      man/gdns_get_transports.Rd
  20. 16
      man/gdns_query.Rd
  21. 31
      man/gdns_set_hosts.Rd
  22. 29
      man/gdns_set_resolution_type.Rd
  23. 29
      man/gdns_set_round_robin_upstreams.Rd
  24. 29
      man/gdns_set_timeout.Rd
  25. 29
      man/gdns_set_tls_ca_file.Rd
  26. 29
      man/gdns_set_tls_ca_path.Rd
  27. 29
      man/gdns_update_resolvers.Rd

3
.Rbuildignore

@ -13,4 +13,5 @@
^tmp$ ^tmp$
^notes$ ^notes$
^\.gitlab-ci\.yml$ ^\.gitlab-ci\.yml$
^CONDUCT\.md$ ^CONDUCT\.md$
^LICENSE\.md$

19
DESCRIPTION

@ -1,19 +1,20 @@
Package: clandnstine Package: clandnstine
Type: Package Type: Package
Title: Perform Secure-by-default 'DNS' Queries Title: Perform Secure-by-default or Woefully Insecure 'DNS' Queries
Version: 0.2.1 Version: 0.3.0
Date: 2019-05-26 Date: 2020-02-24
Authors@R: c( Authors@R: c(
person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre"), person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-5670-2640")) comment = c(ORCID = "0000-0001-5670-2640"))
) )
Maintainer: Bob Rudis <bob@rud.is> Maintainer: Bob Rudis <bob@rud.is>
Description: Perform and process 'DNS over TLS' and 'DNS over HTTPS' queries. Description: Perform and process DNS over TLS, DNS over HTTPS, or Just Plain DNS queries using
the getdns (<https://getdnsapi.net/>) C library.
SystemRequirements: C++11; libgetdns v1.5.1 or higher SystemRequirements: C++11; libgetdns v1.5.1 or higher
URL: https://gitlab.com/hrbrmstr/clandnstine URL: https://git.rud.is/hrbrmstr/clandnstine
BugReports: https://gitlab.com/hrbrmstr/clandnstine/issues BugReports: https://git.rud.is/hrbrmstr/clandnstine/issues
Encoding: UTF-8 Encoding: UTF-8
License: AGPL License: MIT + file LICENSE
Suggests: Suggests:
testthat, testthat,
covr covr
@ -27,6 +28,6 @@ Imports:
httr, httr,
R6 R6
Roxygen: list(markdown = TRUE) Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1 RoxygenNote: 7.0.2
LinkingTo: LinkingTo:
Rcpp Rcpp

2
LICENSE

@ -0,0 +1,2 @@
YEAR: 2020
COPYRIGHT HOLDER: Bob Rudis

21
LICENSE.md

@ -0,0 +1,21 @@
# MIT License
Copyright (c) 2020 Bob Rudis
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2
R/clandnstine-package.R

@ -1,4 +1,4 @@
#' Perform Secure-by-Default 'DNS' Queries #' Perform Secure-by-default or Woefully Insecure 'DNS' Queries
#' #'
#' Methods are provided to query 'Domain Name System' ('DNS') stub #' Methods are provided to query 'Domain Name System' ('DNS') stub
#' and recursive resolvers for all 'DNS' resource record types using 'UDP', #' and recursive resolvers for all 'DNS' resource record types using 'UDP',

67
README.Rmd

@ -1,24 +1,17 @@
--- ---
output: rmarkdown::github_document output: rmarkdown::github_document
editor_options:
chunk_output_type: console
--- ---
```{r pkg-knitr-opts, include=FALSE} ```{r pkg-knitr-opts, include=FALSE}
knitr::opts_chunk$set(collapse=TRUE, fig.retina=2, message=FALSE, warning=FALSE) hrbrpkghelpr::global_opts()
options(width=120)
``` ```
[![Travis-CI Build Status](https://travis-ci.org/hrbrmstr/clandnstine.svg?branch=master)](https://travis-ci.org/hrbrmstr/clandnstine) ```{r badges, results='asis', echo=FALSE, cache=FALSE}
[![Coverage Status](https://codecov.io/gh/hrbrmstr/clandnstine/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/clandnstine) hrbrpkghelpr::stinking_badges()
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/clandnstine)](https://cran.r-project.org/package=clandnstine) ```
# clandnstine
Perform Secure-by-default 'DNS' Queries
## Description
Perform and process 'DNS over TLS' and 'DNS over HTTPS' queries. ```{r description, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::yank_title_and_description()
```
## NOTE ## NOTE
@ -26,9 +19,9 @@ Requires [`getdns`](https://getdnsapi.net/) to be installed and available for co
- Use `brew install getdns` on macOS - Use `brew install getdns` on macOS
- Install `libgetdns-dev` or `libgetdns-devel` on debian/ubuntu (version 1.5.1 or higher) - Install `libgetdns-dev` or `libgetdns-devel` on debian/ubuntu (version 1.5.1 or higher)
- (Nothing to see here Windows folks stuck in a backwards ecosysem) - Windows support is likely in 2020 since getdns moved to a cmake build system with a primary intent to make Windows a first-class citizen.
You're going to need version 1.5.1 of `getdns` for this package to install. You're going to need version 1.5.1+ of `getdns` for this package to install.
I've gotten this running on macOS and Ubuntu 16.04. For the latter I had to ensure `libidn2-0-dev` and I've gotten this running on macOS and Ubuntu 16.04. For the latter I had to ensure `libidn2-0-dev` and
`libunbound-dev` were installed then had to grab the 1.5.1 tarball (e.g. `aria2c https://getdnsapi.net/releases/getdns-1-5-1/getdns-1.5.1.tar.gz`), extract it and `config`/`make`/`make install` (plus `ldconfig` after). `libunbound-dev` were installed then had to grab the 1.5.1 tarball (e.g. `aria2c https://getdnsapi.net/releases/getdns-1-5-1/getdns-1.5.1.tar.gz`), extract it and `config`/`make`/`make install` (plus `ldconfig` after).
@ -85,44 +78,14 @@ It's stupid slow, consumes more CPU and bandwidth but forces adversaries to work
The following functions are implemented: The following functions are implemented:
### Utility ```{r ingredients, results='asis', echo=FALSE, cache=FALSE}
hrbrpkghelpr::describe_ingredients()
- `to_inaddr_arpa`: Convert a vector of IPv4 addresses to in-addr.arpa format ```
### DNS over HTTPS
- `doh_post`: Make a DoH Request (POST/wireformat)
- `doh_servers`: Built-in list of DoH servers.
- `tidy.gdns_doh_response`: Tidy a DoH POST response
### DNS over TLS
- `gdns_query`: Arbitrary DNS queries
- `gdns_context`: Create a gdns DNS over TLS context and populate it with a resolver for use in resolution functions
- `gdns_get_address`: Resolve a host to an addrss
- `gdns_get_resolution_type`: Get the current resolution type setting
- `gdns_get_timeout`: Retreive the number of milliseconds to wait for request to return
- `gdns_get_tls_ca_file`: Retreive the file location with CA certificates for verification purposes
- `gdns_get_tls_ca_path`: Retreive the value with which the context's upstream recursive servers and suffixes were initialized
- `gdns_get_transports`: Retreive what transports are used for DNS lookups.
- `gdns_lib_version`: Return gdns library version
- `gdns_set_hosts`: Initialized the context's local names namespace with values from the given hosts file.
- `gdns_set_resolution_type`: Specify whether DNS queries are performed with recursive lookups or as a stub resolver
- `gdns_set_round_robin_upstreams`: Set/unset context to round robin queries over the available upstreams when resolving with the stub resolution type.
- `gdns_set_timeout`: Specify the number of milliseconds to wait for request to return
- `gdns_set_tls_ca_file`: Specify the file with CA certificates for verification purposes
- `gdns_set_tls_ca_path`: Specify where the location for CA certificates for verification purposes are located
- `gdns_set_transports`: Specifies what transport(s) is/ar used for DNS lookups
- `gdns_update_resolvers`: Changes the list of resolvers in an already created context for use in resolution functions
## Installation ## Installation
```{r install-ex, eval=FALSE} ```{r install-ex, results='asis', echo=FALSE, cache=FALSE}
devtools::install_git("https://git.sr.ht/~hrbrmstr/clandnstine") hrbrpkghelpr::install_block()
# or
devtools::install_gitlab("hrbrmstr/clandnstine.git")
# or
devtools::install_github("hrbrmstr/clandnstine")
``` ```
## Usage ## Usage
@ -209,5 +172,5 @@ cloc::cloc_pkg_md()
## Code of Conduct ## Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). Please note that this project is released with a Contributor Code of Conduct.
By participating in this project you agree to abide by its terms. By participating in this project you agree to abide by its terms.

247
README.md

@ -1,17 +1,27 @@
[![Travis-CI Build [![Project Status: Active – The project has reached a stable, usable
state and is being actively
developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![Signed
by](https://img.shields.io/badge/Keybase-Verified-brightgreen.svg)](https://keybase.io/hrbrmstr)
![Signed commit
%](https://img.shields.io/badge/Signed_Commits-96%25-lightgrey.svg)
[![Linux build
Status](https://travis-ci.org/hrbrmstr/clandnstine.svg?branch=master)](https://travis-ci.org/hrbrmstr/clandnstine) Status](https://travis-ci.org/hrbrmstr/clandnstine.svg?branch=master)](https://travis-ci.org/hrbrmstr/clandnstine)
[![Coverage [![Coverage
Status](https://codecov.io/gh/hrbrmstr/clandnstine/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/clandnstine) Status](https://codecov.io/gh/hrbrmstr/clandnstine/branch/master/graph/badge.svg)](https://codecov.io/gh/hrbrmstr/clandnstine)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/clandnstine)](https://cran.r-project.org/package=clandnstine) ![Minimal R
Version](https://img.shields.io/badge/R%3E%3D-3.2.0-blue.svg)
![License](https://img.shields.io/badge/License-MIT-blue.svg)
# clandnstine # clandnstine
Perform Secure-by-default ‘DNS’ Queries Perform Secure-by-default or Woefully Insecure ‘DNS’ Queries
## Description ## Description
Perform and process ‘DNS over TLS’ and ‘DNS over HTTPS’ queries. Perform and process DNS over TLS, DNS over HTTPS, or Just Plain DNS
queries using the getdns (<https://getdnsapi.net/>) C library.
## NOTE ## NOTE
@ -21,14 +31,16 @@ available for compilation (no guard rails setup yet):
- Use `brew install getdns` on macOS - Use `brew install getdns` on macOS
- Install `libgetdns-dev` or `libgetdns-devel` on debian/ubuntu - Install `libgetdns-dev` or `libgetdns-devel` on debian/ubuntu
(version 1.5.1 or higher) (version 1.5.1 or higher)
- (Nothing to see here Windows folks stuck in a backwards ecosysem) - Windows support is likely in 2020 since getdns moved to a cmake
build system with a primary intent to make Windows a first-class
citizen.
You’re going to need version 1.5.1 of `getdns` for this package to You’re going to need version 1.5.1+ of `getdns` for this package to
install. install.
I’ve gotten this running on macOS and Ubuntu 16.04. For the latter I had I’ve gotten this running on macOS and Ubuntu 16.04. For the latter I had
to ensure `libidn2-0-dev` and `libunbound-dev` were installed then had to ensure `libidn2-0-dev` and `libunbound-dev` were installed then had
to grab the 1.5.1 tarball (e.g. `aria2c to grab the 1.5.1 tarball (e.g. `aria2c
https://getdnsapi.net/releases/getdns-1-5-1/getdns-1.5.1.tar.gz`), https://getdnsapi.net/releases/getdns-1-5-1/getdns-1.5.1.tar.gz`),
extract it and `config`/`make`/`make install` (plus `ldconfig` after). extract it and `config`/`make`/`make install` (plus `ldconfig` after).
@ -109,24 +121,18 @@ to work pretty hard to try to figure out what you’re looking for.
The following functions are implemented: The following functions are implemented:
### Utility - `check_is_xptr`: Test whether an object is an external pointer
- `to_inaddr_arpa`: Convert a vector of IPv4 addresses to in-addr.arpa
format
### DNS over HTTPS
- `doh_post`: Make a DoH Request (POST/wireformat) - `doh_post`: Make a DoH Request (POST/wireformat)
- `doh_servers`: Built-in list of DoH servers. - `doh_servers`: Built-in list of DoH Servers
- `tidy.gdns_doh_response`: Tidy a DoH POST response
### DNS over TLS
- `gdns_query`: Arbitrary DNS queries
- `gdns_context`: Create a gdns DNS over TLS context and populate it - `gdns_context`: Create a gdns DNS over TLS context and populate it
with a resolver for use in resolution functions with a resolver for use in resolution functions
- `gdns_get_address`: Resolve a host to an addrss - `gdns_get_address`: Resolve a host to an addrss
- `gdns_get_hosts`: Retreive the value of the localnames namespace
- `gdns_get_resolution_type`: Get the current resolution type setting - `gdns_get_resolution_type`: Get the current resolution type setting
- `gdns_get_resolvconf`: Retreive the value with which the context’s
upstream recursive servers and suffixes were initialized
- `gdns_get_root_servers`: Retrieve the list of addresses in use for
looking up top-level domains in use by the context.
- `gdns_get_timeout`: Retreive the number of milliseconds to wait for - `gdns_get_timeout`: Retreive the number of milliseconds to wait for
request to return request to return
- `gdns_get_tls_ca_file`: Retreive the file location with CA - `gdns_get_tls_ca_file`: Retreive the file location with CA
@ -136,6 +142,7 @@ The following functions are implemented:
- `gdns_get_transports`: Retreive what transports are used for DNS - `gdns_get_transports`: Retreive what transports are used for DNS
lookups. lookups.
- `gdns_lib_version`: Return gdns library version - `gdns_lib_version`: Return gdns library version
- `gdns_query`: Arbitrary DNS queries
- `gdns_set_hosts`: Initialized the context’s local names namespace - `gdns_set_hosts`: Initialized the context’s local names namespace
with values from the given hosts file. with values from the given hosts file.
- `gdns_set_resolution_type`: Specify whether DNS queries are - `gdns_set_resolution_type`: Specify whether DNS queries are
@ -153,17 +160,41 @@ The following functions are implemented:
DNS lookups DNS lookups
- `gdns_update_resolvers`: Changes the list of resolvers in an already - `gdns_update_resolvers`: Changes the list of resolvers in an already
created context for use in resolution functions created context for use in resolution functions
- `int_gdns_context`: Internal version of gdns\_context
- `int_gdns_get_root_servers`: Retrieve the list of addresses in use
for looking up top-level domains in use by the context.
- `int_gdns_set_hosts`: Internal version of gdns\_set\_hosts()
- `int_gdns_set_resolution_type`: Internal version of
gdns\_set\_resolution\_type()
- `int_gdns_set_transports`: Internal version of set\_transports()
- `int_gdns_update_resolvers`: Internal version of
gdns\_update\_resolvers
- `is_gctx`: Test whether an object is a gctx context
- `is_null_xptr_`: Test whether an external pointer is null
- `print.gctx`: Printer for gdns contexts
- `print.gdns_response`: Printer for gdns\_response objects
- `tidy.gdns_doh_response`: Tidy a DoH POST response
- `tidy`: Tidy generic
- `to_inaddr_arpa`: Convert a vector of IPv4 addresses to in-addr.arpa
format
## Installation ## Installation
``` r ``` r
devtools::install_git("https://git.sr.ht/~hrbrmstr/clandnstine") install.packages("clandnstine", repos = "https://cinc.rud.is")
# or
devtools::install_gitlab("hrbrmstr/clandnstine.git")
# or # or
devtools::install_github("hrbrmstr/clandnstine") remotes::install_git("https://git.rud.is/hrbrmstr/clandnstine.git")
# or
remotes::install_git("https://git.sr.ht/~hrbrmstr/clandnstine")
# or
remotes::install_gitlab("hrbrmstr/clandnstine")
# or
remotes::install_github("hrbrmstr/clandnstine")
``` ```
NOTE: To use the ‘remotes’ install options you will need to have the
[{remotes} package](https://github.com/r-lib/remotes) installed.
## Usage ## Usage
``` r ``` r
@ -171,40 +202,40 @@ library(clandnstine)
# current version # current version
packageVersion("clandnstine") packageVersion("clandnstine")
## [1] '0.2.0' ## [1] '0.3.0'
``` ```
### Get an address(es) from a name: ### Get an address(es) from a name:
``` r ``` r
gdns_lib_version() gdns_lib_version()
## [1] "1.5.1" ## [1] "1.5.2"
(x <- gdns_context()) (x <- gdns_context())
## <gdns v1.5.1 resolver context; resolvers: [9.9.9.9]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [9.9.9.9]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub>
(x <- gdns_context("1.1.1.1")) (x <- gdns_context("1.1.1.1"))
## <gdns v1.5.1 resolver context; resolvers: [1.1.1.1]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [1.1.1.1]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub>
(x <- gdns_context(c("8.8.8.8", "1.1.1.1", "9.9.9.9"))) (x <- gdns_context(c("8.8.8.8", "1.1.1.1", "9.9.9.9")))
## <gdns v1.5.1 resolver context; resolvers: [8.8.8.8, 1.1.1.1, 9.9.9.9]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [8.8.8.8, 1.1.1.1, 9.9.9.9]; timeout: 5,000 ms; lookup transport(s): [tls]; resolution type: stub>
(gdns_set_timeout(x, 2000)) (gdns_set_timeout(x, 2000))
## <gdns v1.5.1 resolver context; resolvers: [8.8.8.8, 1.1.1.1, 9.9.9.9]; timeout: 2,000 ms; lookup transport(s): [tls]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [8.8.8.8, 1.1.1.1, 9.9.9.9]; timeout: 2,000 ms; lookup transport(s): [tls]; resolution type: stub>
(gdns_update_resolvers(x, "1.1.1.1")) (gdns_update_resolvers(x, "1.1.1.1"))
## <gdns v1.5.1 resolver context; resolvers: [1.1.1.1]; timeout: 2,000 ms; lookup transport(s): [tls]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [1.1.1.1]; timeout: 2,000 ms; lookup transport(s): [tls]; resolution type: stub>
(gdns_set_transports(x, c("udp", "tls", "tcp"))) (gdns_set_transports(x, c("udp", "tls", "tcp")))
## <gdns v1.5.1 resolver context; resolvers: [1.1.1.1]; timeout: 2,000 ms; lookup transport(s): [udp, tls, tcp]; resolution type: stub> ## <gdns v1.5.2 resolver context; resolvers: [1.1.1.1]; timeout: 2,000 ms; lookup transport(s): [udp, tls, tcp]; resolution type: stub>
(gdns_get_address(x, "rud.is")) (gdns_get_address(x, "rud.is"))
## [1] "2602:ff16:3::4dfb:9ac5" "172.93.49.183" ## [1] "2602:ff16:3::4dfb:9ac5" "172.93.49.183"
(gdns_get_address(x, "yahoo.com")) (gdns_get_address(x, "yahoo.com"))
## [1] "2001:4998:44:41d::4" "2001:4998:58:1836::10" "2001:4998:58:1836::11" "2001:4998:c:1023::4" ## [1] "2001:4998:c:1023::5" "2001:4998:44:41d::3" "2001:4998:44:41d::4" "2001:4998:58:1836::10"
## [5] "2001:4998:c:1023::5" "2001:4998:44:41d::3" "98.138.219.231" "98.138.219.232" ## [5] "2001:4998:58:1836::11" "2001:4998:c:1023::4" "72.30.35.10" "98.137.246.7"
## [9] "72.30.35.9" "72.30.35.10" "98.137.246.7" "98.137.246.8" ## [9] "98.137.246.8" "98.138.219.231" "98.138.219.232" "72.30.35.9"
(gdns_get_address(x, "yahoo.commmm")) (gdns_get_address(x, "yahoo.commmm"))
## character(0) ## character(0)
@ -217,22 +248,25 @@ str(leno <- gdns_query(x, "lenovo.com", "txt"), 1)
## List of 5 ## List of 5
## $ answer_type : int 800 ## $ answer_type : int 800
## $ canonical_name: chr "lenovo.com." ## $ canonical_name: chr "lenovo.com."
## $ replies_full : int [1, 1:762] 81 128 129 128 0 1 0 10 0 0 ... ## $ replies_full : int [1, 1:1029] 87 136 129 128 0 1 0 13 0 0 ...
## $ replies_tree :'data.frame': 1 obs. of 7 variables: ## $ replies_tree :'data.frame': 1 obs. of 7 variables:
## $ status : int 900 ## $ status : int 900
## - attr(*, "class")= chr [1:2] "gdns_response" "list" ## - attr(*, "class")= chr [1:2] "gdns_response" "list"
sort(unlist(leno$replies_tree$answer[[1]]$rdata$txt_strings)) sort(unlist(leno$replies_tree$answer[[1]]$rdata$txt_strings))
## [1] "a82c74b37aa84e7c8580f0e32f4d795d" ## [1] "a82c74b37aa84e7c8580f0e32f4d795d"
## [2] "ece42d7743c84d6889abda7011fe6f53" ## [2] "adobe-idp-site-verification=5540c96206f5fe2df921a6c596ea9fb3d7e418d3eddb598c29935cc03163805b"
## [3] "facebook-domain-verification=1r2am7c2bhzrxpqyt0mda0djoquqsi" ## [3] "ece42d7743c84d6889abda7011fe6f53"
## [4] "google-site-verification=nGgukcp60rC-gFxMOJw1NHH0B4VnSchRrlfWV-He_tE" ## [4] "facebook-domain-verification=1r2am7c2bhzrxpqyt0mda0djoquqsi"
## [5] "google-site-verification=sHIlSlj0U6UnCDkfHp1AolWgVEvDjWvc0TR4KaysD2c" ## [5] "google-site-verification=hxNSoF46anzjUtyFgpRVpzshTkYClFBJ7OAT3Dz6440"
## [6] "google-site-verification=VxW_e6r_Ka7A518qfX2MmIMHGnkpGbnACsjSxKFCBw0" ## [6] "google-site-verification=nGgukcp60rC-gFxMOJw1NHH0B4VnSchRrlfWV-He_tE"
## [7] "iHzQJvsKnyGP2Nm2qBgL3fyBJ0CC9z4GkY/flfk4EzLP8lPxWHDDPKqZWm1TkeF5kEIL+NotYOF1wo7JtUDXXw==" ## [7] "google-site-verification=sHIlSlj0U6UnCDkfHp1AolWgVEvDjWvc0TR4KaysD2c"
## [8] "qh7hdmqm4lzs85p704d6wsybgrpsly0j" ## [8] "google-site-verification=VxW_e6r_Ka7A518qfX2MmIMHGnkpGbnACsjSxKFCBw0"
## [9] "v=spf1 include:spf.messagelabs.com include:_netblocks.eloqua.com ~all" ## [9] "google-site-verification=vyPsFusgDLeWzvnapRyBbiva5dXJ1JIJjcNbGuO52-k"
## [10] "Visit www.lenovo.com/think for information about Lenovo products and services" ## [10] "iHzQJvsKnyGP2Nm2qBgL3fyBJ0CC9z4GkY/flfk4EzLP8lPxWHDDPKqZWm1TkeF5kEIL+NotYOF1wo7JtUDXXw=="
## [11] "qh7hdmqm4lzs85p704d6wsybgrpsly0j"
## [12] "v=spf1 include:spf.messagelabs.com include:_netblocks.eloqua.com ~all"
## [13] "Visit www.lenovo.com/think for information about Lenovo products and services"
``` ```
Yep. Advertising even in DNS `TXT` records (see item number 8). Yep. Advertising even in DNS `TXT` records (see item number 8).
@ -248,17 +282,17 @@ str(doh_post("rud.is")$answer)
## ..$ ipv4_address: chr "172.93.49.183" ## ..$ ipv4_address: chr "172.93.49.183"
## ..$ rdata_raw :List of 1 ## ..$ rdata_raw :List of 1
## .. ..$ : int 172 93 49 183 ## .. ..$ : int 172 93 49 183
## $ ttl : int 685 ## $ ttl : int 3600
## $ type : int 1 ## $ type : int 1
``` ```
``` r ``` r
a <- doh_post("apple.com", "A") a <- doh_post("apple.com", "A")
tidy(a) tidy(a)
## name class type ttl ipv4_address rdata_raw ## name class type ttl ipv4_address rdata_raw
## 1 apple.com. 1 1 738 17.142.160.59 11, 8e, a0, 3b ## 1 apple.com. 1 1 1515 17.178.96.59 11, b2, 60, 3b
## 2 apple.com. 1 1 738 17.178.96.59 11, b2, 60, 3b ## 2 apple.com. 1 1 1515 17.142.160.59 11, 8e, a0, 3b
## 3 apple.com. 1 1 738 17.172.224.47 11, ac, e0, 2f ## 3 apple.com. 1 1 1515 17.172.224.47 11, ac, e0, 2f
aaaa <- doh_post("rud.is", "AAAA") aaaa <- doh_post("rud.is", "AAAA")
tidy(aaaa) tidy(aaaa)
@ -268,72 +302,81 @@ tidy(aaaa)
mx <- doh_post("rud.is", "MX") mx <- doh_post("rud.is", "MX")
tidy(mx) tidy(mx)
## name class type ttl exchange preference ## name class type ttl exchange preference
## 1 rud.is. 1 15 43200 alt2.aspmx.l.google.com. 30 ## 1 rud.is. 1 15 43200 aspmx.l.google.com. 10
## 2 rud.is. 1 15 43200 aspmx.l.google.com. 10 ## 2 rud.is. 1 15 43200 aspmx2.googlemail.com. 40
## 3 rud.is. 1 15 43200 aspmx2.googlemail.com. 40 ## 3 rud.is. 1 15 43200 alt2.aspmx.l.google.com. 30
## 4 rud.is. 1 15 43200 alt1.aspmx.l.google.com. 20 ## 4 rud.is. 1 15 43200 alt1.aspmx.l.google.com. 20
## rdata_raw ## rdata_raw
## 1 00, 1e, 04, 61, 6c, 74, 32, 05, 61, 73, 70, 6d, 78, 01, 6c, 06, 67, 6f, 6f, 67, 6c, 65, 03, 63, 6f, 6d, 00 ## 1 00, 0a, 05, 61, 73, 70, 6d, 78, 01, 6c, 06, 67, 6f, 6f, 67, 6c, 65, 03, 63, 6f, 6d, 00
## 2 00, 0a, 05, 61, 73, 70, 6d, 78, 01, 6c, 06, 67, 6f, 6f, 67, 6c, 65, 03, 63, 6f, 6d, 00 ## 2 00, 28, 06, 61, 73, 70, 6d, 78, 32, 0a, 67, 6f, 6f, 67, 6c, 65, 6d, 61, 69, 6c, c0, 35
## 3 00, 28, 06, 61, 73, 70, 6d, 78, 32, 0a, 67, 6f, 6f, 67, 6c, 65, 6d, 61, 69, 6c, 03, 63, 6f, 6d, 00 ## 3 00, 1e, 04, 61, 6c, 74, 32, c0, 26
## 4 00, 14, 04, 61, 6c, 74, 31, 05, 61, 73, 70, 6d, 78, 01, 6c, 06, 67, 6f, 6f, 67, 6c, 65, 03, 63, 6f, 6d, 00 ## 4 00, 14, 04, 61, 6c, 74, 31, c0, 26
txt <- doh_post("lenovo.com", "TXT") txt <- doh_post("lenovo.com", "TXT")
tidy(txt) tidy(txt)
## name class type ttl ## name class type ttl
## 1 lenovo.com. 1 16 4990 ## 1 lenovo.com. 1 16 7200
## 2 lenovo.com. 1 16 4990 ## 2 lenovo.com. 1 16 7200
## 3 lenovo.com. 1 16 4990 ## 3 lenovo.com. 1 16 7200
## 4 lenovo.com. 1 16 4990 ## 4 lenovo.com. 1 16 7200
## 5 lenovo.com. 1 16 4990 ## 5 lenovo.com. 1 16 7200
## 6 lenovo.com. 1 16 4990 ## 6 lenovo.com. 1 16 7200
## 7 lenovo.com. 1 16 4990 ## 7 lenovo.com. 1 16 7200
## 8 lenovo.com. 1 16 4990 ## 8 lenovo.com. 1 16 7200
## 9 lenovo.com. 1 16 4990 ## 9 lenovo.com. 1 16 7200
## 10 lenovo.com. 1 16 4990 ## 10 lenovo.com. 1 16 7200
## rdata_raw ## 11 lenovo.com. 1 16 7200
## 1 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 73, 48, 49, 6c, 53, 6c, 6a, 30, 55, 36, 55, 6e, 43, 44, 6b, 66, 48, 70, 31, 41, 6f, 6c, 57, 67, 56, 45, 76, 44, 6a, 57, 76, 63, 30, 54, 52, 34, 4b, 61, 79, 73, 44, 32, 63 ## 12 lenovo.com. 1 16 7200
## 2 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 56, 78, 57, 5f, 65, 36, 72, 5f, 4b, 61, 37, 41, 35, 31, 38, 71, 66, 58, 32, 4d, 6d, 49, 4d, 48, 47, 6e, 6b, 70, 47, 62, 6e, 41, 43, 73, 6a, 53, 78, 4b, 46, 43, 42, 77, 30 ## 13 lenovo.com. 1 16 7200
## 3 45, 76, 3d, 73, 70, 66, 31, 20, 69, 6e, 63, 6c, 75, 64, 65, 3a, 73, 70, 66, 2e, 6d, 65, 73, 73, 61, 67, 65, 6c, 61, 62, 73, 2e, 63, 6f, 6d, 20, 69, 6e, 63, 6c, 75, 64, 65, 3a, 5f, 6e, 65, 74, 62, 6c, 6f, 63, 6b, 73, 2e, 65, 6c, 6f, 71, 75, 61, 2e, 63, 6f, 6d, 20, 7e, 61, 6c, 6c ## rdata_raw
## 4 58, 69, 48, 7a, 51, 4a, 76, 73, 4b, 6e, 79, 47, 50, 32, 4e, 6d, 32, 71, 42, 67, 4c, 33, 66, 79, 42, 4a, 30, 43, 43, 39, 7a, 34, 47, 6b, 59, 2f, 66, 6c, 66, 6b, 34, 45, 7a, 4c, 50, 38, 6c, 50, 78, 57, 48, 44, 44, 50, 4b, 71, 5a, 57, 6d, 31, 54, 6b, 65, 46, 35, 6b, 45, 49, 4c, 2b, 4e, 6f, 74, 59, 4f, 46, 31, 77, 6f, 37, 4a, 74, 55, 44, 58, 58, 77, 3d, 3d ## 1 20, 71, 68, 37, 68, 64, 6d, 71, 6d, 34, 6c, 7a, 73, 38, 35, 70, 37, 30, 34, 64, 36, 77, 73, 79, 62, 67, 72, 70, 73, 6c, 79, 30, 6a
## 5 20, 71, 68, 37, 68, 64, 6d, 71, 6d, 34, 6c, 7a, 73, 38, 35, 70, 37, 30, 34, 64, 36, 77, 73, 79, 62, 67, 72, 70, 73, 6c, 79, 30, 6a ## 2 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 56, 78, 57, 5f, 65, 36, 72, 5f, 4b, 61, 37, 41, 35, 31, 38, 71, 66, 58, 32, 4d, 6d, 49, 4d, 48, 47, 6e, 6b, 70, 47, 62, 6e, 41, 43, 73, 6a, 53, 78, 4b, 46, 43, 42, 77, 30
## 6 20, 65, 63, 65, 34, 32, 64, 37, 37, 34, 33, 63, 38, 34, 64, 36, 38, 38, 39, 61, 62, 64, 61, 37, 30, 31, 31, 66, 65, 36, 66, 35, 33 ## 3 4d, 56, 69, 73, 69, 74, 20, 77, 77, 77, 2e, 6c, 65, 6e, 6f, 76, 6f, 2e, 63, 6f, 6d, 2f, 74, 68, 69, 6e, 6b, 20, 66, 6f, 72, 20, 69, 6e, 66, 6f, 72, 6d, 61, 74, 69, 6f, 6e, 20, 61, 62, 6f, 75, 74, 20, 4c, 65, 6e, 6f, 76, 6f, 20, 70, 72, 6f, 64, 75, 63, 74, 73, 20, 61, 6e, 64, 20, 73, 65, 72, 76, 69, 63, 65, 73
## 7 4d, 56, 69, 73, 69, 74, 20, 77, 77, 77, 2e, 6c, 65, 6e, 6f, 76, 6f, 2e, 63, 6f, 6d, 2f, 74, 68, 69, 6e, 6b, 20, 66, 6f, 72, 20, 69, 6e, 66, 6f, 72, 6d, 61, 74, 69, 6f, 6e, 20, 61, 62, 6f, 75, 74, 20, 4c, 65, 6e, 6f, 76, 6f, 20, 70, 72, 6f, 64, 75, 63, 74, 73, 20, 61, 6e, 64, 20, 73, 65, 72, 76, 69, 63, 65, 73 ## 4 20, 61, 38, 32, 63, 37, 34, 62, 33, 37, 61, 61, 38, 34, 65, 37, 63, 38, 35, 38, 30, 66, 30, 65, 33, 32, 66, 34, 64, 37, 39, 35, 64
## 8 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 6e, 47, 67, 75, 6b, 63, 70, 36, 30, 72, 43, 2d, 67, 46, 78, 4d, 4f, 4a, 77, 31, 4e, 48, 48, 30, 42, 34, 56, 6e, 53, 63, 68, 52, 72, 6c, 66, 57, 56, 2d, 48, 65, 5f, 74, 45 ## 5 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 68, 78, 4e, 53, 6f, 46, 34, 36, 61, 6e, 7a, 6a, 55, 74, 79, 46, 67, 70, 52, 56, 70, 7a, 73, 68, 54, 6b, 59, 43, 6c, 46, 42, 4a, 37, 4f, 41, 54, 33, 44, 7a, 36, 34, 34, 30
## 9 3b, 66, 61, 63, 65, 62, 6f, 6f, 6b, 2d, 64, 6f, 6d, 61, 69, 6e, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 31, 72, 32, 61, 6d, 37, 63, 32, 62, 68, 7a, 72, 78, 70, 71, 79, 74, 30, 6d, 64, 61, 30, 64, 6a, 6f, 71, 75, 71, 73, 69 ## 6 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 76, 79, 50, 73, 46, 75, 73, 67, 44, 4c, 65, 57, 7a, 76, 6e, 61, 70, 52, 79, 42, 62, 69, 76, 61, 35, 64, 58, 4a, 31, 4a, 49, 4a, 6a, 63, 4e, 62, 47, 75, 4f, 35, 32, 2d, 6b
## 10 20, 61, 38, 32, 63, 37, 34, 62, 33, 37, 61, 61, 38, 34, 65, 37, 63, 38, 35, 38, 30, 66, 30, 65, 33, 32, 66, 34, 64, 37, 39, 35, 64 ## 7 3b, 66, 61, 63, 65, 62, 6f, 6f, 6b, 2d, 64, 6f, 6d, 61, 69, 6e, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 31, 72, 32, 61, 6d, 37, 63, 32, 62, 68, 7a, 72, 78, 70, 71, 79, 74, 30, 6d, 64, 61, 30, 64, 6a, 6f, 71, 75, 71, 73, 69
## txt_strings ## 8 45, 76, 3d, 73, 70, 66, 31, 20, 69, 6e, 63, 6c, 75, 64, 65, 3a, 73, 70, 66, 2e, 6d, 65, 73, 73, 61, 67, 65, 6c, 61, 62, 73, 2e, 63, 6f, 6d, 20, 69, 6e, 63, 6c, 75, 64, 65, 3a, 5f, 6e, 65, 74, 62, 6c, 6f, 63, 6b, 73, 2e, 65, 6c, 6f, 71, 75, 61, 2e, 63, 6f, 6d, 20, 7e, 61, 6c, 6c
## 1 google-site-verification=sHIlSlj0U6UnCDkfHp1AolWgVEvDjWvc0TR4KaysD2c ## 9 58, 69, 48, 7a, 51, 4a, 76, 73, 4b, 6e, 79, 47, 50, 32, 4e, 6d, 32, 71, 42, 67, 4c, 33, 66, 79, 42, 4a, 30, 43, 43, 39, 7a, 34, 47, 6b, 59, 2f, 66, 6c, 66, 6b, 34, 45, 7a, 4c, 50, 38, 6c, 50, 78, 57, 48, 44, 44, 50, 4b, 71, 5a, 57, 6d, 31, 54, 6b, 65, 46, 35, 6b, 45, 49, 4c, 2b, 4e, 6f, 74, 59, 4f, 46, 31, 77, 6f, 37, 4a, 74, 55, 44, 58, 58, 77, 3d, 3d
## 2 google-site-verification=VxW_e6r_Ka7A518qfX2MmIMHGnkpGbnACsjSxKFCBw0 ## 10 5c, 61, 64, 6f, 62, 65, 2d, 69, 64, 70, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 35, 35, 34, 30, 63, 39, 36, 32, 30, 36, 66, 35, 66, 65, 32, 64, 66, 39, 32, 31, 61, 36, 63, 35, 39, 36, 65, 61, 39, 66, 62, 33, 64, 37, 65, 34, 31, 38, 64, 33, 65, 64, 64, 62, 35, 39, 38, 63, 32, 39, 39, 33, 35, 63, 63, 30, 33, 31, 36, 33, 38, 30, 35, 62
## 3 v=spf1 include:spf.messagelabs.com include:_netblocks.eloqua.com ~all ## 11 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 73, 48, 49, 6c, 53, 6c, 6a, 30, 55, 36, 55, 6e, 43, 44, 6b, 66, 48, 70, 31, 41, 6f, 6c, 57, 67, 56, 45, 76, 44, 6a, 57, 76, 63, 30, 54, 52, 34, 4b, 61, 79, 73, 44, 32, 63
## 4 iHzQJvsKnyGP2Nm2qBgL3fyBJ0CC9z4GkY/flfk4EzLP8lPxWHDDPKqZWm1TkeF5kEIL+NotYOF1wo7JtUDXXw== ## 12 44, 67, 6f, 6f, 67, 6c, 65, 2d, 73, 69, 74, 65, 2d, 76, 65, 72, 69, 66, 69, 63, 61, 74, 69, 6f, 6e, 3d, 6e, 47, 67, 75, 6b, 63, 70, 36, 30, 72, 43, 2d, 67, 46, 78, 4d, 4f, 4a, 77, 31, 4e, 48, 48, 30, 42, 34, 56, 6e, 53, 63, 68, 52, 72, 6c, 66, 57, 56, 2d, 48, 65, 5f, 74, 45
## 5 qh7hdmqm4lzs85p704d6wsybgrpsly0j ## 13 20, 65, 63, 65, 34, 32, 64, 37, 37, 34, 33, 63, 38, 34, 64, 36, 38, 38, 39, 61, 62, 64, 61, 37, 30, 31, 31, 66, 65, 36, 66, 35, 33
## 6 ece42d7743c84d6889abda7011fe6f53 ## txt_strings
## 7 Visit www.lenovo.com/think for information about Lenovo products and services ## 1 qh7hdmqm4lzs85p704d6wsybgrpsly0j
## 8 google-site-verification=nGgukcp60rC-gFxMOJw1NHH0B4VnSchRrlfWV-He_tE ## 2 google-site-verification=VxW_e6r_Ka7A518qfX2MmIMHGnkpGbnACsjSxKFCBw0
## 9 facebook-domain-verification=1r2am7c2bhzrxpqyt0mda0djoquqsi ## 3 Visit www.lenovo.com/think for information about Lenovo products and services
## 10 a82c74b37aa84e7c8580f0e32f4d795d ## 4 a82c74b37aa84e7c8580f0e32f4d795d
## 5 google-site-verification=hxNSoF46anzjUtyFgpRVpzshTkYClFBJ7OAT3Dz6440
## 6 google-site-verification=vyPsFusgDLeWzvnapRyBbiva5dXJ1JIJjcNbGuO52-k
## 7 facebook-domain-verification=1r2am7c2bhzrxpqyt0mda0djoquqsi
## 8 v=spf1 include:spf.messagelabs.com include:_netblocks.eloqua.com ~all
## 9 iHzQJvsKnyGP2Nm2qBgL3fyBJ0CC9z4GkY/flfk4EzLP8lPxWHDDPKqZWm1TkeF5kEIL+NotYOF1wo7JtUDXXw==
## 10 adobe-idp-site-verification=5540c96206f5fe2df921a6c596ea9fb3d7e418d3eddb598c29935cc03163805b
## 11 google-site-verification=sHIlSlj0U6UnCDkfHp1AolWgVEvDjWvc0TR4KaysD2c
## 12 google-site-verification=nGgukcp60rC-gFxMOJw1NHH0B4VnSchRrlfWV-He_tE
## 13 ece42d7743c84d6889abda7011fe6f53
cname <- doh_post("dataassurance.pwc.com", "CNAME") cname <- doh_post("dataassurance.pwc.com", "CNAME")
tidy(cname) tidy(cname)
## name class type ttl cname ## name class type ttl cname
## 1 dataassurance.pwc.com. 1 5 1346 f6759d2.x.incapdns.net. ## 1 dataassurance.pwc.com. 1 5 3600 f6759d2.x.incapdns.net.
## rdata_raw ## rdata_raw
## 1 66, 36, 37, 35, 39, 64, 32, 2e, 78, 2e, 69, 6e, 63, 61, 70, 64, 6e, 73, 2e, 6e, 65, 74, 2e ## 1 66, 36, 37, 35, 39, 64, 32, 2e, 78, 2e, 69, 6e, 63, 61, 70, 64, 6e, 73, 2e, 6e, 65, 74, 2e
ns <- doh_post("rud.is", "NS") ns <- doh_post("rud.is", "NS")
tidy(ns) tidy(ns)
## name class type ttl nsdname rdata_raw ## name class type ttl nsdname rdata_raw
## 1 rud.is. 1 2 43200 dns.mwebdns.eu. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 65, 75, 2e ## 1 rud.is. 1 2 43200 dns.mwebdns.net. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 6e, 65, 74, 2e
## 2 rud.is. 1 2 43200 dns.mwebdns.de. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 64, 65, 2e ## 2 rud.is. 1 2 43200 dns.mwebdns.de. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 64, 65, 2e
## 3 rud.is. 1 2 43200 dns.mwebdns.net. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 6e, 65, 74, 2e ## 3 rud.is. 1 2 43200 dns.mwebdns.eu. 64, 6e, 73, 2e, 6d, 77, 65, 62, 64, 6e, 73, 2e, 65, 75, 2e
soa <- doh_post("rud.is", "SOA") soa <- doh_post("rud.is", "SOA")
tidy(soa) tidy(soa)
## name class type ttl expire minimum mname ## name class type ttl expire minimum mname
## 1 rud.is. 1 6 43200 604800 86400 dns.mwebdns.de. ## 1 rud.is. 1 6 43200 604800 86400 dns.mwebdns.de.
## rdata_raw ## rdata_raw
## 1 03, 64, 6e, 73, 07, 6d, 77, 65, 62, 64, 6e, 73, 02, 64, 65, 00, 0a, 68, 6f, 73, 74, 6d, 61, 73, 74, 65, 72, 0a, 6d, 61, 6e, 64, 6f, 72, 61, 77, 65, 62, 02, 64, 65, 00, 77, ce, 5b, f3, 00, 00, 2a, 30, 00, 00, 0e, 10, 00, 09, 3a, 80, 00, 01, 51, 80 ## 1 03, 64, 6e, 73, 07, 6d, 77, 65, 62, 64, 6e, 73, 02, 64, 65, 00, 0a, 68, 6f, 73, 74, 6d, 61, 73, 74, 65, 72, 0a, 6d, 61, 6e, 64, 6f, 72, 61, 77, 65, 62, c0, 30, 77, ce, 5b, f3, 00, 00, 2a, 30, 00, 00, 0e, 10, 00, 09, 3a, 80, 00, 01, 51, 80
## refresh retry rname serial ## refresh retry rname serial
## 1 10800 3600 hostmaster.mandoraweb.de. 2010012659 ## 1 10800 3600 hostmaster.mandoraweb.de. 2010012659
@ -349,12 +392,12 @@ tidy(ptr)
| Lang | \# Files | (%) | LoC | (%) | Blank lines | (%) | \# Lines | (%) | | Lang | \# Files | (%) | LoC | (%) | Blank lines | (%) | \# Lines | (%) |
| :--- | -------: | ---: | --: | ---: | ----------: | ---: | -------: | ---: | | :--- | -------: | ---: | --: | ---: | ----------: | ---: | -------: | ---: |
| R | 20 | 0.80 | 686 | 0.49 | 188 | 0.40 | 370 | 0.58 | | R | 20 | 0.80 | 686 | 0.49 | 188 | 0.40 | 373 | 0.60 |
| C++ | 4 | 0.16 | 681 | 0.49 | 220 | 0.46 | 163 | 0.25 | | C++ | 4 | 0.16 | 681 | 0.49 | 220 | 0.47 | 163 | 0.26 |
| Rmd | 1 | 0.04 | 37 | 0.03 | 66 | 0.14 | 110 | 0.17 | | Rmd | 1 | 0.04 | 37 | 0.03 | 58 | 0.12 | 81 | 0.13 |
## Code of Conduct ## Code of Conduct
Please note that this project is released with a [Contributor Code of Please note that this project is released with a Contributor Code of
Conduct](CONDUCT.md). By participating in this project you agree to Conduct. By participating in this project you agree to abide by its
abide by its terms. terms.

3
man/clandnstine.Rd

@ -3,8 +3,7 @@
\docType{package} \docType{package}
\name{clandnstine} \name{clandnstine}
\alias{clandnstine} \alias{clandnstine}
\alias{clandnstine-package} \title{Perform Secure-by-default or Woefully Insecure 'DNS' Queries}
\title{Perform Secure-by-Default 'DNS' Queries}
\description{ \description{
Methods are provided to query 'Domain Name System' ('DNS') stub Methods are provided to query 'Domain Name System' ('DNS') stub
and recursive resolvers for all 'DNS' resource record types using 'UDP', and recursive resolvers for all 'DNS' resource record types using 'UDP',

3
man/doh_post.Rd

@ -4,8 +4,7 @@
\alias{doh_post} \alias{doh_post}
\title{Make a DoH Request (POST/wireformat)} \title{Make a DoH Request (POST/wireformat)}
\usage{ \usage{
doh_post(name, type = "A", doh_post(name, type = "A", server_path = "https://dns.quad9.net/dns-query")
server_path = "https://dns.quad9.net/dns-query")
} }
\arguments{ \arguments{
\item{name}{name to query for} \item{name}{name to query for}

7
man/gdns_context.Rd

@ -9,7 +9,7 @@ gdns_context(resolvers = "9.9.9.9")
} }
\arguments{ \arguments{
\item{resolvers}{character vector of valid DNS over TLS resolvers; \item{resolvers}{character vector of valid DNS over TLS resolvers;
Defaults to Quad9 (\code{9.9.9.9}).} Defaults to Quad9 (\verb{9.9.9.9}).}
} }
\description{ \description{
Create a gdns DNS over TLS context and populate it with a resolver Create a gdns DNS over TLS context and populate it with a resolver
@ -24,7 +24,8 @@ x <- gdns_context()
x <- gdns_context("1.1.1.1") x <- gdns_context("1.1.1.1")
} }
\seealso{ \seealso{
Other query functions: \code{\link{gdns_get_address}}, Other query functions:
\code{\link{gdns_query}} \code{\link{gdns_get_address}()},
\code{\link{gdns_query}()}
} }
\concept{query functions} \concept{query functions}

5
man/gdns_get_address.Rd

@ -20,7 +20,8 @@ gdns_get_address(x, "yahoo.com")
x \%>\% gdns_get_address("yahoo.com") x \%>\% gdns_get_address("yahoo.com")
} }
\seealso{ \seealso{
Other query functions: \code{\link{gdns_context}}, Other query functions:
\code{\link{gdns_query}} \code{\link{gdns_context}()},
\code{\link{gdns_query}()}
} }
\concept{query functions} \concept{query functions}

29
man/gdns_get_hosts.Rd

@ -13,19 +13,20 @@ gdns_get_hosts(gctx)
Retreive the value of the localnames namespace Retreive the value of the localnames namespace
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_resolution_type}}, Other context functions:
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_resolution_type.Rd

@ -17,19 +17,20 @@ x <- gdns_context()
gdns_get_resolution_type(x) gdns_get_resolution_type(x)
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_resolvconf.Rd

@ -13,19 +13,20 @@ gdns_get_resolvconf(gctx)
Retreive the value with which the context's upstream recursive servers and suffixes were initialized Retreive the value with which the context's upstream recursive servers and suffixes were initialized
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_root_servers.Rd

@ -13,19 +13,20 @@ gdns_get_root_servers(gctx)
Retrieve the list of addresses in use for looking up top-level domains in use by the context. Retrieve the list of addresses in use for looking up top-level domains in use by the context.
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_timeout.Rd

@ -13,19 +13,20 @@ gdns_get_timeout(gctx)
Retreive the number of milliseconds to wait for request to return Retreive the number of milliseconds to wait for request to return
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_tls_ca_file.Rd

@ -13,19 +13,20 @@ gdns_get_tls_ca_file(gctx)
Retreive the file location with CA certificates for verification purposes Retreive the file location with CA certificates for verification purposes
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_tls_ca_path.Rd

@ -13,19 +13,20 @@ gdns_get_tls_ca_path(gctx)
Retreive the value with which the context's upstream recursive servers and suffixes were initialized Retreive the value with which the context's upstream recursive servers and suffixes were initialized
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_get_transports.Rd

@ -13,19 +13,20 @@ gdns_get_transports(gctx)
Retreive what transports are used for DNS lookups. Retreive what transports are used for DNS lookups.
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

16
man/gdns_query.Rd

@ -4,8 +4,13 @@
\alias{gdns_query} \alias{gdns_query}
\title{Arbitrary DNS queries} \title{Arbitrary DNS queries}
\usage{ \usage{
gdns_query(gctx = NULL, name, rr_type = "txt", rr_class = 1L, gdns_query(
include_reporting = FALSE) gctx = NULL,
name,
rr_type = "txt",
rr_class = 1L,
include_reporting = FALSE
)
} }
\arguments{ \arguments{
\item{gctx}{gdns resolver context created with \code{\link[=gdns_resolver]{gdns_resolver()}}. If \code{NULL} a \item{gctx}{gdns resolver context created with \code{\link[=gdns_resolver]{gdns_resolver()}}. If \code{NULL} a
@ -24,7 +29,7 @@ Perform any valid resource record inquiry for a given name. See \code{Details}.
} }
\details{ \details{
This returns a fairly complex result object but that is the nature This returns a fairly complex result object but that is the nature
of DNS queries. You're likely going to want what is in \code{$replies_tree$answer} of DNS queries. You're likely going to want what is in \verb{$replies_tree$answer}
but the rest of the structure contains lovely metadata about the query and but the rest of the structure contains lovely metadata about the query and
remote query environment. There will eventually be "as data frame"-ish helpers remote query environment. There will eventually be "as data frame"-ish helpers
for this object. for this object.
@ -130,7 +135,8 @@ gdns_query(x, "example.com")
\url{https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml} \url{https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml}
} }
\seealso{ \seealso{
Other query functions: \code{\link{gdns_context}}, Other query functions:
\code{\link{gdns_get_address}} \code{\link{gdns_context}()},
\code{\link{gdns_get_address}()}
} }
\concept{query functions} \concept{query functions}

31
man/gdns_set_hosts.Rd

@ -9,7 +9,7 @@ gdns_set_hosts(gctx, hosts_file)
\arguments{ \arguments{
\item{gctx}{gdns resolver context created with \code{\link[=gdns_resolver]{gdns_resolver()}}} \item{gctx}{gdns resolver context created with \code{\link[=gdns_resolver]{gdns_resolver()}}}
\item{hosts_file}{path to a valid \code{hosts} file (e.g. "\code{/etc/hosts}). This value \item{hosts_file}{path to a valid \code{hosts} file (e.g. "\verb{/etc/hosts}). This value
will be \code{\link[=path.expand]{path.expand()}}ed.} will be \code{\link[=path.expand]{path.expand()}}ed.}
} }
\description{ \description{
@ -20,19 +20,20 @@ x <- gdns_context()
gdns_set_hosts(x, "/etc/hosts") gdns_set_hosts(x, "/etc/hosts")
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_set_resolution_type.Rd

@ -19,19 +19,20 @@ x <- gdns_context()
x <- gdns_set_resolution_type(x, "stub") x <- gdns_set_resolution_type(x, "stub")
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_set_round_robin_upstreams.Rd

@ -17,19 +17,20 @@ Set/unset context to round robin queries over the available upstreams
when resolving with the stub resolution type. when resolving with the stub resolution type.
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_set_timeout.Rd

@ -15,19 +15,20 @@ gdns_set_timeout(gctx, timeout)
Specify the number of milliseconds to wait for request to return Specify the number of milliseconds to wait for request to return
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_set_tls_ca_file.Rd

@ -15,19 +15,20 @@ gdns_set_tls_ca_file(gctx, ca_file)
Specify the file with CA certificates for verification purposes Specify the file with CA certificates for verification purposes
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_path}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_path}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_set_tls_ca_path.Rd

@ -15,19 +15,20 @@ gdns_set_tls_ca_path(gctx, ca_path)
Specify where the location for CA certificates for verification purposes are located Specify where the location for CA certificates for verification purposes are located
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_update_resolvers}} \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_update_resolvers}()}
} }
\concept{context functions} \concept{context functions}

29
man/gdns_update_resolvers.Rd

@ -23,19 +23,20 @@ x <- gdns_context()
x <- gdns_update_resolvers(x, "1.1.1.1") x <- gdns_update_resolvers(x, "1.1.1.1")
} }
\seealso{ \seealso{
Other context functions: \code{\link{gdns_get_hosts}}, Other context functions:
\code{\link{gdns_get_resolution_type}}, \code{\link{gdns_get_hosts}()},
\code{\link{gdns_get_resolvconf}}, \code{\link{gdns_get_resolution_type}()},
\code{\link{gdns_get_root_servers}}, \code{\link{gdns_get_resolvconf}()},
\code{\link{gdns_get_timeout}}, \code{\link{gdns_get_root_servers}()},
\code{\link{gdns_get_tls_ca_file}}, \code{\link{gdns_get_timeout}()},
\code{\link{gdns_get_tls_ca_path}}, \code{\link{gdns_get_tls_ca_file}()},
\code{\link{gdns_get_transports}}, \code{\link{gdns_get_tls_ca_path}()},
\code{\link{gdns_set_hosts}}, \code{\link{gdns_get_transports}()},
\code{\link{gdns_set_resolution_type}}, \code{\link{gdns_set_hosts}()},
\code{\link{gdns_set_round_robin_upstreams}}, \code{\link{gdns_set_resolution_type}()},
\code{\link{gdns_set_timeout}}, \code{\link{gdns_set_round_robin_upstreams}()},
\code{\link{gdns_set_tls_ca_file}}, \code{\link{gdns_set_timeout}()},
\code{\link{gdns_set_tls_ca_path}} \code{\link{gdns_set_tls_ca_file}()},
\code{\link{gdns_set_tls_ca_path}()}
} }
\concept{context functions} \concept{context functions}

Loading…
Cancel
Save