Added to Categories
parent
d42075072b
commit
3e9c75f735
|
@ -155,6 +155,7 @@
|
||||||
"name": "Networking",
|
"name": "Networking",
|
||||||
"ops": [
|
"ops": [
|
||||||
"HTTP request",
|
"HTTP request",
|
||||||
|
"DNS over HTTPS",
|
||||||
"Strip HTTP headers",
|
"Strip HTTP headers",
|
||||||
"Dechunk HTTP response",
|
"Dechunk HTTP response",
|
||||||
"Parse User Agent",
|
"Parse User Agent",
|
||||||
|
|
|
@ -18,9 +18,13 @@ class HTTPSOverDNS extends Operation {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
this.name = "DNS Over HTTPS";
|
this.name = "DNS over HTTPS";
|
||||||
this.module = "Code";
|
this.module = "Code";
|
||||||
this.description = "Calls out to HTTPS Over DNS Resolvers";
|
this.description = ["Takes a single domain name and performs a DNS lookup using DNS vver HTTPS.",
|
||||||
|
"<br><br>",
|
||||||
|
"By default, <a href='https://developers.cloudflare.com/1.1.1.1/dns-over-https/'>Cloudflare</a> and <a href='https://developers.google.com/speed/public-dns/docs/dns-over-https'>Google</a> DNS over HTTPS services are supported.",
|
||||||
|
"<br><br>",
|
||||||
|
"Can be used with any service that supports the GET paramaters <code>name</code> and <code>type</code>."].join('\n');
|
||||||
this.infoURL = "https://en.wikipedia.org/wiki/DNS_over_HTTPS";
|
this.infoURL = "https://en.wikipedia.org/wiki/DNS_over_HTTPS";
|
||||||
this.inputType = "string";
|
this.inputType = "string";
|
||||||
this.outputType = "JSON";
|
this.outputType = "JSON";
|
||||||
|
|
Loading…
Reference in New Issue