aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-03 22:21:52 -0400
committerB Stack <bgstack15@gmail.com>2020-09-03 22:21:52 -0400
commitd1528d329133a2f609979a474d91b10c30e107e5 (patch)
treed56e8e2bc4df5bac8ef87b1f90e24e21259a12d8
parentfix makefile to use %.o (diff)
downloadfull_resolver-master.tar.gz
full_resolver-master.tar.bz2
full_resolver-master.zip
add reference for jq logicHEADmaster
-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