├── .github └── workflows │ ├── build-openwrt-packages.yml │ ├── build-openwrt.yml │ └── ssh2004.yml ├── .gitignore ├── QUICK-START.md ├── README.md ├── TECH.md ├── packages ├── hellothere │ ├── Makefile │ └── files │ │ ├── hellothere │ │ ├── hellothere.conf │ │ ├── hellothere.init │ │ └── lib_hellothere │ │ ├── 01-hello.sh │ │ ├── 02-tor.sh │ │ ├── 03-teredo.sh │ │ └── 04-autossh.sh ├── lft │ └── Makefile ├── openvpn │ └── patches │ │ └── 0001-Implement-server_poll_timeout-for-socks-instead-of-h.patch ├── psiphon │ ├── Makefile │ ├── Makefile_bin │ └── files │ │ ├── psiphon.conf │ │ ├── psiphon.config │ │ ├── psiphon.init │ │ └── server_list.dat ├── tor-relay-scanner │ ├── Makefile │ └── files │ │ ├── tor-relay-scanner │ │ ├── tor_relay_scanner.conf │ │ └── tor_relay_scanner.init └── tor │ └── patches │ ├── 0001-cipherpatch.patch │ ├── 0002-ciphershuffle.patch │ └── 0003-fake_hostname-.com-to-.org.patch ├── provision ├── etc │ ├── config │ │ ├── hellothere │ │ └── provision │ └── dropbear │ │ ├── authorized_keys │ │ └── known_hosts └── tmp │ └── provision │ ├── openvpn │ └── inside.conf │ └── uci-defaults │ ├── 01-set-password │ ├── 05-configure-wifi │ ├── 10-openvpn │ ├── 20-autossh │ ├── 20-psiphon │ └── 20-tor-relay-scanner-disable-dns └── provision_archive.sh /.github/workflows/build-openwrt-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/.github/workflows/build-openwrt-packages.yml -------------------------------------------------------------------------------- /.github/workflows/build-openwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/.github/workflows/build-openwrt.yml -------------------------------------------------------------------------------- /.github/workflows/ssh2004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/.github/workflows/ssh2004.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.directory 2 | -------------------------------------------------------------------------------- /QUICK-START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/QUICK-START.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/README.md -------------------------------------------------------------------------------- /TECH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/TECH.md -------------------------------------------------------------------------------- /packages/hellothere/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/Makefile -------------------------------------------------------------------------------- /packages/hellothere/files/hellothere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/hellothere -------------------------------------------------------------------------------- /packages/hellothere/files/hellothere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/hellothere.conf -------------------------------------------------------------------------------- /packages/hellothere/files/hellothere.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/hellothere.init -------------------------------------------------------------------------------- /packages/hellothere/files/lib_hellothere/01-hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/lib_hellothere/01-hello.sh -------------------------------------------------------------------------------- /packages/hellothere/files/lib_hellothere/02-tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/lib_hellothere/02-tor.sh -------------------------------------------------------------------------------- /packages/hellothere/files/lib_hellothere/03-teredo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/lib_hellothere/03-teredo.sh -------------------------------------------------------------------------------- /packages/hellothere/files/lib_hellothere/04-autossh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/hellothere/files/lib_hellothere/04-autossh.sh -------------------------------------------------------------------------------- /packages/lft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/lft/Makefile -------------------------------------------------------------------------------- /packages/openvpn/patches/0001-Implement-server_poll_timeout-for-socks-instead-of-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/openvpn/patches/0001-Implement-server_poll_timeout-for-socks-instead-of-h.patch -------------------------------------------------------------------------------- /packages/psiphon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/Makefile -------------------------------------------------------------------------------- /packages/psiphon/Makefile_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/Makefile_bin -------------------------------------------------------------------------------- /packages/psiphon/files/psiphon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/files/psiphon.conf -------------------------------------------------------------------------------- /packages/psiphon/files/psiphon.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/files/psiphon.config -------------------------------------------------------------------------------- /packages/psiphon/files/psiphon.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/files/psiphon.init -------------------------------------------------------------------------------- /packages/psiphon/files/server_list.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/psiphon/files/server_list.dat -------------------------------------------------------------------------------- /packages/tor-relay-scanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor-relay-scanner/Makefile -------------------------------------------------------------------------------- /packages/tor-relay-scanner/files/tor-relay-scanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor-relay-scanner/files/tor-relay-scanner -------------------------------------------------------------------------------- /packages/tor-relay-scanner/files/tor_relay_scanner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor-relay-scanner/files/tor_relay_scanner.conf -------------------------------------------------------------------------------- /packages/tor-relay-scanner/files/tor_relay_scanner.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor-relay-scanner/files/tor_relay_scanner.init -------------------------------------------------------------------------------- /packages/tor/patches/0001-cipherpatch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor/patches/0001-cipherpatch.patch -------------------------------------------------------------------------------- /packages/tor/patches/0002-ciphershuffle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor/patches/0002-ciphershuffle.patch -------------------------------------------------------------------------------- /packages/tor/patches/0003-fake_hostname-.com-to-.org.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/packages/tor/patches/0003-fake_hostname-.com-to-.org.patch -------------------------------------------------------------------------------- /provision/etc/config/hellothere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/etc/config/hellothere -------------------------------------------------------------------------------- /provision/etc/config/provision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/etc/config/provision -------------------------------------------------------------------------------- /provision/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/etc/dropbear/authorized_keys -------------------------------------------------------------------------------- /provision/etc/dropbear/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/etc/dropbear/known_hosts -------------------------------------------------------------------------------- /provision/tmp/provision/openvpn/inside.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/openvpn/inside.conf -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/01-set-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/01-set-password -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/05-configure-wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/05-configure-wifi -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/10-openvpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/10-openvpn -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/20-autossh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/20-autossh -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/20-psiphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/20-psiphon -------------------------------------------------------------------------------- /provision/tmp/provision/uci-defaults/20-tor-relay-scanner-disable-dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision/tmp/provision/uci-defaults/20-tor-relay-scanner-disable-dns -------------------------------------------------------------------------------- /provision_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/hoogmoon-testing/HEAD/provision_archive.sh --------------------------------------------------------------------------------