aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index f8efa3f..5f5f2cf 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,8 @@ This project was designed primarily for taking abbreviated output of a HAR file
<input.har jq ".log.entries" | jq --raw-output "[.[] | .request.url] | sort | unique | .[]" | awk -F'/' '!x[$3]++ {print $3}' | ./full_resolver
+Logic derived from [reference 3][3].
+
## Compiling full_resolver
Use the provided Makefile.
@@ -21,5 +23,6 @@ Accepted parameters include:
[udns](http://www.corpit.ru/mjt/udns.html), found via [https://stackoverflow.com/questions/12328093/dns-lookup-in-c-c](https://stackoverflow.com/questions/12328093/dns-lookup-in-c-c)
## References
-[1][file:///mnt/public/Support/Programs/dns/Troubleshooting-Adblocking-with-DNS.md]
-[2][https://gitlab.com/bgstack15/full_resolver]
+1. [1][file:///mnt/public/Support/Programs/dns/Troubleshooting-Adblocking-with-DNS.md]
+2. [2][https://gitlab.com/bgstack15/full_resolver]
+3. [3][https://gist.github.com/cvan/03ffa0c71317cb6b0b95a41ab189b097] source of jq logic
bgstack15