Relay server for EDRN DMCC password verification
Project description
🏃 JPL EDRN DMCC Password Relay
This package provides a simple, safe server that listens for usernames and password for the Early Detection Research Network's Data Management and Coordinating Center's so-called "secure site". It uses the center's antique SOAP service to check those passwords, then gives back a single byte response indicating if the password's valid.
It's intended to be used with dmccauth, an overlay to OpenLDAP's standalone slapd server. OpenLDAP overlays must be programmed in C and use dynamically-loaded objects, but SOAP implementations for C are available only as static APIs.
With this running alongside OpenLDAP and the dmccauth
overlay, we can overcome this problem.
💽 Installation
This software requires Python 3. Python 3.9 or later is recommended, but Python 4 is not. Typically, you'll make a virtual environment and install the software with a litany like:
python3 -m venv password-relay
cd password-relay
bin/pip install --upgrade --quiet setuptools wheel pip
bin/pip install password-relay==X.Y.Z
where X.Y.Z
is the version you want. To upgrade an existing installation, add --upgrade
. You can then start the server:
bin/dmcc-passwordrelay
By default, the server creates its listening socket in /tmp/dmcc.socket
. You can customize that with --socket
. Try --help
for all the options.
🩺 Testing
You can see if it's working correctly by running the following from another session:
printf 'USERNAME\PASSWORD\n' | nc -U /tmp/dmcc.socket | more
Replace USERNAME
and PASSWORD
and the socket path if necessary. You'll see a 1
for a valid password, or 0
for invalid.
😈 Daemonizing
The software runs in the foreground and should always be running. However, it supports no automatic restart. For that, it's recommended you run it under Supervisord:
bin/pip install supervisor
Then make a supervisord.conf
similar to the following:
[supervisord]
logfile = %(here)s/var/log/supervisor.log
logfile_backups = 3
loglevel = debug
pidfile = %(here)s/var/supervisor.pid
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[unix_http_server]
file = %(here)s/var/sockets/supervisor
[supervisorctl]
serverurl = unix:%(here)s/var/sockets/supervisor
[program:passwordrelay]
command = %(here)s/.venv/bin/dmcc-passwordrelay --socket %(here)s/var/sockets/dmcc
autorestart = true
🔧 Development
To develop this locally, try the following:
git clone https://github.com/EDRN/jpl.edrn.dmcc.passwordrelay
cd jpl.edrn.dmcc.passwordrelay
python3 -m venv venv
venv/bin/pip install --upgrade --silet setuptools build dist wheel
vnev/bin/pip install --editable .
👥 Contributing
You can start by looking at the open issues, forking the project, and submitting a pull request. You can also contact us by email with suggestions.
🔢 Versioning
We use the SemVer philosophy for versioning this software. For versions available, see the releases made on this project.
👩🎨 Creators
The principal developer is:
📃 License
The project is licensed under the Apache version 2 license.
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
Built Distribution
Hashes for jpl.edrn.dmcc.passwordrelay-0.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3382526d07f8df38b97ae780497ccdf072507ac62fc3959c2d58b8a068a5ca5 |
|
MD5 | d20f20ff7282cf798ba577242c3c877e |
|
BLAKE2b-256 | 944214d209c1dd46e9b604414f9abdf22a5da8573e16b4d649251ba7019f491c |
Hashes for jpl.edrn.dmcc.passwordrelay-0.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c0f30e00fe768e1ed7bdbfb193390c1b0ec7ca89bd242b05bbf8521849de0e8 |
|
MD5 | 31d2422f533940b1001e11d78ec63025 |
|
BLAKE2b-256 | bb5784b5e46b5dda22771e145501249662ea484b3801828ee51678373a0f3fde |