https://github.com/gsquire/nsx
Google DNS over HTTPS
https://github.com/gsquire/nsx
Last synced: 8 months ago
JSON representation
Google DNS over HTTPS
- Host: GitHub
- URL: https://github.com/gsquire/nsx
- Owner: gsquire
- License: mit
- Created: 2016-09-30T06:14:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-11T21:24:23.000Z (over 9 years ago)
- Last Synced: 2025-03-27T14:53:40.782Z (about 1 year ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nsx
A command-line tool to query Google's public DNS over their HTTPS API. The name is inspired by
Acura's awesome NSX.
### API Reference
https://developers.google.com/speed/public-dns/docs/dns-over-https
### Example Usage
```sh
cargo build --release
cargo run --release -- google.com
[
{
"name": "google.com.",
"type": 1,
"TTL": 299,
"data": "172.217.4.142"
}
]
```
### TODO
- Find out a better way to handle query parameters in the curl library.
### License
MIT