diff options
-rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |