├── LICENSE ├── Makefile ├── README.md ├── configs ├── bridges.txt ├── onion.pac └── torrc.base ├── debian ├── anonsurf-cli.install ├── anonsurf-gtk.install ├── anonsurf.1 ├── anonsurf.bash-completion ├── anonsurf.install ├── anonsurf.manpages ├── changelog ├── control ├── copyright ├── dnstool.bash-completion ├── rules └── source │ └── format ├── icons ├── anon-about.svg ├── anonsurf.png ├── boot-off.svg ├── boot-on.svg ├── exit.png ├── help-about.png ├── nyx-logo.png ├── reload.png ├── sec-high.svg ├── sec-low.svg └── sec-med.svg ├── launchers ├── anon-change-identity.desktop ├── anon-check-ip.desktop ├── anon-gui.desktop ├── anon-surf-start.desktop ├── anon-surf-stop.desktop └── non-native │ ├── anonsurf-gtk.desktop │ ├── anonsurf-start.desktop │ └── anonsurf-stop.desktop ├── scripts ├── anondaemon └── safekill ├── src ├── nim │ ├── anonsurf │ │ ├── AnonSurfCli.nim │ │ ├── AnonSurfCli.nims │ │ ├── AnonSurfGTK.nim │ │ ├── AnonSurfGTK.nims │ │ ├── cli │ │ │ ├── ansurf_cli_help.nim │ │ │ ├── ansurf_cli_killapps.nim │ │ │ └── ansurf_cli_print.nim │ │ ├── cores │ │ │ ├── activities │ │ │ │ ├── boot_actions.nim │ │ │ │ ├── core_actions.nim │ │ │ │ ├── extra_actions.nim │ │ │ │ ├── kill_apps_actions.nim │ │ │ │ └── messages.nim │ │ │ ├── commons │ │ │ │ ├── ansurf_objects.nim │ │ │ │ ├── dns_utils.nim │ │ │ │ ├── parse_config.nim │ │ │ │ ├── parse_resp.nim │ │ │ │ └── services_status.nim │ │ │ ├── handle_activities.nim │ │ │ ├── handle_killapps.nim │ │ │ └── version.nim │ │ ├── gtk │ │ │ ├── ansurf_get_status.nim │ │ │ ├── ansurf_gtk_objects.nim │ │ │ ├── ansurf_gui_refresher.nim │ │ │ ├── ansurf_icons.nim │ │ │ ├── ansurf_systray.nim │ │ │ ├── ansurf_title_bar.nim │ │ │ ├── dialogs │ │ │ │ ├── ansurf_dialog_about.nim │ │ │ │ ├── ansurf_dialog_killapps.nim │ │ │ │ ├── ansurf_dialog_options.nim │ │ │ │ └── ansurf_dialog_tor_status.nim │ │ │ ├── gui_activities │ │ │ │ ├── core_activities.nim │ │ │ │ ├── dialog_options.nim │ │ │ │ ├── systray_activities.nim │ │ │ │ ├── widget_details.nim │ │ │ │ └── widget_main.nim │ │ │ ├── refresher │ │ │ │ ├── detail_widget_refresher.nim │ │ │ │ └── main_widget_refresher.nim │ │ │ ├── utils │ │ │ │ └── ansurf_gtk_kill_apps.nim │ │ │ └── widgets │ │ │ │ ├── ansurf_widget_details.nim │ │ │ │ └── ansurf_widgets_main.nim │ │ ├── make_torrc.nim │ │ └── options │ │ │ ├── option_generator.nim │ │ │ ├── option_handler.nim │ │ │ └── option_objects.nim │ └── dnstool │ │ ├── cli │ │ ├── help.nim │ │ └── print.nim │ │ ├── cores │ │ ├── dhclient.nim │ │ ├── dnstool_const.nim │ │ ├── handler.nim │ │ ├── hook_scripts.nim │ │ ├── resolvconf.nim │ │ └── utils.nim │ │ └── dnstool.nim └── vala │ ├── Makefile │ ├── anonsurf_api.nim │ ├── anonsurf_gtk.vala │ ├── cores │ ├── check_status.nim │ └── parse_options.nim │ └── gui │ ├── dialog_about.vala │ ├── dialog_options.vala │ ├── dialog_status.vala │ ├── layout_main.vala │ ├── layout_systray.vala │ ├── layout_titlebar.vala │ └── window_anonsurf.vala └── sys-units ├── anonsurfd └── anonsurfd.service /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/README.md -------------------------------------------------------------------------------- /configs/bridges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/configs/bridges.txt -------------------------------------------------------------------------------- /configs/onion.pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/configs/onion.pac -------------------------------------------------------------------------------- /configs/torrc.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/configs/torrc.base -------------------------------------------------------------------------------- /debian/anonsurf-cli.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/anonsurf-cli.install -------------------------------------------------------------------------------- /debian/anonsurf-gtk.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/anonsurf-gtk.install -------------------------------------------------------------------------------- /debian/anonsurf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/anonsurf.1 -------------------------------------------------------------------------------- /debian/anonsurf.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/anonsurf.bash-completion -------------------------------------------------------------------------------- /debian/anonsurf.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/anonsurf.install -------------------------------------------------------------------------------- /debian/anonsurf.manpages: -------------------------------------------------------------------------------- 1 | debian/anonsurf.1 -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dnstool.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/dnstool.bash-completion -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /icons/anon-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/anon-about.svg -------------------------------------------------------------------------------- /icons/anonsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/anonsurf.png -------------------------------------------------------------------------------- /icons/boot-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/boot-off.svg -------------------------------------------------------------------------------- /icons/boot-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/boot-on.svg -------------------------------------------------------------------------------- /icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/exit.png -------------------------------------------------------------------------------- /icons/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/help-about.png -------------------------------------------------------------------------------- /icons/nyx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/nyx-logo.png -------------------------------------------------------------------------------- /icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/reload.png -------------------------------------------------------------------------------- /icons/sec-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/sec-high.svg -------------------------------------------------------------------------------- /icons/sec-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/sec-low.svg -------------------------------------------------------------------------------- /icons/sec-med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/icons/sec-med.svg -------------------------------------------------------------------------------- /launchers/anon-change-identity.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/anon-change-identity.desktop -------------------------------------------------------------------------------- /launchers/anon-check-ip.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/anon-check-ip.desktop -------------------------------------------------------------------------------- /launchers/anon-gui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/anon-gui.desktop -------------------------------------------------------------------------------- /launchers/anon-surf-start.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/anon-surf-start.desktop -------------------------------------------------------------------------------- /launchers/anon-surf-stop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/anon-surf-stop.desktop -------------------------------------------------------------------------------- /launchers/non-native/anonsurf-gtk.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/non-native/anonsurf-gtk.desktop -------------------------------------------------------------------------------- /launchers/non-native/anonsurf-start.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/non-native/anonsurf-start.desktop -------------------------------------------------------------------------------- /launchers/non-native/anonsurf-stop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/launchers/non-native/anonsurf-stop.desktop -------------------------------------------------------------------------------- /scripts/anondaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/scripts/anondaemon -------------------------------------------------------------------------------- /scripts/safekill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/scripts/safekill -------------------------------------------------------------------------------- /src/nim/anonsurf/AnonSurfCli.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/AnonSurfCli.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/AnonSurfCli.nims: -------------------------------------------------------------------------------- 1 | switch("define", "ssl") -------------------------------------------------------------------------------- /src/nim/anonsurf/AnonSurfGTK.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/AnonSurfGTK.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/AnonSurfGTK.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/AnonSurfGTK.nims -------------------------------------------------------------------------------- /src/nim/anonsurf/cli/ansurf_cli_help.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cli/ansurf_cli_help.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cli/ansurf_cli_killapps.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cli/ansurf_cli_killapps.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cli/ansurf_cli_print.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cli/ansurf_cli_print.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/activities/boot_actions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/activities/boot_actions.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/activities/core_actions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/activities/core_actions.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/activities/extra_actions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/activities/extra_actions.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/activities/kill_apps_actions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/activities/kill_apps_actions.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/activities/messages.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/activities/messages.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/commons/ansurf_objects.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/commons/ansurf_objects.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/commons/dns_utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/commons/dns_utils.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/commons/parse_config.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/commons/parse_config.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/commons/parse_resp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/commons/parse_resp.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/commons/services_status.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/commons/services_status.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/handle_activities.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/handle_activities.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/handle_killapps.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/cores/handle_killapps.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/cores/version.nim: -------------------------------------------------------------------------------- 1 | const surfVersion* = "4.1.1" -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_get_status.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_get_status.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_gtk_objects.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_gtk_objects.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_gui_refresher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_gui_refresher.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_icons.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_icons.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_systray.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_systray.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/ansurf_title_bar.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/ansurf_title_bar.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/dialogs/ansurf_dialog_about.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/dialogs/ansurf_dialog_about.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/dialogs/ansurf_dialog_killapps.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/dialogs/ansurf_dialog_killapps.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/dialogs/ansurf_dialog_options.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/dialogs/ansurf_dialog_options.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/dialogs/ansurf_dialog_tor_status.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/dialogs/ansurf_dialog_tor_status.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/gui_activities/core_activities.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/gui_activities/core_activities.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/gui_activities/dialog_options.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/gui_activities/dialog_options.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/gui_activities/systray_activities.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/gui_activities/systray_activities.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/gui_activities/widget_details.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/gui_activities/widget_details.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/gui_activities/widget_main.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/gui_activities/widget_main.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/refresher/detail_widget_refresher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/refresher/detail_widget_refresher.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/refresher/main_widget_refresher.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/refresher/main_widget_refresher.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/utils/ansurf_gtk_kill_apps.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/utils/ansurf_gtk_kill_apps.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/widgets/ansurf_widget_details.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/widgets/ansurf_widget_details.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/gtk/widgets/ansurf_widgets_main.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/gtk/widgets/ansurf_widgets_main.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/make_torrc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/make_torrc.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/options/option_generator.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/options/option_generator.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/options/option_handler.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/options/option_handler.nim -------------------------------------------------------------------------------- /src/nim/anonsurf/options/option_objects.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/anonsurf/options/option_objects.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cli/help.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cli/help.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cli/print.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cli/print.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/dhclient.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/dhclient.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/dnstool_const.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/dnstool_const.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/handler.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/handler.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/hook_scripts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/hook_scripts.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/resolvconf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/resolvconf.nim -------------------------------------------------------------------------------- /src/nim/dnstool/cores/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/cores/utils.nim -------------------------------------------------------------------------------- /src/nim/dnstool/dnstool.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/nim/dnstool/dnstool.nim -------------------------------------------------------------------------------- /src/vala/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/Makefile -------------------------------------------------------------------------------- /src/vala/anonsurf_api.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/anonsurf_api.nim -------------------------------------------------------------------------------- /src/vala/anonsurf_gtk.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/anonsurf_gtk.vala -------------------------------------------------------------------------------- /src/vala/cores/check_status.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/cores/check_status.nim -------------------------------------------------------------------------------- /src/vala/cores/parse_options.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/cores/parse_options.nim -------------------------------------------------------------------------------- /src/vala/gui/dialog_about.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/dialog_about.vala -------------------------------------------------------------------------------- /src/vala/gui/dialog_options.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/dialog_options.vala -------------------------------------------------------------------------------- /src/vala/gui/dialog_status.vala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vala/gui/layout_main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/layout_main.vala -------------------------------------------------------------------------------- /src/vala/gui/layout_systray.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/layout_systray.vala -------------------------------------------------------------------------------- /src/vala/gui/layout_titlebar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/layout_titlebar.vala -------------------------------------------------------------------------------- /src/vala/gui/window_anonsurf.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/src/vala/gui/window_anonsurf.vala -------------------------------------------------------------------------------- /sys-units/anonsurfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/sys-units/anonsurfd -------------------------------------------------------------------------------- /sys-units/anonsurfd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/anonsurf/HEAD/sys-units/anonsurfd.service --------------------------------------------------------------------------------