├── .github └── workflows │ ├── check-doc.yml │ ├── codeql.yml │ └── pre-commit.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .update-changes.cfg ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── Makefile ├── README ├── README.rst ├── VERSION ├── ZeekControl ├── __init__.py ├── cmdresult.py ├── config.py ├── control.py ├── cron.py ├── doc.py ├── events.py ├── exceptions.py ├── execute.py ├── install.py ├── lock.py ├── node.py ├── options.py ├── plugin.py ├── pluginreg.py ├── plugins │ ├── TestPlugin.py │ ├── cluster_backend_broker.py │ ├── cluster_backend_check.py │ ├── cluster_backend_zeromq.py │ ├── lb_custom.py │ ├── lb_myricom.py │ ├── lb_pf_ring.py │ ├── ps.py │ ├── zeek_port_warning.py │ └── zzz_af_packet.py ├── printdoc.py ├── ser.py ├── ssh_runner.py ├── state.py ├── test_cli.py ├── util.py ├── utilcurses.py ├── version.py ├── web.py ├── zeekcmd.py ├── zeekctl.py └── zeekctld.py ├── bin ├── archive-log ├── check-config ├── crash-diag ├── delete-log ├── expire-crash ├── expire-logs ├── helpers │ ├── check-pid │ ├── df │ ├── first-line │ ├── start │ ├── stop │ ├── to-bytes.awk │ └── top ├── make-archive-name ├── post-terminate ├── postprocessors │ └── summarize-connections ├── run-zeek ├── run-zeek-on-trace ├── send-mail ├── set-zeek-path ├── stats-to-csv ├── zeekctl.in └── zeekctld.in ├── configure ├── doc ├── Makefile ├── main.rst └── zeekctl.rst ├── etc ├── networks.cfg ├── node.cfg └── zeekctl.cfg.in ├── man └── zeekctl.8 ├── ruff.toml ├── scripts └── zeekctl │ ├── __load__.zeek │ ├── auto.zeek │ ├── check.zeek │ ├── logging.zeek │ ├── main.zeek │ ├── process-trace.zeek │ └── standalone.zeek ├── setup.py ├── testing ├── .gitignore ├── Baseline │ ├── command.capstats │ │ ├── all.out │ │ ├── interval.out │ │ ├── node-interval.out │ │ ├── onenode-interval.out │ │ └── onenode.out │ ├── command.check │ │ ├── all.out │ │ ├── check1.out │ │ ├── check2.out │ │ ├── check3.out │ │ └── onenode.out │ ├── command.cleanup-crash │ │ ├── cleanup-all-onenode.out │ │ ├── cleanup-all.out │ │ ├── cleanup-onenode.out │ │ ├── cleanup-stopped.out │ │ ├── cleanup.out │ │ ├── status1.out │ │ ├── status2.out │ │ ├── status3.out │ │ └── status4.out │ ├── command.cleanup │ │ ├── cleanup-all-onenode.out │ │ ├── cleanup-all.out │ │ ├── cleanup-onenode.out │ │ └── cleanup.out │ ├── command.commands-with-usewebsocket-2 │ │ ├── all-netstats.out │ │ ├── all.out │ │ ├── cluster-zeekctl.log │ │ └── worker-2-local-nets.out │ ├── command.commands-with-usewebsocket │ │ ├── all-netstats.out │ │ ├── all.out │ │ ├── cluster-zeekctl.log │ │ └── worker-2-local-nets.out │ ├── command.config │ │ └── out │ ├── command.cron-enable-disable │ │ ├── disable.out │ │ ├── enable.out │ │ └── out │ ├── command.cron-meta │ │ └── meta.out │ ├── command.cron-restart-crash │ │ ├── status1.out │ │ └── status2.out │ ├── command.cron-stats │ │ └── stats.out │ ├── command.deploy │ │ ├── deploy1.out │ │ ├── deploy2.out │ │ ├── status1.out │ │ ├── status2.out │ │ └── status3.out │ ├── command.df │ │ ├── cluster.out │ │ ├── default.out │ │ ├── manager.out │ │ ├── standalone.out │ │ └── worker.out │ ├── command.diag │ │ ├── cluster │ │ ├── onenode │ │ └── standalone │ ├── command.exec │ │ └── out │ ├── command.install-cluster-backend-zeromq │ │ └── zeekctl-config-zeromq-load │ ├── command.install-empty-file-extract-dir │ │ └── standalone │ ├── command.install-layout-files │ │ ├── logger │ │ ├── no-logger │ │ ├── standalone │ │ └── two-loggers │ ├── command.install-local │ │ └── out │ ├── command.install-metrics-address │ │ ├── custom │ │ ├── default │ │ └── empty │ ├── command.install-networks │ │ ├── ipv4-v6.out │ │ ├── ipv4.out │ │ └── ipv6.out │ ├── command.install-state │ │ ├── cluster │ │ └── standalone │ ├── command.install-usewebsocket │ │ ├── cluster-layout-base │ │ ├── cluster-layout-use-websocket │ │ └── cluster-layout-use-websocket-custom │ ├── command.install-zeekctl-config │ │ ├── logger │ │ ├── no-logger │ │ └── standalone │ ├── command.install-zeekport │ │ ├── no-logger │ │ ├── two-loggers │ │ └── two-proxies │ ├── command.install │ │ ├── cluster │ │ └── standalone │ ├── command.netstats │ │ ├── all.out │ │ └── onenode.out │ ├── command.nodes │ │ ├── cluster │ │ └── standalone │ ├── command.peerstatus │ │ ├── all.out │ │ └── onenode.out │ ├── command.print │ │ ├── all.out │ │ ├── noprivatelocals.out │ │ ├── onenode.out │ │ └── standalone.out │ ├── command.process │ │ └── out │ ├── command.restart-crash │ │ ├── restart.out │ │ ├── status1.out │ │ └── status2.out │ ├── command.restart │ │ ├── restart-all-clean.out │ │ ├── restart-all.out │ │ ├── restart-one.out │ │ ├── start-all.out │ │ └── start-one.out │ ├── command.scripts │ │ ├── all.out │ │ ├── c-all.out │ │ ├── c-onenode.out │ │ └── onenode.out │ ├── command.start-crash │ │ ├── start1.out │ │ ├── start2.out │ │ ├── status1.out │ │ └── status2.out │ ├── command.start-perms │ │ ├── start.out │ │ └── status.out │ ├── command.start-slowstart │ │ ├── start.out │ │ └── status.out │ ├── command.start-state-cluster │ │ └── out │ ├── command.start-state-crash │ │ ├── out │ │ └── out2 │ ├── command.start-state-standalone │ │ └── out │ ├── command.start-stop-big-cluster │ │ ├── start.out │ │ ├── status1.out │ │ ├── status2.out │ │ └── stop.out │ ├── command.start-stop-cluster │ │ ├── start-all.out │ │ ├── start-logger.out │ │ ├── start-one.out │ │ ├── start-remaining.out │ │ ├── status1.out │ │ ├── status2.out │ │ ├── status3.out │ │ ├── status4.out │ │ ├── status5.out │ │ ├── status6.out │ │ ├── stop-all.out │ │ ├── stop-logger.out │ │ ├── stop-one.out │ │ └── stop-remaining.out │ ├── command.start-stop-standalone │ │ ├── start.out │ │ └── stop.out │ ├── command.start-zeekargs │ │ └── debug.log │ ├── command.status-timefmt │ │ └── out │ ├── command.status │ │ ├── all.out │ │ ├── onenode.out │ │ └── stopped.out │ ├── command.stop-crash-shutdown │ │ ├── status1.out │ │ ├── status2.out │ │ └── stop.out │ ├── command.stop-crash │ │ ├── status1.out │ │ ├── status2.out │ │ └── stop.out │ ├── command.stop-slowstop │ │ ├── status1.out │ │ ├── status2.out │ │ └── stop.out │ ├── command.stop-state-cluster │ │ └── out │ ├── command.stop-state-crash │ │ └── out │ ├── command.stop-state-standalone │ │ └── out │ ├── command.top │ │ ├── all.out │ │ ├── onenode.out │ │ └── stopped.out │ ├── helper.make-archive-name │ │ ├── out1 │ │ ├── out2 │ │ └── out3 │ ├── helper.post-terminate-log-suffix │ │ └── rotated-logs.out │ ├── helper.to-bytes │ │ ├── out1 │ │ ├── out2 │ │ ├── out3 │ │ ├── out4 │ │ ├── out5 │ │ └── out6 │ ├── initialization.node-env-vars │ │ ├── debug.log │ │ ├── out │ │ └── stderr.log │ ├── initialization.node-lb-interfaces │ │ └── out │ ├── initialization.node-lb-myricom │ │ └── out │ ├── initialization.node-lb-pfring-multiple-id │ │ └── out │ ├── initialization.node-lb-pfring-pin-cpus │ │ └── out │ ├── initialization.node-lb-pfring-round-robin │ │ └── out │ ├── initialization.node-lb-pfring │ │ └── out │ ├── initialization.node-names │ │ └── out │ ├── initialization.zeekctl-global-env-vars │ │ ├── debug.log │ │ ├── out │ │ └── stderr.log │ ├── initialization.zeekctl-mixed-case │ │ └── out │ ├── initialization.zeekctl-new-option │ │ └── out │ ├── initialization.zeekctl-node-env-vars │ │ ├── debug.log │ │ └── out │ ├── plugin.af_packet │ │ ├── debug.log │ │ └── zeekctl-config.zeek │ ├── plugin.commands │ │ ├── cmd.out │ │ ├── help.out │ │ └── testcmd.out │ ├── plugin.lb_myricom-env-vars │ │ └── debug.log │ ├── plugin.lb_myricom │ │ └── debug.log │ ├── plugin.lb_pf_ring-env-vars │ │ └── debug.log │ ├── plugin.lb_pf_ring │ │ ├── debug1.log │ │ ├── debug2.log │ │ └── debug3.log │ ├── plugin.nodekeys │ │ └── out │ ├── plugin.options │ │ ├── custom.out │ │ └── default.out │ ├── plugin.ps │ │ ├── all.out │ │ ├── legacy-warning.out │ │ ├── legacy.out │ │ ├── onenode.out │ │ └── stopped.out │ ├── plugin.state │ │ ├── out1 │ │ └── out2 │ ├── plugin.zeekctl-config │ │ └── out │ ├── rotation.multi-logger │ │ ├── log_suffix_files.out │ │ └── unique_loggers.out │ └── rotation.single-logger │ │ ├── logger_working_dir.out │ │ └── logs.out ├── Cfg │ ├── bin │ │ ├── capstats__test │ │ ├── compress__test │ │ ├── df__diskfull │ │ ├── df__partitions │ │ ├── sendmail__test │ │ └── zeek__test │ ├── etc │ │ ├── networks.cfg__ipv4 │ │ ├── networks.cfg__ipv4_ipv6 │ │ ├── networks.cfg__ipv6 │ │ ├── node.cfg__af_packet │ │ ├── node.cfg__big_cluster │ │ ├── node.cfg__cluster │ │ ├── node.cfg__env_vars │ │ ├── node.cfg__five_loggers │ │ ├── node.cfg__logger │ │ ├── node.cfg__myricom │ │ ├── node.cfg__myricom_env │ │ ├── node.cfg__no_netifs │ │ ├── node.cfg__pfring │ │ ├── node.cfg__pfring_2_nics │ │ ├── node.cfg__pfring_pin_cpus │ │ ├── node.cfg__two_loggers │ │ ├── node.cfg__two_proxies │ │ ├── zeekctl.cfg__debug │ │ ├── zeekctl.cfg__no_email │ │ ├── zeekctl.cfg__pfring_round_robin │ │ └── zeekctl.cfg__test_sendmail │ └── plugins │ │ ├── commandtest.py │ │ ├── nodekeystest.py │ │ ├── optionstest.py │ │ ├── statetest.py │ │ └── zeekctlconfigtest.py ├── Makefile ├── README ├── Scripts │ ├── build-zeek │ ├── diff-cluster-layout │ ├── diff-cron-meta │ ├── diff-cron-stats │ ├── diff-df-output │ ├── diff-diag-output │ ├── diff-peerstatus-output │ ├── diff-ps-output │ ├── diff-remove-abspath │ ├── diff-remove-localhost-values │ ├── diff-remove-timestamps-dd-mmm-hh-mm-ss │ ├── diff-remove-timestamps-unix │ ├── diff-remove-timestamps-yyyy-mm-dd │ ├── diff-remove-timestamps-yyyy-mm-dd-hh-mm-ss │ ├── diff-state-db │ ├── diff-status-output │ ├── diff-to-bytes-output │ ├── diff-top-output │ ├── diff-update-output │ ├── diff-zeekctl-config │ └── zeekctl-test-setup ├── Traces │ └── dns-session.trace ├── btest.cfg ├── command │ ├── capstats.test │ ├── check.test │ ├── cleanup-crash.test │ ├── cleanup.test │ ├── commands-with-usewebsocket.test │ ├── config.test │ ├── cron-croncmd.test │ ├── cron-disk.test │ ├── cron-enable-disable.test │ ├── cron-expire.test │ ├── cron-expirecrash.test │ ├── cron-expirestats.test │ ├── cron-meta.test │ ├── cron-restart-crash.test │ ├── cron-stats.test │ ├── deploy.test │ ├── df.test │ ├── diag.test │ ├── exec.test │ ├── exit-quit.test │ ├── install-cluster-backend-zeromq.test │ ├── install-empty-file-extract-dir.test │ ├── install-layout-files.test │ ├── install-local.test │ ├── install-metrics-address.test │ ├── install-networks.test │ ├── install-sitepolicypath.test │ ├── install-state.test │ ├── install-usewebsocket.test │ ├── install-zeekctl-config.test │ ├── install-zeekport.test │ ├── install.test │ ├── netstats.test │ ├── nodes.test │ ├── peerstatus.test │ ├── print.test │ ├── process.test │ ├── restart-crash.test │ ├── restart.test │ ├── scripts.test │ ├── start-crash.test │ ├── start-memlimit.test │ ├── start-perms.test │ ├── start-slowstart.test │ ├── start-state-cluster.test │ ├── start-state-crash.test │ ├── start-state-standalone.test │ ├── start-stop-big-cluster.test │ ├── start-stop-cluster.test │ ├── start-stop-standalone.test │ ├── start-zeekargs.test │ ├── status-timefmt.test │ ├── status.test │ ├── stop-crash-shutdown.test │ ├── stop-crash.test │ ├── stop-slowstop.test │ ├── stop-state-cluster.test │ ├── stop-state-crash.test │ ├── stop-state-standalone.test │ └── top.test ├── helper │ ├── archive-log-compresscmd.test │ ├── archive-log-gz.test │ ├── archive-log-logdir.test │ ├── archive-log-makearchivename.test │ ├── archive-log-no-compress.test │ ├── archive-log-no-mail.test │ ├── archive-log.test │ ├── make-archive-name.test │ ├── post-terminate-log-suffix.test │ └── to-bytes.test ├── initialization │ ├── node-env-vars.test │ ├── node-lb-interfaces.test │ ├── node-lb-myricom.test │ ├── node-lb-pfring-multiple-id.test │ ├── node-lb-pfring-pin-cpus.test │ ├── node-lb-pfring-round-robin.test │ ├── node-lb-pfring.test │ ├── node-names.test │ ├── zeekctl-global-env-vars.test │ ├── zeekctl-mixed-case.test │ ├── zeekctl-new-option.test │ ├── zeekctl-node-env-vars.test │ └── zeekctl-version.test ├── plugin │ ├── af_packet.test │ ├── commands.test │ ├── lb_myricom-env-vars.test │ ├── lb_myricom.test │ ├── lb_pf_ring-env-vars.test │ ├── lb_pf_ring.test │ ├── load.test │ ├── nodekeys.test │ ├── options.test │ ├── ps.test │ ├── sitepluginpath.test │ ├── state.test │ └── zeekctl-config.test ├── random.seed ├── rotation │ ├── much-logging.zeek │ ├── multi-logger.test │ └── single-logger.test └── test_api │ └── test_state.py └── util ├── extract-strictly-local-conns ├── make-plots.r └── reformat-stats /.github/workflows/check-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.github/workflows/check-doc.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | README.html 3 | *.pyc 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.update-changes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/.update-changes.cfg -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | 2 | See doc/zeekctl.rst. 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | doc/zeekctl.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.6.0-35 2 | -------------------------------------------------------------------------------- /ZeekControl/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty. 2 | -------------------------------------------------------------------------------- /ZeekControl/cmdresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/cmdresult.py -------------------------------------------------------------------------------- /ZeekControl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/config.py -------------------------------------------------------------------------------- /ZeekControl/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/control.py -------------------------------------------------------------------------------- /ZeekControl/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/cron.py -------------------------------------------------------------------------------- /ZeekControl/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/doc.py -------------------------------------------------------------------------------- /ZeekControl/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/events.py -------------------------------------------------------------------------------- /ZeekControl/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/exceptions.py -------------------------------------------------------------------------------- /ZeekControl/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/execute.py -------------------------------------------------------------------------------- /ZeekControl/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/install.py -------------------------------------------------------------------------------- /ZeekControl/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/lock.py -------------------------------------------------------------------------------- /ZeekControl/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/node.py -------------------------------------------------------------------------------- /ZeekControl/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/options.py -------------------------------------------------------------------------------- /ZeekControl/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugin.py -------------------------------------------------------------------------------- /ZeekControl/pluginreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/pluginreg.py -------------------------------------------------------------------------------- /ZeekControl/plugins/TestPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/TestPlugin.py -------------------------------------------------------------------------------- /ZeekControl/plugins/cluster_backend_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/cluster_backend_broker.py -------------------------------------------------------------------------------- /ZeekControl/plugins/cluster_backend_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/cluster_backend_check.py -------------------------------------------------------------------------------- /ZeekControl/plugins/cluster_backend_zeromq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/cluster_backend_zeromq.py -------------------------------------------------------------------------------- /ZeekControl/plugins/lb_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/lb_custom.py -------------------------------------------------------------------------------- /ZeekControl/plugins/lb_myricom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/lb_myricom.py -------------------------------------------------------------------------------- /ZeekControl/plugins/lb_pf_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/lb_pf_ring.py -------------------------------------------------------------------------------- /ZeekControl/plugins/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/ps.py -------------------------------------------------------------------------------- /ZeekControl/plugins/zeek_port_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/zeek_port_warning.py -------------------------------------------------------------------------------- /ZeekControl/plugins/zzz_af_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/plugins/zzz_af_packet.py -------------------------------------------------------------------------------- /ZeekControl/printdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/printdoc.py -------------------------------------------------------------------------------- /ZeekControl/ser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/ser.py -------------------------------------------------------------------------------- /ZeekControl/ssh_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/ssh_runner.py -------------------------------------------------------------------------------- /ZeekControl/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/state.py -------------------------------------------------------------------------------- /ZeekControl/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/test_cli.py -------------------------------------------------------------------------------- /ZeekControl/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/util.py -------------------------------------------------------------------------------- /ZeekControl/utilcurses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/utilcurses.py -------------------------------------------------------------------------------- /ZeekControl/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/version.py -------------------------------------------------------------------------------- /ZeekControl/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/web.py -------------------------------------------------------------------------------- /ZeekControl/zeekcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/zeekcmd.py -------------------------------------------------------------------------------- /ZeekControl/zeekctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/zeekctl.py -------------------------------------------------------------------------------- /ZeekControl/zeekctld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ZeekControl/zeekctld.py -------------------------------------------------------------------------------- /bin/archive-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/archive-log -------------------------------------------------------------------------------- /bin/check-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/check-config -------------------------------------------------------------------------------- /bin/crash-diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/crash-diag -------------------------------------------------------------------------------- /bin/delete-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/delete-log -------------------------------------------------------------------------------- /bin/expire-crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/expire-crash -------------------------------------------------------------------------------- /bin/expire-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/expire-logs -------------------------------------------------------------------------------- /bin/helpers/check-pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/check-pid -------------------------------------------------------------------------------- /bin/helpers/df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/df -------------------------------------------------------------------------------- /bin/helpers/first-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/first-line -------------------------------------------------------------------------------- /bin/helpers/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/start -------------------------------------------------------------------------------- /bin/helpers/stop: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | # 3 | # stop 4 | 5 | kill -$2 $1 6 | -------------------------------------------------------------------------------- /bin/helpers/to-bytes.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/to-bytes.awk -------------------------------------------------------------------------------- /bin/helpers/top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/helpers/top -------------------------------------------------------------------------------- /bin/make-archive-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/make-archive-name -------------------------------------------------------------------------------- /bin/post-terminate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/post-terminate -------------------------------------------------------------------------------- /bin/postprocessors/summarize-connections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/postprocessors/summarize-connections -------------------------------------------------------------------------------- /bin/run-zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/run-zeek -------------------------------------------------------------------------------- /bin/run-zeek-on-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/run-zeek-on-trace -------------------------------------------------------------------------------- /bin/send-mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/send-mail -------------------------------------------------------------------------------- /bin/set-zeek-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/set-zeek-path -------------------------------------------------------------------------------- /bin/stats-to-csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/stats-to-csv -------------------------------------------------------------------------------- /bin/zeekctl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/zeekctl.in -------------------------------------------------------------------------------- /bin/zeekctld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/bin/zeekctld.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/configure -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/doc/main.rst -------------------------------------------------------------------------------- /doc/zeekctl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/doc/zeekctl.rst -------------------------------------------------------------------------------- /etc/networks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/etc/networks.cfg -------------------------------------------------------------------------------- /etc/node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/etc/node.cfg -------------------------------------------------------------------------------- /etc/zeekctl.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/etc/zeekctl.cfg.in -------------------------------------------------------------------------------- /man/zeekctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/man/zeekctl.8 -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/ruff.toml -------------------------------------------------------------------------------- /scripts/zeekctl/__load__.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/__load__.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/auto.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/auto.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/check.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/check.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/logging.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/logging.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/main.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/main.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/process-trace.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/process-trace.zeek -------------------------------------------------------------------------------- /scripts/zeekctl/standalone.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/scripts/zeekctl/standalone.zeek -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- 1 | .btest.failed.dat 2 | .tmp 3 | diag.log 4 | -------------------------------------------------------------------------------- /testing/Baseline/command.capstats/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.capstats/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.capstats/interval.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.capstats/interval.out -------------------------------------------------------------------------------- /testing/Baseline/command.capstats/node-interval.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.capstats/node-interval.out -------------------------------------------------------------------------------- /testing/Baseline/command.capstats/onenode-interval.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.capstats/onenode-interval.out -------------------------------------------------------------------------------- /testing/Baseline/command.capstats/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.capstats/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.check/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.check/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.check/check1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.check/check1.out -------------------------------------------------------------------------------- /testing/Baseline/command.check/check2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.check/check2.out -------------------------------------------------------------------------------- /testing/Baseline/command.check/check3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.check/check3.out -------------------------------------------------------------------------------- /testing/Baseline/command.check/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.check/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/cleanup-all-onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/cleanup-all-onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/cleanup-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/cleanup-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/cleanup-onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/cleanup-onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/cleanup-stopped.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/cleanup-stopped.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/cleanup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/cleanup.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/status3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/status3.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup-crash/status4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup-crash/status4.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup/cleanup-all-onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup/cleanup-all-onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup/cleanup-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup/cleanup-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup/cleanup-onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup/cleanup-onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.cleanup/cleanup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cleanup/cleanup.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket-2/all-netstats.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket-2/all-netstats.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket-2/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket-2/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket-2/cluster-zeekctl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket-2/cluster-zeekctl.log -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket-2/worker-2-local-nets.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket-2/worker-2-local-nets.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket/all-netstats.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket/all-netstats.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket/cluster-zeekctl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket/cluster-zeekctl.log -------------------------------------------------------------------------------- /testing/Baseline/command.commands-with-usewebsocket/worker-2-local-nets.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.commands-with-usewebsocket/worker-2-local-nets.out -------------------------------------------------------------------------------- /testing/Baseline/command.config/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.config/out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-enable-disable/disable.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-enable-disable/disable.out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-enable-disable/enable.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-enable-disable/enable.out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-enable-disable/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-enable-disable/out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-meta/meta.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-meta/meta.out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-restart-crash/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-restart-crash/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-restart-crash/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-restart-crash/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.cron-stats/stats.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.cron-stats/stats.out -------------------------------------------------------------------------------- /testing/Baseline/command.deploy/deploy1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.deploy/deploy1.out -------------------------------------------------------------------------------- /testing/Baseline/command.deploy/deploy2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.deploy/deploy2.out -------------------------------------------------------------------------------- /testing/Baseline/command.deploy/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.deploy/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.deploy/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.deploy/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.deploy/status3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.deploy/status3.out -------------------------------------------------------------------------------- /testing/Baseline/command.df/cluster.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.df/cluster.out -------------------------------------------------------------------------------- /testing/Baseline/command.df/default.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.df/default.out -------------------------------------------------------------------------------- /testing/Baseline/command.df/manager.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.df/manager.out -------------------------------------------------------------------------------- /testing/Baseline/command.df/standalone.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.df/standalone.out -------------------------------------------------------------------------------- /testing/Baseline/command.df/worker.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.df/worker.out -------------------------------------------------------------------------------- /testing/Baseline/command.diag/cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.diag/cluster -------------------------------------------------------------------------------- /testing/Baseline/command.diag/onenode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.diag/onenode -------------------------------------------------------------------------------- /testing/Baseline/command.diag/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.diag/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.exec/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.exec/out -------------------------------------------------------------------------------- /testing/Baseline/command.install-cluster-backend-zeromq/zeekctl-config-zeromq-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-cluster-backend-zeromq/zeekctl-config-zeromq-load -------------------------------------------------------------------------------- /testing/Baseline/command.install-empty-file-extract-dir/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-empty-file-extract-dir/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.install-layout-files/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-layout-files/logger -------------------------------------------------------------------------------- /testing/Baseline/command.install-layout-files/no-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-layout-files/no-logger -------------------------------------------------------------------------------- /testing/Baseline/command.install-layout-files/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-layout-files/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.install-layout-files/two-loggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-layout-files/two-loggers -------------------------------------------------------------------------------- /testing/Baseline/command.install-local/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-local/out -------------------------------------------------------------------------------- /testing/Baseline/command.install-metrics-address/custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-metrics-address/custom -------------------------------------------------------------------------------- /testing/Baseline/command.install-metrics-address/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-metrics-address/default -------------------------------------------------------------------------------- /testing/Baseline/command.install-metrics-address/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-metrics-address/empty -------------------------------------------------------------------------------- /testing/Baseline/command.install-networks/ipv4-v6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-networks/ipv4-v6.out -------------------------------------------------------------------------------- /testing/Baseline/command.install-networks/ipv4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-networks/ipv4.out -------------------------------------------------------------------------------- /testing/Baseline/command.install-networks/ipv6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-networks/ipv6.out -------------------------------------------------------------------------------- /testing/Baseline/command.install-state/cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-state/cluster -------------------------------------------------------------------------------- /testing/Baseline/command.install-state/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-state/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.install-usewebsocket/cluster-layout-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-usewebsocket/cluster-layout-base -------------------------------------------------------------------------------- /testing/Baseline/command.install-usewebsocket/cluster-layout-use-websocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-usewebsocket/cluster-layout-use-websocket -------------------------------------------------------------------------------- /testing/Baseline/command.install-usewebsocket/cluster-layout-use-websocket-custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-usewebsocket/cluster-layout-use-websocket-custom -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekctl-config/logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekctl-config/logger -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekctl-config/no-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekctl-config/no-logger -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekctl-config/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekctl-config/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekport/no-logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekport/no-logger -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekport/two-loggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekport/two-loggers -------------------------------------------------------------------------------- /testing/Baseline/command.install-zeekport/two-proxies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install-zeekport/two-proxies -------------------------------------------------------------------------------- /testing/Baseline/command.install/cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install/cluster -------------------------------------------------------------------------------- /testing/Baseline/command.install/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.install/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.netstats/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.netstats/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.netstats/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.netstats/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.nodes/cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.nodes/cluster -------------------------------------------------------------------------------- /testing/Baseline/command.nodes/standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.nodes/standalone -------------------------------------------------------------------------------- /testing/Baseline/command.peerstatus/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.peerstatus/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.peerstatus/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.peerstatus/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.print/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.print/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.print/noprivatelocals.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.print/noprivatelocals.out -------------------------------------------------------------------------------- /testing/Baseline/command.print/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.print/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.print/standalone.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.print/standalone.out -------------------------------------------------------------------------------- /testing/Baseline/command.process/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.process/out -------------------------------------------------------------------------------- /testing/Baseline/command.restart-crash/restart.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart-crash/restart.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart-crash/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart-crash/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart-crash/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart-crash/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart/restart-all-clean.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart/restart-all-clean.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart/restart-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart/restart-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart/restart-one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart/restart-one.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart/start-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart/start-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.restart/start-one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.restart/start-one.out -------------------------------------------------------------------------------- /testing/Baseline/command.scripts/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.scripts/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.scripts/c-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.scripts/c-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.scripts/c-onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.scripts/c-onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.scripts/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.scripts/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-crash/start1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-crash/start1.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-crash/start2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-crash/start2.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-crash/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-crash/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-crash/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-crash/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-perms/start.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-perms/start.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-perms/status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-perms/status.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-slowstart/start.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-slowstart/start.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-slowstart/status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-slowstart/status.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-state-cluster/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-state-cluster/out -------------------------------------------------------------------------------- /testing/Baseline/command.start-state-crash/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-state-crash/out -------------------------------------------------------------------------------- /testing/Baseline/command.start-state-crash/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-state-crash/out2 -------------------------------------------------------------------------------- /testing/Baseline/command.start-state-standalone/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-state-standalone/out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-big-cluster/start.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-big-cluster/start.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-big-cluster/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-big-cluster/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-big-cluster/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-big-cluster/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-big-cluster/stop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-big-cluster/stop.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/start-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/start-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/start-logger.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/start-logger.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/start-one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/start-one.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/start-remaining.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/start-remaining.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status3.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status4.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status5.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/status6.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/status6.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/stop-all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/stop-all.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/stop-logger.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/stop-logger.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/stop-one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/stop-one.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-cluster/stop-remaining.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-cluster/stop-remaining.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-standalone/start.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-standalone/start.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-stop-standalone/stop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-stop-standalone/stop.out -------------------------------------------------------------------------------- /testing/Baseline/command.start-zeekargs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.start-zeekargs/debug.log -------------------------------------------------------------------------------- /testing/Baseline/command.status-timefmt/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.status-timefmt/out -------------------------------------------------------------------------------- /testing/Baseline/command.status/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.status/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.status/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.status/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.status/stopped.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.status/stopped.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash-shutdown/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash-shutdown/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash-shutdown/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash-shutdown/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash-shutdown/stop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash-shutdown/stop.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-crash/stop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-crash/stop.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-slowstop/status1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-slowstop/status1.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-slowstop/status2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-slowstop/status2.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-slowstop/stop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-slowstop/stop.out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-state-cluster/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-state-cluster/out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-state-crash/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-state-crash/out -------------------------------------------------------------------------------- /testing/Baseline/command.stop-state-standalone/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.stop-state-standalone/out -------------------------------------------------------------------------------- /testing/Baseline/command.top/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.top/all.out -------------------------------------------------------------------------------- /testing/Baseline/command.top/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.top/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/command.top/stopped.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/command.top/stopped.out -------------------------------------------------------------------------------- /testing/Baseline/helper.make-archive-name/out1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.make-archive-name/out1 -------------------------------------------------------------------------------- /testing/Baseline/helper.make-archive-name/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.make-archive-name/out2 -------------------------------------------------------------------------------- /testing/Baseline/helper.make-archive-name/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.make-archive-name/out3 -------------------------------------------------------------------------------- /testing/Baseline/helper.post-terminate-log-suffix/rotated-logs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.post-terminate-log-suffix/rotated-logs.out -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out1 -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out2 -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out3 -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out4 -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out5 -------------------------------------------------------------------------------- /testing/Baseline/helper.to-bytes/out6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/helper.to-bytes/out6 -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-env-vars/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-env-vars/debug.log -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-env-vars/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-env-vars/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-env-vars/stderr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-env-vars/stderr.log -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-interfaces/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-interfaces/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-myricom/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-myricom/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-pfring-multiple-id/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-pfring-multiple-id/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-pfring-pin-cpus/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-pfring-pin-cpus/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-pfring-round-robin/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-pfring-round-robin/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-lb-pfring/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-lb-pfring/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.node-names/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.node-names/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-global-env-vars/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-global-env-vars/debug.log -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-global-env-vars/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-global-env-vars/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-global-env-vars/stderr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-global-env-vars/stderr.log -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-mixed-case/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-mixed-case/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-new-option/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-new-option/out -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-node-env-vars/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-node-env-vars/debug.log -------------------------------------------------------------------------------- /testing/Baseline/initialization.zeekctl-node-env-vars/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/initialization.zeekctl-node-env-vars/out -------------------------------------------------------------------------------- /testing/Baseline/plugin.af_packet/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.af_packet/debug.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.af_packet/zeekctl-config.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.af_packet/zeekctl-config.zeek -------------------------------------------------------------------------------- /testing/Baseline/plugin.commands/cmd.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.commands/cmd.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.commands/help.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.commands/help.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.commands/testcmd.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.commands/testcmd.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_myricom-env-vars/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_myricom-env-vars/debug.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_myricom/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_myricom/debug.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_pf_ring-env-vars/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_pf_ring-env-vars/debug.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_pf_ring/debug1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_pf_ring/debug1.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_pf_ring/debug2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_pf_ring/debug2.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.lb_pf_ring/debug3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.lb_pf_ring/debug3.log -------------------------------------------------------------------------------- /testing/Baseline/plugin.nodekeys/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.nodekeys/out -------------------------------------------------------------------------------- /testing/Baseline/plugin.options/custom.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.options/custom.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.options/default.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.options/default.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.ps/all.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.ps/all.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.ps/legacy-warning.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.ps/legacy-warning.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.ps/legacy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.ps/legacy.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.ps/onenode.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.ps/onenode.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.ps/stopped.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.ps/stopped.out -------------------------------------------------------------------------------- /testing/Baseline/plugin.state/out1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.state/out1 -------------------------------------------------------------------------------- /testing/Baseline/plugin.state/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.state/out2 -------------------------------------------------------------------------------- /testing/Baseline/plugin.zeekctl-config/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/plugin.zeekctl-config/out -------------------------------------------------------------------------------- /testing/Baseline/rotation.multi-logger/log_suffix_files.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/rotation.multi-logger/log_suffix_files.out -------------------------------------------------------------------------------- /testing/Baseline/rotation.multi-logger/unique_loggers.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/rotation.multi-logger/unique_loggers.out -------------------------------------------------------------------------------- /testing/Baseline/rotation.single-logger/logger_working_dir.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/rotation.single-logger/logger_working_dir.out -------------------------------------------------------------------------------- /testing/Baseline/rotation.single-logger/logs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Baseline/rotation.single-logger/logs.out -------------------------------------------------------------------------------- /testing/Cfg/bin/capstats__test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/capstats__test -------------------------------------------------------------------------------- /testing/Cfg/bin/compress__test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/compress__test -------------------------------------------------------------------------------- /testing/Cfg/bin/df__diskfull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/df__diskfull -------------------------------------------------------------------------------- /testing/Cfg/bin/df__partitions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/df__partitions -------------------------------------------------------------------------------- /testing/Cfg/bin/sendmail__test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/sendmail__test -------------------------------------------------------------------------------- /testing/Cfg/bin/zeek__test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/bin/zeek__test -------------------------------------------------------------------------------- /testing/Cfg/etc/networks.cfg__ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/networks.cfg__ipv4 -------------------------------------------------------------------------------- /testing/Cfg/etc/networks.cfg__ipv4_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/networks.cfg__ipv4_ipv6 -------------------------------------------------------------------------------- /testing/Cfg/etc/networks.cfg__ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/networks.cfg__ipv6 -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__af_packet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__af_packet -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__big_cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__big_cluster -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__cluster -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__env_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__env_vars -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__five_loggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__five_loggers -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__logger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__logger -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__myricom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__myricom -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__myricom_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__myricom_env -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__no_netifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__no_netifs -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__pfring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__pfring -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__pfring_2_nics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__pfring_2_nics -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__pfring_pin_cpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__pfring_pin_cpus -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__two_loggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__two_loggers -------------------------------------------------------------------------------- /testing/Cfg/etc/node.cfg__two_proxies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/node.cfg__two_proxies -------------------------------------------------------------------------------- /testing/Cfg/etc/zeekctl.cfg__debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/zeekctl.cfg__debug -------------------------------------------------------------------------------- /testing/Cfg/etc/zeekctl.cfg__no_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/zeekctl.cfg__no_email -------------------------------------------------------------------------------- /testing/Cfg/etc/zeekctl.cfg__pfring_round_robin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/zeekctl.cfg__pfring_round_robin -------------------------------------------------------------------------------- /testing/Cfg/etc/zeekctl.cfg__test_sendmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/etc/zeekctl.cfg__test_sendmail -------------------------------------------------------------------------------- /testing/Cfg/plugins/commandtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/plugins/commandtest.py -------------------------------------------------------------------------------- /testing/Cfg/plugins/nodekeystest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/plugins/nodekeystest.py -------------------------------------------------------------------------------- /testing/Cfg/plugins/optionstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/plugins/optionstest.py -------------------------------------------------------------------------------- /testing/Cfg/plugins/statetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/plugins/statetest.py -------------------------------------------------------------------------------- /testing/Cfg/plugins/zeekctlconfigtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Cfg/plugins/zeekctlconfigtest.py -------------------------------------------------------------------------------- /testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Makefile -------------------------------------------------------------------------------- /testing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/README -------------------------------------------------------------------------------- /testing/Scripts/build-zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/build-zeek -------------------------------------------------------------------------------- /testing/Scripts/diff-cluster-layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-cluster-layout -------------------------------------------------------------------------------- /testing/Scripts/diff-cron-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-cron-meta -------------------------------------------------------------------------------- /testing/Scripts/diff-cron-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-cron-stats -------------------------------------------------------------------------------- /testing/Scripts/diff-df-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-df-output -------------------------------------------------------------------------------- /testing/Scripts/diff-diag-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-diag-output -------------------------------------------------------------------------------- /testing/Scripts/diff-peerstatus-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-peerstatus-output -------------------------------------------------------------------------------- /testing/Scripts/diff-ps-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-ps-output -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-abspath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-abspath -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-localhost-values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-localhost-values -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-timestamps-dd-mmm-hh-mm-ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-timestamps-dd-mmm-hh-mm-ss -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-timestamps-unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-timestamps-unix -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-timestamps-yyyy-mm-dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-timestamps-yyyy-mm-dd -------------------------------------------------------------------------------- /testing/Scripts/diff-remove-timestamps-yyyy-mm-dd-hh-mm-ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-remove-timestamps-yyyy-mm-dd-hh-mm-ss -------------------------------------------------------------------------------- /testing/Scripts/diff-state-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-state-db -------------------------------------------------------------------------------- /testing/Scripts/diff-status-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-status-output -------------------------------------------------------------------------------- /testing/Scripts/diff-to-bytes-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-to-bytes-output -------------------------------------------------------------------------------- /testing/Scripts/diff-top-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-top-output -------------------------------------------------------------------------------- /testing/Scripts/diff-update-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-update-output -------------------------------------------------------------------------------- /testing/Scripts/diff-zeekctl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/diff-zeekctl-config -------------------------------------------------------------------------------- /testing/Scripts/zeekctl-test-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Scripts/zeekctl-test-setup -------------------------------------------------------------------------------- /testing/Traces/dns-session.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/Traces/dns-session.trace -------------------------------------------------------------------------------- /testing/btest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/btest.cfg -------------------------------------------------------------------------------- /testing/command/capstats.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/capstats.test -------------------------------------------------------------------------------- /testing/command/check.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/check.test -------------------------------------------------------------------------------- /testing/command/cleanup-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cleanup-crash.test -------------------------------------------------------------------------------- /testing/command/cleanup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cleanup.test -------------------------------------------------------------------------------- /testing/command/commands-with-usewebsocket.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/commands-with-usewebsocket.test -------------------------------------------------------------------------------- /testing/command/config.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/config.test -------------------------------------------------------------------------------- /testing/command/cron-croncmd.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-croncmd.test -------------------------------------------------------------------------------- /testing/command/cron-disk.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-disk.test -------------------------------------------------------------------------------- /testing/command/cron-enable-disable.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-enable-disable.test -------------------------------------------------------------------------------- /testing/command/cron-expire.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-expire.test -------------------------------------------------------------------------------- /testing/command/cron-expirecrash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-expirecrash.test -------------------------------------------------------------------------------- /testing/command/cron-expirestats.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-expirestats.test -------------------------------------------------------------------------------- /testing/command/cron-meta.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-meta.test -------------------------------------------------------------------------------- /testing/command/cron-restart-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-restart-crash.test -------------------------------------------------------------------------------- /testing/command/cron-stats.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/cron-stats.test -------------------------------------------------------------------------------- /testing/command/deploy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/deploy.test -------------------------------------------------------------------------------- /testing/command/df.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/df.test -------------------------------------------------------------------------------- /testing/command/diag.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/diag.test -------------------------------------------------------------------------------- /testing/command/exec.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/exec.test -------------------------------------------------------------------------------- /testing/command/exit-quit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/exit-quit.test -------------------------------------------------------------------------------- /testing/command/install-cluster-backend-zeromq.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-cluster-backend-zeromq.test -------------------------------------------------------------------------------- /testing/command/install-empty-file-extract-dir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-empty-file-extract-dir.test -------------------------------------------------------------------------------- /testing/command/install-layout-files.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-layout-files.test -------------------------------------------------------------------------------- /testing/command/install-local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-local.test -------------------------------------------------------------------------------- /testing/command/install-metrics-address.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-metrics-address.test -------------------------------------------------------------------------------- /testing/command/install-networks.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-networks.test -------------------------------------------------------------------------------- /testing/command/install-sitepolicypath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-sitepolicypath.test -------------------------------------------------------------------------------- /testing/command/install-state.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-state.test -------------------------------------------------------------------------------- /testing/command/install-usewebsocket.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-usewebsocket.test -------------------------------------------------------------------------------- /testing/command/install-zeekctl-config.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-zeekctl-config.test -------------------------------------------------------------------------------- /testing/command/install-zeekport.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install-zeekport.test -------------------------------------------------------------------------------- /testing/command/install.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/install.test -------------------------------------------------------------------------------- /testing/command/netstats.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/netstats.test -------------------------------------------------------------------------------- /testing/command/nodes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/nodes.test -------------------------------------------------------------------------------- /testing/command/peerstatus.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/peerstatus.test -------------------------------------------------------------------------------- /testing/command/print.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/print.test -------------------------------------------------------------------------------- /testing/command/process.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/process.test -------------------------------------------------------------------------------- /testing/command/restart-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/restart-crash.test -------------------------------------------------------------------------------- /testing/command/restart.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/restart.test -------------------------------------------------------------------------------- /testing/command/scripts.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/scripts.test -------------------------------------------------------------------------------- /testing/command/start-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-crash.test -------------------------------------------------------------------------------- /testing/command/start-memlimit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-memlimit.test -------------------------------------------------------------------------------- /testing/command/start-perms.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-perms.test -------------------------------------------------------------------------------- /testing/command/start-slowstart.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-slowstart.test -------------------------------------------------------------------------------- /testing/command/start-state-cluster.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-state-cluster.test -------------------------------------------------------------------------------- /testing/command/start-state-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-state-crash.test -------------------------------------------------------------------------------- /testing/command/start-state-standalone.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-state-standalone.test -------------------------------------------------------------------------------- /testing/command/start-stop-big-cluster.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-stop-big-cluster.test -------------------------------------------------------------------------------- /testing/command/start-stop-cluster.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-stop-cluster.test -------------------------------------------------------------------------------- /testing/command/start-stop-standalone.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-stop-standalone.test -------------------------------------------------------------------------------- /testing/command/start-zeekargs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/start-zeekargs.test -------------------------------------------------------------------------------- /testing/command/status-timefmt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/status-timefmt.test -------------------------------------------------------------------------------- /testing/command/status.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/status.test -------------------------------------------------------------------------------- /testing/command/stop-crash-shutdown.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-crash-shutdown.test -------------------------------------------------------------------------------- /testing/command/stop-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-crash.test -------------------------------------------------------------------------------- /testing/command/stop-slowstop.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-slowstop.test -------------------------------------------------------------------------------- /testing/command/stop-state-cluster.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-state-cluster.test -------------------------------------------------------------------------------- /testing/command/stop-state-crash.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-state-crash.test -------------------------------------------------------------------------------- /testing/command/stop-state-standalone.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/stop-state-standalone.test -------------------------------------------------------------------------------- /testing/command/top.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/command/top.test -------------------------------------------------------------------------------- /testing/helper/archive-log-compresscmd.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-compresscmd.test -------------------------------------------------------------------------------- /testing/helper/archive-log-gz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-gz.test -------------------------------------------------------------------------------- /testing/helper/archive-log-logdir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-logdir.test -------------------------------------------------------------------------------- /testing/helper/archive-log-makearchivename.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-makearchivename.test -------------------------------------------------------------------------------- /testing/helper/archive-log-no-compress.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-no-compress.test -------------------------------------------------------------------------------- /testing/helper/archive-log-no-mail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log-no-mail.test -------------------------------------------------------------------------------- /testing/helper/archive-log.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/archive-log.test -------------------------------------------------------------------------------- /testing/helper/make-archive-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/make-archive-name.test -------------------------------------------------------------------------------- /testing/helper/post-terminate-log-suffix.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/post-terminate-log-suffix.test -------------------------------------------------------------------------------- /testing/helper/to-bytes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/helper/to-bytes.test -------------------------------------------------------------------------------- /testing/initialization/node-env-vars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-env-vars.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-interfaces.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-interfaces.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-myricom.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-myricom.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-pfring-multiple-id.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-pfring-multiple-id.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-pfring-pin-cpus.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-pfring-pin-cpus.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-pfring-round-robin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-pfring-round-robin.test -------------------------------------------------------------------------------- /testing/initialization/node-lb-pfring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-lb-pfring.test -------------------------------------------------------------------------------- /testing/initialization/node-names.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/node-names.test -------------------------------------------------------------------------------- /testing/initialization/zeekctl-global-env-vars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/zeekctl-global-env-vars.test -------------------------------------------------------------------------------- /testing/initialization/zeekctl-mixed-case.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/zeekctl-mixed-case.test -------------------------------------------------------------------------------- /testing/initialization/zeekctl-new-option.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/zeekctl-new-option.test -------------------------------------------------------------------------------- /testing/initialization/zeekctl-node-env-vars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/zeekctl-node-env-vars.test -------------------------------------------------------------------------------- /testing/initialization/zeekctl-version.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/initialization/zeekctl-version.test -------------------------------------------------------------------------------- /testing/plugin/af_packet.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/af_packet.test -------------------------------------------------------------------------------- /testing/plugin/commands.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/commands.test -------------------------------------------------------------------------------- /testing/plugin/lb_myricom-env-vars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/lb_myricom-env-vars.test -------------------------------------------------------------------------------- /testing/plugin/lb_myricom.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/lb_myricom.test -------------------------------------------------------------------------------- /testing/plugin/lb_pf_ring-env-vars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/lb_pf_ring-env-vars.test -------------------------------------------------------------------------------- /testing/plugin/lb_pf_ring.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/lb_pf_ring.test -------------------------------------------------------------------------------- /testing/plugin/load.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/load.test -------------------------------------------------------------------------------- /testing/plugin/nodekeys.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/nodekeys.test -------------------------------------------------------------------------------- /testing/plugin/options.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/options.test -------------------------------------------------------------------------------- /testing/plugin/ps.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/ps.test -------------------------------------------------------------------------------- /testing/plugin/sitepluginpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/sitepluginpath.test -------------------------------------------------------------------------------- /testing/plugin/state.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/state.test -------------------------------------------------------------------------------- /testing/plugin/zeekctl-config.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/plugin/zeekctl-config.test -------------------------------------------------------------------------------- /testing/random.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/random.seed -------------------------------------------------------------------------------- /testing/rotation/much-logging.zeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/rotation/much-logging.zeek -------------------------------------------------------------------------------- /testing/rotation/multi-logger.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/rotation/multi-logger.test -------------------------------------------------------------------------------- /testing/rotation/single-logger.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/rotation/single-logger.test -------------------------------------------------------------------------------- /testing/test_api/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/testing/test_api/test_state.py -------------------------------------------------------------------------------- /util/extract-strictly-local-conns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/util/extract-strictly-local-conns -------------------------------------------------------------------------------- /util/make-plots.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/util/make-plots.r -------------------------------------------------------------------------------- /util/reformat-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeek/zeekctl/HEAD/util/reformat-stats --------------------------------------------------------------------------------