diff options
author | B Stack <bgstack15@gmail.com> | 2020-09-03 22:21:52 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-09-03 22:21:52 -0400 |
commit | d1528d329133a2f609979a474d91b10c30e107e5 (patch) | |
tree | d56e8e2bc4df5bac8ef87b1f90e24e21259a12d8 | |
parent | fix makefile to use %.o (diff) | |
download | full_resolver-d1528d329133a2f609979a474d91b10c30e107e5.tar.gz full_resolver-d1528d329133a2f609979a474d91b10c30e107e5.tar.bz2 full_resolver-d1528d329133a2f609979a474d91b10c30e107e5.zip |
-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 |