Added to Categories

This commit is contained in:
h345983745 2019-02-06 22:34:43 +00:00
parent d42075072b
commit 3e9c75f735
2 changed files with 7 additions and 2 deletions

View File

@ -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",

View File

@ -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";