├── .dockerignore ├── .github └── workflows │ ├── flowzone.yml │ └── pages.yml ├── .gitignore ├── .travis.yml ├── .versionbot └── CHANGELOG.yml ├── CHANGELOG.md ├── CNAME ├── Caddyfile.template ├── LICENSE.md ├── README.md ├── _config.yml ├── auth ├── account-creator.sh ├── admin-reset.sh ├── auth.py ├── db │ ├── auth.default.db │ └── updates │ │ └── 0-to-1.sql ├── pbkdf2_sha256_hash.py ├── requirements.txt ├── settings.py ├── static └── templates │ ├── __404.html │ ├── __500.html │ ├── base.html │ ├── ddns.html │ ├── flash_messages.html │ ├── form.html │ ├── index.html │ ├── login.html │ └── redirect.html ├── bypass-domains.txt ├── crond.template ├── daemon.json ├── dnsmasq.conf.template ├── docker-compose.yml.template ├── docker-sniproxy ├── Dockerfile ├── README.md ├── functions ├── run.sh └── sniproxy.conf.template ├── favicon.ico ├── id_rsa.travis.enc ├── id_rsa.travis.pub ├── init ├── netflix-proxy-admin.conf └── netflix-proxy-admin.service ├── proxy-domains.txt ├── requirements.txt ├── scripts ├── ddns_updater.sh ├── functions └── globals ├── static ├── admin.png ├── bitcoin_qr.png ├── digitalocean.png ├── dreamhost.png ├── gandi.png ├── kamatera.png ├── petition.png ├── poll_results.png └── vultr.png ├── tests ├── .travis.yml.videotest ├── __isfork.sh ├── __testbuild.sh ├── artifacts │ └── .gitignore ├── chromedriver ├── gh-pages-push.sh ├── requirements.txt ├── settings.py ├── testbuild.py └── testvideo.py ├── update.sh └── wwwroot └── static ├── css ├── app.css ├── bootstrap-theme.min.css └── bootstrap.min.css ├── favico.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 ├── vicons.eot ├── vicons.svg ├── vicons.ttf └── vicons.woff └── js ├── bootstrap.min.js └── jquery-3.2.1.slim.min.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.github/workflows/flowzone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/.github/workflows/flowzone.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /.versionbot/CHANGELOG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/.versionbot/CHANGELOG.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | netflix-proxy.belodedenko.me 2 | -------------------------------------------------------------------------------- /Caddyfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/Caddyfile.template -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/_config.yml -------------------------------------------------------------------------------- /auth/account-creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/account-creator.sh -------------------------------------------------------------------------------- /auth/admin-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/admin-reset.sh -------------------------------------------------------------------------------- /auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/auth.py -------------------------------------------------------------------------------- /auth/db/auth.default.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/db/auth.default.db -------------------------------------------------------------------------------- /auth/db/updates/0-to-1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/db/updates/0-to-1.sql -------------------------------------------------------------------------------- /auth/pbkdf2_sha256_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/pbkdf2_sha256_hash.py -------------------------------------------------------------------------------- /auth/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/requirements.txt -------------------------------------------------------------------------------- /auth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/settings.py -------------------------------------------------------------------------------- /auth/static: -------------------------------------------------------------------------------- 1 | ../wwwroot/static/ -------------------------------------------------------------------------------- /auth/templates/__404.html: -------------------------------------------------------------------------------- 1 | 404 Not Found -------------------------------------------------------------------------------- /auth/templates/__500.html: -------------------------------------------------------------------------------- 1 | 500 Internal Server Error -------------------------------------------------------------------------------- /auth/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/base.html -------------------------------------------------------------------------------- /auth/templates/ddns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/ddns.html -------------------------------------------------------------------------------- /auth/templates/flash_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/flash_messages.html -------------------------------------------------------------------------------- /auth/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/form.html -------------------------------------------------------------------------------- /auth/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/index.html -------------------------------------------------------------------------------- /auth/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/login.html -------------------------------------------------------------------------------- /auth/templates/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/auth/templates/redirect.html -------------------------------------------------------------------------------- /bypass-domains.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crond.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/crond.template -------------------------------------------------------------------------------- /daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/daemon.json -------------------------------------------------------------------------------- /dnsmasq.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/dnsmasq.conf.template -------------------------------------------------------------------------------- /docker-compose.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-compose.yml.template -------------------------------------------------------------------------------- /docker-sniproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-sniproxy/Dockerfile -------------------------------------------------------------------------------- /docker-sniproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-sniproxy/README.md -------------------------------------------------------------------------------- /docker-sniproxy/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-sniproxy/functions -------------------------------------------------------------------------------- /docker-sniproxy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-sniproxy/run.sh -------------------------------------------------------------------------------- /docker-sniproxy/sniproxy.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/docker-sniproxy/sniproxy.conf.template -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/favicon.ico -------------------------------------------------------------------------------- /id_rsa.travis.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/id_rsa.travis.enc -------------------------------------------------------------------------------- /id_rsa.travis.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/id_rsa.travis.pub -------------------------------------------------------------------------------- /init/netflix-proxy-admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/init/netflix-proxy-admin.conf -------------------------------------------------------------------------------- /init/netflix-proxy-admin.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/init/netflix-proxy-admin.service -------------------------------------------------------------------------------- /proxy-domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/proxy-domains.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docker-compose 2 | -------------------------------------------------------------------------------- /scripts/ddns_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/scripts/ddns_updater.sh -------------------------------------------------------------------------------- /scripts/functions: -------------------------------------------------------------------------------- 1 | ../docker-sniproxy/functions -------------------------------------------------------------------------------- /scripts/globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/scripts/globals -------------------------------------------------------------------------------- /static/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/admin.png -------------------------------------------------------------------------------- /static/bitcoin_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/bitcoin_qr.png -------------------------------------------------------------------------------- /static/digitalocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/digitalocean.png -------------------------------------------------------------------------------- /static/dreamhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/dreamhost.png -------------------------------------------------------------------------------- /static/gandi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/gandi.png -------------------------------------------------------------------------------- /static/kamatera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/kamatera.png -------------------------------------------------------------------------------- /static/petition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/petition.png -------------------------------------------------------------------------------- /static/poll_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/poll_results.png -------------------------------------------------------------------------------- /static/vultr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/static/vultr.png -------------------------------------------------------------------------------- /tests/.travis.yml.videotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/.travis.yml.videotest -------------------------------------------------------------------------------- /tests/__isfork.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/__isfork.sh -------------------------------------------------------------------------------- /tests/__testbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/__testbuild.sh -------------------------------------------------------------------------------- /tests/artifacts/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /tests/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/chromedriver -------------------------------------------------------------------------------- /tests/gh-pages-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/gh-pages-push.sh -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/testbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/testbuild.py -------------------------------------------------------------------------------- /tests/testvideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/tests/testvideo.py -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/update.sh -------------------------------------------------------------------------------- /wwwroot/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/css/app.css -------------------------------------------------------------------------------- /wwwroot/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /wwwroot/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/static/favico.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wwwroot/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /wwwroot/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /wwwroot/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /wwwroot/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /wwwroot/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /wwwroot/static/fonts/vicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/vicons.eot -------------------------------------------------------------------------------- /wwwroot/static/fonts/vicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/vicons.svg -------------------------------------------------------------------------------- /wwwroot/static/fonts/vicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/vicons.ttf -------------------------------------------------------------------------------- /wwwroot/static/fonts/vicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/fonts/vicons.woff -------------------------------------------------------------------------------- /wwwroot/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/static/js/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab77/netflix-proxy/HEAD/wwwroot/static/js/jquery-3.2.1.slim.min.js --------------------------------------------------------------------------------