├── .github └── workflows │ └── full-check.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING.md ├── CREDITS ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── docs ├── PLUGIN-HOWTO ├── README.FIRST ├── UPDATE-CHECK ├── old-docs │ └── BETA-TESTING └── sniffit-FAQ ├── examples └── sample_config_file ├── man ├── sniffit.5 └── sniffit.8 └── src ├── Makefile.am ├── dns_plugin.plug ├── dummy_plugin.plug ├── sn_analyse.c ├── sn_cfgfile.c ├── sn_cfgfile.h ├── sn_config.h ├── sn_conn_desc.c ├── sn_curses.h ├── sn_data.h ├── sn_defines.h ├── sn_generation.c ├── sn_generation.h ├── sn_global.h ├── sn_interface.c ├── sn_interface.h ├── sn_logfile.c ├── sn_logfile.h ├── sn_packets.c ├── sn_packets.h ├── sn_packetstructs.h ├── sn_plugins.h ├── sn_resolv.c ├── sn_resolv.h ├── sn_structs.h ├── sniffit.c └── sniffit.h /.github/workflows/full-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/.github/workflows/full-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/PLUGIN-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/docs/PLUGIN-HOWTO -------------------------------------------------------------------------------- /docs/README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/docs/README.FIRST -------------------------------------------------------------------------------- /docs/UPDATE-CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/docs/UPDATE-CHECK -------------------------------------------------------------------------------- /docs/old-docs/BETA-TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/docs/old-docs/BETA-TESTING -------------------------------------------------------------------------------- /docs/sniffit-FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/docs/sniffit-FAQ -------------------------------------------------------------------------------- /examples/sample_config_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/examples/sample_config_file -------------------------------------------------------------------------------- /man/sniffit.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/man/sniffit.5 -------------------------------------------------------------------------------- /man/sniffit.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/man/sniffit.8 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/dns_plugin.plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/dns_plugin.plug -------------------------------------------------------------------------------- /src/dummy_plugin.plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/dummy_plugin.plug -------------------------------------------------------------------------------- /src/sn_analyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_analyse.c -------------------------------------------------------------------------------- /src/sn_cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_cfgfile.c -------------------------------------------------------------------------------- /src/sn_cfgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_cfgfile.h -------------------------------------------------------------------------------- /src/sn_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_config.h -------------------------------------------------------------------------------- /src/sn_conn_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_conn_desc.c -------------------------------------------------------------------------------- /src/sn_curses.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/sn_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_data.h -------------------------------------------------------------------------------- /src/sn_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_defines.h -------------------------------------------------------------------------------- /src/sn_generation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_generation.c -------------------------------------------------------------------------------- /src/sn_generation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_generation.h -------------------------------------------------------------------------------- /src/sn_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_global.h -------------------------------------------------------------------------------- /src/sn_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_interface.c -------------------------------------------------------------------------------- /src/sn_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_interface.h -------------------------------------------------------------------------------- /src/sn_logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_logfile.c -------------------------------------------------------------------------------- /src/sn_logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_logfile.h -------------------------------------------------------------------------------- /src/sn_packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_packets.c -------------------------------------------------------------------------------- /src/sn_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_packets.h -------------------------------------------------------------------------------- /src/sn_packetstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_packetstructs.h -------------------------------------------------------------------------------- /src/sn_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_plugins.h -------------------------------------------------------------------------------- /src/sn_resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_resolv.c -------------------------------------------------------------------------------- /src/sn_resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_resolv.h -------------------------------------------------------------------------------- /src/sn_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sn_structs.h -------------------------------------------------------------------------------- /src/sniffit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sniffit.c -------------------------------------------------------------------------------- /src/sniffit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resurrecting-open-source-projects/sniffit/HEAD/src/sniffit.h --------------------------------------------------------------------------------