Skip to main content

a simple DNS-over-HTTPS client

Project description

doh-cli

a simple DNS over HTTPS client

This is a simple DoH python client (RFC 8484, GET), json output by default! In ~55 lines of code (more or less).

Install

pip3 install doh-cli

Requirements

It's based on (tested on Python 3.8.0).

If you want to contribute, you can clone the repository and install all dependencies locally:

pip3 install .

Usage

doh-cli libredns.gr A

Help

doh-cli --help

Supported Resource Records

  • A
  • AAAA
  • CNAME

Supported DoH Servers

Some Examples

  • IPv4

    doh-cli libredns.gr A

[{"Query": "libredns.gr.", "TTL": "366", "RR": "A", "Answer": "116.203.115.192"}]

you can use jq to format, parse output:

doh-cli libredns.gr A | jq .
[
  {
    "Query": "libredns.gr.",
    "TTL": "54",
    "RR": "A",
    "Answer": "116.203.115.192"
  }
]
  • IPv6

    doh-cli libredns.gr AAAA | jq .

[
  {
    "Query": "libredns.gr.",
    "TTL": "207",
    "RR": "AAAA",
    "Answer": "2a01:4f8:c2c:52bf::1"
  }
]
  • CNAME

    doh-cli www.libredns.gr CNAME | jq .

[
  {
    "Query": "www.libredns.gr.",
    "TTL": "600",
    "RR": "CNAME",
    "Answer": "libredns.gr."
  }
]
  • Plain Output

    doh-cli libredns.gr A --output plain

116.203.115.192
  • debug

    doh-cli libredns.gr A --output plain --debug

https://doh.libredns.gr/dns-query?dns=lSIBAAABAAAAAAAACGxpYnJlZG5zAmdyAAABAAE
116.203.115.192
  • Change DNS server

    doh-cli libredns.gr A --output plain --dns cloudflare

116.203.115.192

or you can use LibreDNS Block Trackers endpoint:

doh-cli --output plain --dns libredns-ads analytics.google.com A
0.0.0.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

doh-cli-0.1.tar.gz (15.3 kB view hashes)

Uploaded Source

Built Distribution

doh_cli-0.1-py3-none-any.whl (15.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page