Metadata-Version: 2.1
Name: doh-cli
Version: 0.3
Summary: a simple DNS-over-HTTPS client
Home-page: https://gitlab.com/libreops/doh-cli
Author: LibreOps
Author-email: team@libreops.cc
License: LICENSE
Description: # doh-cli
        
        a simple **DNS over HTTPS** client.
        
        This is a simple DoH python client (RFC 8484, GET), which supports **plain** (default) and **json** output.
        
        ## Install
        
        ```bash
        pip3 install doh-cli
        ```
        
        ## Requirements
        
        It's based & tested on Python 3.
        
        If you want to contribute, you can clone the repository and install all dependencies locally:
        
        ```bash
        pip3 install .
        ```
        
        ## Usage
        
        ```bash
        doh-cli libredns.gr A
        ```
        
        ## Help
        
        ```bash
        doh-cli --help
        ```
        
        ## Supported Resource Records
        
        - A
        - AAAA
        - CNAME
        - MX
        - NS
        - SOA
        - SPF
        - SRV
        - TXT
        - CAA
        
        ## Supported DoH Providers
        
        - [LibreDNS](https://libredns.gr)
        - [Google](https://dns.google)
        - [Cloudflare](https://cloudflare-dns.com)
        - [Quad9](https://quad9.net)
        - [CleanBrowsing](https://doh.cleanbrowsing.org)
        - [CIRA](https://www.cira.ca/cybersecurity-services/canadian-shield)
        - you may also provide your own DoH server URL
        
        ### DoH Options
        
        - libredns (**default**)
        - libredns-ads (LibreDNS No-Trackers/Ads)
        - google
        - cloudflare
        - quad9
        - cleanbrowsing
        - cira (CIRA's Canadian Shield)
        - cira-protect (Protected adds malware and phishing blocking)
        - cira-family (Family blocks malware and phishing plus pornographic content)
        
        ## Some Examples
        
        ### IPv4
        
        ```bash
        doh-cli libredns.gr A
        ```
        
        ```bash
        116.202.176.26
        ```
        
        in json
        
        ```bash
        doh-cli libredns.gr A --output json
        ```
        
        ```json
        [{"Query": "libredns.gr.", "TTL": "366", "RR": "A", "Answer": "116.202.176.26"}]
        ```
        
        you can use [jq](https://stedolan.github.io/jq/) to format, parse output:
        
        ```bash
        doh-cli libredns.gr A --output json | jq .
        ```
        
        ```json
        [
          {
            "Query": "libredns.gr.",
            "TTL": "54",
            "RR": "A",
            "Answer": "116.202.176.26"
          }
        ]
        ```
        
        ### IPv6
        
        ```bash
        doh-cli libredns.gr AAAA --output json | jq .
        ```
        
        ```json
        [
          {
            "Query": "libredns.gr.",
            "TTL": "207",
            "RR": "AAAA",
            "Answer": "2a01:4f8:c2c:52bf::1"
          }
        ]
        ```
        
        ### CNAME
        
        ```bash
        doh-cli www.libredns.gr CNAME --output json | jq .
        ```
        
        ```json
        [
          {
            "Query": "www.libredns.gr.",
            "TTL": "600",
            "RR": "CNAME",
            "Answer": "libredns.gr."
          }
        ]
        ```
        
        ### MX
        
        ```bash
        doh-cli libreops.cc MX --output json | jq .
        ```
        
        ```json
        [
          {
            "Query": "libreops.cc.",
            "TTL": "10794",
            "RR": "MX",
            "Answer": [
              "10",
              "spool.mail.gandi.net.",
              "libreops.cc.",
              "10794",
              "IN",
              "MX",
              "50",
              "fb.mail.gandi.net."
            ]
          }
        ]
        ```
        
        ### CAA
        
        ```bash
        doh-cli libredns.gr CAA --output json
        ```
        
        ```json
        [{"Query": "libredns.gr.", "TTL": "590", "RR": "CAA", "Answer": ["0", "issue", "\"letsencrypt.org\""]}]
        ```
        
        ### Plain Output
        
        ```bash
        doh-cli libredns.gr A --output plain
        ```
        
        ```bash
        116.202.176.26
        ```
        
        ### verbose
        
        ```bash
        doh-cli libredns.gr A --verbose
        ```
        
        ```bash
        116.202.176.26
        Verbose: https://doh.libredns.gr/dns-query?dns=lSIBAAABAAAAAAAACGxpYnJlZG5zAmdyAAABAAE
        ```
        
        ### debug
        
        ```bash
        doh-cli test.libredns.gr A --debug
        ```
        
        ```bash
        116.202.176.26
        Debug:  id 24169
        opcode QUERY
        rcode NOERROR
        flags QR RD RA
        ;QUESTION
        test.libredns.gr. IN A
        ;ANSWER
        test.libredns.gr. 3600 IN A 116.202.176.26
        ;AUTHORITY
        libredns.gr. 1822 IN SOA ns1.gandi.net. hostmaster.gandi.net. 1582812814 10800 3600 604800 10800
        ;ADDITIONAL
        ```
        
        ### Query time
        
        ```bash
        doh-cli test.libredns.gr A --time
        ```
        
        ```bash
        116.202.176.26
        Query time:  531.764
        ```
        
        ```bash
        doh-cli test.libredns.gr --time --output json | jq .
        ```
        
        ```json
        [
          {
            "Query": "test.libredns.gr.",
            "TTL": "3600",
            "RR": "A",
            "Answer": [
              "116.202.176.26"
            ]
          },
          {
            "Query Time": "476.537"
          }
        ]
        ```
        
        **Disclaimer**: This value is related to the client request towards the DoH provider, not the actual dns response.
        
        ### Choose another DNS server
        
        ```bash
        doh-cli libredns.gr A --dns cloudflare
        ```
        
        ```bash
        116.202.176.26
        ```
        
        or you can use LibreDNS Block Trackers endpoint:
        
        ```bash
        doh-cli --dns libredns-ads analytics.google.com A
        ```
        
        ```bash
        0.0.0.0
        ```
        
        or provide your own DoH url:
        
        ```bash
        doh-cli --dns https://doh.libredns.gr/dns-query www.example.com A
        ```
        
        ```bash
        93.184.216.34
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet :: Name Service (DNS)
Description-Content-Type: text/markdown
