├── .gitignore ├── DNScewl ├── LICENSE ├── Libraries ├── Makefile ├── README.md ├── includes ├── CLI11 │ └── CLI11.hpp └── spdlog │ ├── async.h │ ├── async_logger-inl.h │ ├── async_logger.h │ ├── common-inl.h │ ├── common.h │ ├── details │ ├── backtracer-inl.h │ ├── backtracer.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper-inl.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg-inl.h │ ├── log_msg.h │ ├── log_msg_buffer.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os-inl.h │ ├── os.h │ ├── pattern_formatter-inl.h │ ├── pattern_formatter.h │ ├── periodic_worker-inl.h │ ├── periodic_worker.h │ ├── registry-inl.h │ ├── registry.h │ ├── synchronous_factory.h │ ├── thread_pool-inl.h │ └── thread_pool.h │ ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── LICENSE.rst │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── ostream.h │ │ ├── posix.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── safe-duration-cast.h │ ├── fmt.h │ └── ostr.h │ ├── formatter.h │ ├── logger-inl.h │ ├── logger.h │ ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink-inl.h │ ├── ansicolor_sink.h │ ├── base_sink-inl.h │ ├── base_sink.h │ ├── basic_file_sink-inl.h │ ├── basic_file_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── dup_filter_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── rotating_file_sink-inl.h │ ├── rotating_file_sink.h │ ├── sink-inl.h │ ├── sink.h │ ├── stdout_color_sinks-inl.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks-inl.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ ├── systemd_sink.h │ ├── wincolor_sink-inl.h │ └── wincolor_sink.h │ ├── spdlog-inl.h │ ├── spdlog.h │ ├── tweakme.h │ └── version.h ├── input_files ├── appendfile.txt ├── excludefile.txt ├── extension_file.txt ├── set_list.txt └── target_list.txt ├── main.cpp ├── main.o └── sets ├── aws-zones.txt └── non-production-hosts.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/.gitignore -------------------------------------------------------------------------------- /DNScewl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/DNScewl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/Libraries -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/README.md -------------------------------------------------------------------------------- /includes/CLI11/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/CLI11/CLI11.hpp -------------------------------------------------------------------------------- /includes/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/async.h -------------------------------------------------------------------------------- /includes/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /includes/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/async_logger.h -------------------------------------------------------------------------------- /includes/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/common-inl.h -------------------------------------------------------------------------------- /includes/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/common.h -------------------------------------------------------------------------------- /includes/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /includes/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /includes/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /includes/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /includes/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /includes/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /includes/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /includes/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /includes/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /includes/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/os.h -------------------------------------------------------------------------------- /includes/spdlog/details/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/pattern_formatter-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/pattern_formatter.h -------------------------------------------------------------------------------- /includes/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /includes/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/registry.h -------------------------------------------------------------------------------- /includes/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /includes/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /includes/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/LICENSE.rst -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/bundled/safe-duration-cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/bundled/safe-duration-cast.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /includes/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /includes/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/formatter.h -------------------------------------------------------------------------------- /includes/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/logger-inl.h -------------------------------------------------------------------------------- /includes/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/logger.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /includes/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /includes/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /includes/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/spdlog.h -------------------------------------------------------------------------------- /includes/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/tweakme.h -------------------------------------------------------------------------------- /includes/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/includes/spdlog/version.h -------------------------------------------------------------------------------- /input_files/appendfile.txt: -------------------------------------------------------------------------------- 1 | dev 2 | test 3 | -------------------------------------------------------------------------------- /input_files/excludefile.txt: -------------------------------------------------------------------------------- 1 | test.example.com -------------------------------------------------------------------------------- /input_files/extension_file.txt: -------------------------------------------------------------------------------- 1 | .com.au 2 | .co.uk -------------------------------------------------------------------------------- /input_files/set_list.txt: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three -------------------------------------------------------------------------------- /input_files/target_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/input_files/target_list.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/main.cpp -------------------------------------------------------------------------------- /main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/main.o -------------------------------------------------------------------------------- /sets/aws-zones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/sets/aws-zones.txt -------------------------------------------------------------------------------- /sets/non-production-hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingo/DNSCewl/HEAD/sets/non-production-hosts.txt --------------------------------------------------------------------------------