A small server which checks if user's IP is in a trusted Fenix network.
Project description
fenix-checker
A small server which checks if user's IP is in a trusted Fenix network. Used by ipv6widget
and standard-konektivity.cz.
Dependencies
- Python >= 3.6
- pyaml >= 17
- psycopg2 >= 2.7.4
Installation
$ virtualenv -p `which python3.6` .venv
$ source .venv/bin/activate
$ pip install fenix_checker
$ cp config.example.yml config.yml
$ $EDITOR config.yml # set DB credentials
Running in production
uWSGI:
$ uwsgi --master --single-interpreter --threads 2 --http :5000 -H .venv -w fenix_checker.server
GUnicorn:
$ gunicorn -w 2 -k gevent --timeout 160 -n netmetr-proxy fenix_checker:server:app
Usage
GET /
-> 200
{"result": 1}
Result is:
0
for non-Fenix networks>= 1
for Fenix networks
IP is validated with Python's ipaddress
module before passing it to DB:
GET / # with client IP somehow spoofed to eg. "127.0.0.1'); DROP TABLE networks;"
-> 400
{"error": "Invalid IP"}
Development
Starting server with auto reload on file changes:
$ FLASK_APP=fenix_checker/server.py FLASK_DEBUG=1 flask run
Linting Python code:
$ flake8 --config=.flake8rc *py
License
GPLv3
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fenix-checker-0.1.4.tar.gz
(16.5 kB
view details)
File details
Details for the file fenix-checker-0.1.4.tar.gz
.
File metadata
- Download URL: fenix-checker-0.1.4.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f90595107bb09bc23e233753a6ce9909e2dc849e810721c758fd011db4b8d40 |
|
MD5 | 579d745a49c6dec07590cf0e2f51f72d |
|
BLAKE2b-256 | 9baa6876e84f82b891cd64a94a3cd7cdee2cd62d01cdd1f38f6b86ae48cbf32c |