├── .gitignore ├── LICENSE ├── README.md ├── nyx.1 ├── nyx ├── __init__.py ├── arguments.py ├── curses.py ├── log.py ├── menu.py ├── panel │ ├── __init__.py │ ├── config.py │ ├── connection.py │ ├── graph.py │ ├── header.py │ ├── interpreter.py │ ├── log.py │ └── torrc.py ├── popups.py ├── settings │ ├── attributes.cfg │ └── dedup.cfg ├── starter.py ├── tracker.py └── uninstall ├── run_nyx ├── run_tests.py ├── setup.py ├── test ├── __init__.py ├── arguments.py ├── cache.py ├── installation.py ├── log │ ├── __init__.py │ ├── condense_runlevels.py │ ├── data │ │ ├── daybreak_deduplication │ │ ├── empty_file │ │ ├── malformed_date │ │ ├── malformed_line │ │ ├── malformed_runlevel │ │ ├── multiple_tor_instances │ │ └── tor_log │ ├── log_entry.py │ ├── log_group.py │ └── read_tor_log.py ├── menu.py ├── panel │ ├── __init__.py │ ├── config.py │ ├── connection.py │ ├── graph.py │ ├── header.py │ ├── interpreter.py │ ├── log.py │ └── torrc.py ├── popups.py ├── settings.cfg ├── subwindow.py └── tracker │ ├── __init__.py │ ├── connection_tracker.py │ ├── daemon.py │ ├── port_usage_tracker.py │ └── resource_tracker.py └── web ├── HFM_INT_0001.mp3 ├── changelog ├── index.html └── legacy.html ├── images ├── bugtracker.png ├── down_arrow_brown.png ├── down_arrow_white.png ├── download │ ├── archlinux.png │ ├── debian.png │ ├── fedora.png │ ├── file.png │ ├── freebsd.png │ ├── gentoo.png │ ├── git.png │ ├── git_alt.png │ ├── mac.png │ ├── netbsd.png │ ├── openbsd.png │ ├── pypi.png │ ├── redhat.png │ ├── resources │ │ └── fedora.svg │ ├── slackware.png │ ├── source.txt │ └── ubuntu.png ├── email.png ├── faq │ ├── acs_failure.png │ ├── resources │ │ ├── nyx_by_shadowgirl-d5oeuj8.jpg │ │ └── vidalia_full.png │ ├── shadowgirl.jpg │ └── vidalia.jpg ├── favicon.png ├── features │ ├── bandwidth.png │ ├── config_editor.png │ ├── connections.png │ ├── events.png │ ├── interpreter.png │ ├── menu.png │ └── torrc.png ├── grid.png ├── irc.png ├── irc.xcf ├── logo.png ├── logo.svg ├── screenshots │ ├── acs_failure.png │ ├── config_editor.png │ ├── connections.png │ ├── front_page.png │ ├── interpreter.png │ └── torrc.png └── source.txt ├── index.html ├── jquery.tools.min.js ├── nyxrc.sample └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | src/stem/ 4 | build/ 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/README.md -------------------------------------------------------------------------------- /nyx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx.1 -------------------------------------------------------------------------------- /nyx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/__init__.py -------------------------------------------------------------------------------- /nyx/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/arguments.py -------------------------------------------------------------------------------- /nyx/curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/curses.py -------------------------------------------------------------------------------- /nyx/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/log.py -------------------------------------------------------------------------------- /nyx/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/menu.py -------------------------------------------------------------------------------- /nyx/panel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/__init__.py -------------------------------------------------------------------------------- /nyx/panel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/config.py -------------------------------------------------------------------------------- /nyx/panel/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/connection.py -------------------------------------------------------------------------------- /nyx/panel/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/graph.py -------------------------------------------------------------------------------- /nyx/panel/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/header.py -------------------------------------------------------------------------------- /nyx/panel/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/interpreter.py -------------------------------------------------------------------------------- /nyx/panel/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/log.py -------------------------------------------------------------------------------- /nyx/panel/torrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/panel/torrc.py -------------------------------------------------------------------------------- /nyx/popups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/popups.py -------------------------------------------------------------------------------- /nyx/settings/attributes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/settings/attributes.cfg -------------------------------------------------------------------------------- /nyx/settings/dedup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/settings/dedup.cfg -------------------------------------------------------------------------------- /nyx/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/starter.py -------------------------------------------------------------------------------- /nyx/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/tracker.py -------------------------------------------------------------------------------- /nyx/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/nyx/uninstall -------------------------------------------------------------------------------- /run_nyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/run_nyx -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/arguments.py -------------------------------------------------------------------------------- /test/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/cache.py -------------------------------------------------------------------------------- /test/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/installation.py -------------------------------------------------------------------------------- /test/log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/__init__.py -------------------------------------------------------------------------------- /test/log/condense_runlevels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/condense_runlevels.py -------------------------------------------------------------------------------- /test/log/data/daybreak_deduplication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/daybreak_deduplication -------------------------------------------------------------------------------- /test/log/data/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/log/data/malformed_date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/malformed_date -------------------------------------------------------------------------------- /test/log/data/malformed_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/malformed_line -------------------------------------------------------------------------------- /test/log/data/malformed_runlevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/malformed_runlevel -------------------------------------------------------------------------------- /test/log/data/multiple_tor_instances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/multiple_tor_instances -------------------------------------------------------------------------------- /test/log/data/tor_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/data/tor_log -------------------------------------------------------------------------------- /test/log/log_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/log_entry.py -------------------------------------------------------------------------------- /test/log/log_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/log_group.py -------------------------------------------------------------------------------- /test/log/read_tor_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/log/read_tor_log.py -------------------------------------------------------------------------------- /test/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/menu.py -------------------------------------------------------------------------------- /test/panel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/__init__.py -------------------------------------------------------------------------------- /test/panel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/config.py -------------------------------------------------------------------------------- /test/panel/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/connection.py -------------------------------------------------------------------------------- /test/panel/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/graph.py -------------------------------------------------------------------------------- /test/panel/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/header.py -------------------------------------------------------------------------------- /test/panel/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/interpreter.py -------------------------------------------------------------------------------- /test/panel/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/log.py -------------------------------------------------------------------------------- /test/panel/torrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/panel/torrc.py -------------------------------------------------------------------------------- /test/popups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/popups.py -------------------------------------------------------------------------------- /test/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/settings.cfg -------------------------------------------------------------------------------- /test/subwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/subwindow.py -------------------------------------------------------------------------------- /test/tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/tracker/__init__.py -------------------------------------------------------------------------------- /test/tracker/connection_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/tracker/connection_tracker.py -------------------------------------------------------------------------------- /test/tracker/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/tracker/daemon.py -------------------------------------------------------------------------------- /test/tracker/port_usage_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/tracker/port_usage_tracker.py -------------------------------------------------------------------------------- /test/tracker/resource_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/test/tracker/resource_tracker.py -------------------------------------------------------------------------------- /web/HFM_INT_0001.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/HFM_INT_0001.mp3 -------------------------------------------------------------------------------- /web/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/changelog/index.html -------------------------------------------------------------------------------- /web/changelog/legacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/changelog/legacy.html -------------------------------------------------------------------------------- /web/images/bugtracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/bugtracker.png -------------------------------------------------------------------------------- /web/images/down_arrow_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/down_arrow_brown.png -------------------------------------------------------------------------------- /web/images/down_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/down_arrow_white.png -------------------------------------------------------------------------------- /web/images/download/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/archlinux.png -------------------------------------------------------------------------------- /web/images/download/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/debian.png -------------------------------------------------------------------------------- /web/images/download/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/fedora.png -------------------------------------------------------------------------------- /web/images/download/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/file.png -------------------------------------------------------------------------------- /web/images/download/freebsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/freebsd.png -------------------------------------------------------------------------------- /web/images/download/gentoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/gentoo.png -------------------------------------------------------------------------------- /web/images/download/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/git.png -------------------------------------------------------------------------------- /web/images/download/git_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/git_alt.png -------------------------------------------------------------------------------- /web/images/download/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/mac.png -------------------------------------------------------------------------------- /web/images/download/netbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/netbsd.png -------------------------------------------------------------------------------- /web/images/download/openbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/openbsd.png -------------------------------------------------------------------------------- /web/images/download/pypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/pypi.png -------------------------------------------------------------------------------- /web/images/download/redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/redhat.png -------------------------------------------------------------------------------- /web/images/download/resources/fedora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/resources/fedora.svg -------------------------------------------------------------------------------- /web/images/download/slackware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/slackware.png -------------------------------------------------------------------------------- /web/images/download/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/source.txt -------------------------------------------------------------------------------- /web/images/download/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/download/ubuntu.png -------------------------------------------------------------------------------- /web/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/email.png -------------------------------------------------------------------------------- /web/images/faq/acs_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/faq/acs_failure.png -------------------------------------------------------------------------------- /web/images/faq/resources/nyx_by_shadowgirl-d5oeuj8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/faq/resources/nyx_by_shadowgirl-d5oeuj8.jpg -------------------------------------------------------------------------------- /web/images/faq/resources/vidalia_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/faq/resources/vidalia_full.png -------------------------------------------------------------------------------- /web/images/faq/shadowgirl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/faq/shadowgirl.jpg -------------------------------------------------------------------------------- /web/images/faq/vidalia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/faq/vidalia.jpg -------------------------------------------------------------------------------- /web/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/favicon.png -------------------------------------------------------------------------------- /web/images/features/bandwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/bandwidth.png -------------------------------------------------------------------------------- /web/images/features/config_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/config_editor.png -------------------------------------------------------------------------------- /web/images/features/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/connections.png -------------------------------------------------------------------------------- /web/images/features/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/events.png -------------------------------------------------------------------------------- /web/images/features/interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/interpreter.png -------------------------------------------------------------------------------- /web/images/features/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/menu.png -------------------------------------------------------------------------------- /web/images/features/torrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/features/torrc.png -------------------------------------------------------------------------------- /web/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/grid.png -------------------------------------------------------------------------------- /web/images/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/irc.png -------------------------------------------------------------------------------- /web/images/irc.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/irc.xcf -------------------------------------------------------------------------------- /web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/logo.png -------------------------------------------------------------------------------- /web/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/logo.svg -------------------------------------------------------------------------------- /web/images/screenshots/acs_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/acs_failure.png -------------------------------------------------------------------------------- /web/images/screenshots/config_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/config_editor.png -------------------------------------------------------------------------------- /web/images/screenshots/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/connections.png -------------------------------------------------------------------------------- /web/images/screenshots/front_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/front_page.png -------------------------------------------------------------------------------- /web/images/screenshots/interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/interpreter.png -------------------------------------------------------------------------------- /web/images/screenshots/torrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/screenshots/torrc.png -------------------------------------------------------------------------------- /web/images/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/images/source.txt -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/index.html -------------------------------------------------------------------------------- /web/jquery.tools.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/jquery.tools.min.js -------------------------------------------------------------------------------- /web/nyxrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/nyxrc.sample -------------------------------------------------------------------------------- /web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torproject/nyx/HEAD/web/styles.css --------------------------------------------------------------------------------