Skip to main content

RADIUS authentication module

Project description

Travis CI Status Code Coverage https://badge.fury.io/py/py-radius.svg

py-radius

RADIUS authentication module for Python 2.7.13+

(c) 1999 Stuart Bishop <stuart@stuartbishop.net>

This module provides basic RADIUS client capabilities, allowing your Python code to authenticate against any RFC2138 compliant RADIUS server.

Installation

$ pip install py-radius

Usage

The radius.py module can be run from the command line, providing a minimal RADIUS client to test out RADIUS servers:

$ python -m radius
Host [default: 'radius']: radius
Port [default: 1812]: 1812
Enter RADIUS Secret: s3cr3t
Enter your username: foobar
Enter your password: qux
...
Authentication Successful

Example

Here is an example of using the library.

import radius

radius.authenticate(secret, username, password, host='radius', port=1812)

# - OR -

r = radius.Radius(secret, host='radius', port=1812)
print('success' if r.authenticate(username, password) else 'failure')

If your RADIUS server requires challenge/response, the usage is a bit more complex.

import radius

r = radius.Radius(secret, host='radius')

try:
    print('success' if r.authenticate(username, password) else 'failure')
    sys.exit(0)
except radius.ChallengeResponse as e:
    pass

# The ChallengeResponse exception has `messages` and `state` attributes
# `messages` can be displayed to the user to prompt them for their
# challenge response. `state` must be echoed back as a RADIUS attribute.

# Send state as an attribute _IF_ provided.
attrs = {'State': e.state} if e.state else {}

# Finally authenticate again using the challenge response from the user
# in place of the password.
print('success' if r.authenticate(username, response, attributes=attrs)
                else 'failure')

This module has extensive logging, enable it using the Python logging framework.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

radius-0.0.4.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

radius-0.0.4-py2.py3-none-any.whl (9.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file radius-0.0.4.tar.gz.

File metadata

  • Download URL: radius-0.0.4.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for radius-0.0.4.tar.gz
Algorithm Hash digest
SHA256 00bc8cade0df0448f1cc184ee50a1fe9b8fb59eea1fb27b54d5f97b7aa4a1c63
MD5 9b96eb567f9341ecb574c37acd397a0b
BLAKE2b-256 ae2ec2c78fded1cb391752d9730a51375a8abdeae816b67a7d681e3adff5222d

See more details on using hashes here.

File details

Details for the file radius-0.0.4-py2.py3-none-any.whl.

File metadata

  • Download URL: radius-0.0.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for radius-0.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cb46dbd0c1caaa951e118dee74b1c0adef33d634df5214d6cd9b8c1c54e24f9d
MD5 28e9ff03ba39dac4d0f6c09851753756
BLAKE2b-256 01740c2564eb261a04faa9aea250270b325161c8f4d8116cf3803ba333f7159c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page