Untested: add wild domain parsing
continuous-integration/drone/push Build is failing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-06-19 15:51:14 +02:00
parent 9415622fb9
commit 2b7cd9ea73
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
7 changed files with 77 additions and 21 deletions

53
args.ts Normal file
View File

@ -0,0 +1,53 @@
import { Args } from "./deps.ts";
import { isRecordType, ServerOptions } from "./lib/utils.ts";
/**
* A handler for parsing the arguments passed in
* @param {ServerOptions} server - The DNS server to query
* @param {Deno.RecordType} type - The type of DNS request, see Deno.RecordType for more info
* @param {string} name - Server to look up
*/
export type arguments = {
server?: ServerOptions;
type?: Deno.RecordType;
name?: string;
};
/**
* @param {Args} args - The arguments, directly passed in
* @returns {arguments} The arguments, parsed
*/
export function parseArgs(args: Args): arguments {
const parsed: arguments = {} as arguments;
args._.forEach((arg) => {
arg = arg.toString();
// if it starts with an @, it's a server
if (arg.includes("@")) {
parsed.server = {
server: arg.split("@").pop() as string,
port: args.port,
};
return;
}
// if there is a dot, it's a name
if (arg.includes(".")) {
parsed.name = arg;
return;
}
if (isRecordType(arg)) {
parsed.type = arg;
return;
}
// if all else fails, assume it's a name
parsed.name = arg;
});
// Add a . to the end of the name if it's not there
if (parsed.name?.charAt(parsed.name.length - 1) !== ".") {
parsed.name = parsed.name?.concat(".");
}
return parsed;
}

19
awl.ts
View File

@ -3,6 +3,7 @@ import { bold, italic, parse, underline } from "./deps.ts";
import { QueryResponse, ServerOptions } from "./lib/utils.ts";
import { doQuery } from "./lib/query.ts";
import { parseResponse } from "./lib/response.ts";
import { parseArgs } from "./args.ts";
import { parseNAPTR, parsePTR } from "./lib/reverse.ts";
async function main() {
@ -39,7 +40,7 @@ Written by (YOUR NAME GOES HERE)`,
${bold("<type>")} defaults to A
${bold("<@server>")} defaults to your local resolver
arguments ${bold(underline("NEED TO BE"))} in this order\n
Order ${bold("DOES NOT")} matter\n
`,
`${underline("Options")}:
-p <port> use <port> for query, defaults to 53
@ -53,12 +54,11 @@ Written by (YOUR NAME GOES HERE)`,
if (args.version) Deno.exit(0);
let domain = args._[0]?.toString();
domain ??= ".";
const parsedArgs = parseArgs(args);
let query: Deno.RecordType =
(args._[1] ?? (args.ptr ? "PTR" : "A")) as Deno.RecordType;
let domain = parsedArgs.name || ".";
let query = parsedArgs.type || "A";
if (domain === ".") query = "NS";
if (query === "PTR") {
@ -69,14 +69,7 @@ Written by (YOUR NAME GOES HERE)`,
domain = parseNAPTR(domain);
}
if (domain.charAt(domain.length - 1) !== ".") {
domain = domain.concat(".");
}
const server: ServerOptions = {
server: (args._[2] as string)?.split("@").pop() || "",
port: parseInt(args.port),
};
const server = parsedArgs.server || { server: "", port: 53 };
const response: QueryResponse = await doQuery(domain, query, server);

View File

@ -1,4 +1,5 @@
export { parse } from "https://deno.land/std@0.144.0/flags/mod.ts";
export type { Args } from "https://deno.land/std@0.144.0/flags/mod.ts";
export {
bold,
italic,

View File

@ -32,6 +32,7 @@ export async function doQuery(
response.response = "NXDOMAIN";
break;
default:
console.dir(e)
response.response = "SERVFAIL";
}
});

View File

@ -23,6 +23,12 @@ export type ServerOptions = {
port?: number;
};
export function isRecordType(type: string): type is Deno.RecordType {
return type === "A" || type === "AAAA" || type === "CNAME" || type === "MX" ||
type === "NS" || type === "PTR" || type === "SOA" || type === "TXT" ||
type === "NAPTR" || type === "SRV";
}
/**
* Test if the DNS query is an MX record
* @param {QueryResponse["dnsResponse"]} record - DNS response

3
mod.ts
View File

@ -1,7 +1,8 @@
// SPDX-License-Identifier: MIT
// Exports for ldawl, the library for awl
// Exports for lawl, the library for awl
export type { QueryResponse, ServerOptions } from "./lib/utils.ts";
export { isRecordType } from "./lib/utils.ts";
export { doQuery } from "./lib/query.ts";
export { parseResponse } from "./lib/response.ts";
export { parseIPv6, parseNAPTR, parsePTR } from "./lib/reverse.ts";

View File

@ -20,9 +20,10 @@ Deno.test("PTR localhost", async () => {
});
// This test will fail if this random Bri ish phone number goes down
// It's also unreliable, so it's disabled
// Deno.test("NAPTR, Remote",async () => {
// const res = await doQuery("4.4.2.2.3.3.5.6.8.1.4.4.e164.arpa.", "NAPTR");
// assertEquals(res.dnsResponse, [
// assertStrictEquals(res.dnsResponse, [
// {
// order: 100,
// preference: 10,
@ -48,11 +49,11 @@ Deno.test("Get invalid IP, regular NS", async () => {
assertEquals(res.response, "NXDOMAIN");
});
// This isn't supposed to SERVFAIL but idk
// This isn't supposed to SERVFAIL
// It also takes forever
// Deno.test("Get invalid IP, external NS", async () => {
// const res = await doQuery("b", "AAAA", { server: "1.1.1.1" });
// assertEquals(res.dnsResponse, undefined);
// assertEquals(res.response, "SERVFAIL");
// });
Deno.test("Get invalid IP, external NS", async () => {
const res = await doQuery("b", "AAAA", { server: "1.1.1.1" });
assertEquals(res.dnsResponse, undefined);
assertEquals(res.response, "SERVFAIL");
});