ASGI middleware for SSPI
Project description
bareASGI-sspi
ASGI middleware for SSPI authentication on Windows.
This is not specific to a particular ASGI framework or server.
Installation
Install from the pie store.
pip install bareasgi-sspi
Usage
The following program demonstrates the usage.
import asyncio
import logging
from bareasgi import Application, HttpRequest, HttpResponse
from bareutils import text_writer
from hypercorn import Config
from hypercorn.asyncio import serve
from bareasgi_sspi.spnego_middleware import SPNEGOMiddleware, SSPIDetails
# A callback to display the results of the SSPI middleware.
async def http_request_callback(request: HttpRequest) -> HttpResponse:
# Get the details from scope['extensions']['sspi']. Note if
# authentication failed this might be absent or empty.
extensions = request.scope.get('extensions', {})
sspi_details = extensions.get('sspi', {})
client_principal = sspi_details.get('client_principal', 'unknown')
message = f"Authenticated as '{client_principal}'"
return HttpResponse(
200,
[(b'content-type', b'text/plain')],
text_writer(message)
)
async def main_async():
# Make the ASGI application.
app = Application()
app.http_router.add({'GET'}, '/', http_request_callback)
# Wrap the application with the middleware.
wrapped_app = SPNEGOMiddleware(
app,
protocol=b'NTLM', # NTLM or Negotiate
forbid_unauthenticated=True
)
# Start the ASGI server.
config = Config()
config.bind = ['localhost:9023']
await serve(wrapped_app, config)
if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG)
asyncio.run(main_async())
Arguments
The SPNEGOMiddleware wraps the ASGI application. The first and only
positional argument is the ASGI application. Optional arguments include:
protocol(bytes): Eitherb"Negotiate"orb"NTLM".service(str): The SPN service. Defaults to"HTTP".hostname(str, optional): The hostname. Defaults togethostname.service_principal(str, optional): The service principal.session_duration(timedelta, optional): The duration of a session. Defaults to 1 hour.forbid_unauthenticated(bool): If true, and authentication fails, send 403 (Forbidden). Otherwise handle the request unauthenticated.
If service_principal if specified, it supersedes service and hostname.
Results
If the authentication is successful the SSPI details are added to the
"extensions" property of the ASGI scope under the property "sspi".
The following properties are set:
"client_principal"(str): The username of the client."negotiated_protocol"(str): The negotiated protocol."protocol"(str): The requested protocol."spn"(str): The SPN of the server.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bareasgi-sspi-4.0.0rc0.tar.gz.
File metadata
- Download URL: bareasgi-sspi-4.0.0rc0.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.13 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79f7aa2add839925499cd61fe4c167bee0baa8305130e0803228db9a42555eb4
|
|
| MD5 |
b58cb135e4dc664b7f87e7775440a68d
|
|
| BLAKE2b-256 |
05dbc01fbc14c8e3dbd1b4b8c7e1ed642b6b819322c626b7282df75c55b9f57f
|
File details
Details for the file bareasgi_sspi-4.0.0rc0-py3-none-any.whl.
File metadata
- Download URL: bareasgi_sspi-4.0.0rc0-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.13 Darwin/21.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40252bb25b931c3ba57e8ee12429ecbe02c8acd4278b8fb29e59a446d9bd90ee
|
|
| MD5 |
33476aabd043a8efbc5a7a6c50924d0f
|
|
| BLAKE2b-256 |
3b503bb1ad3552ac5faafba24a3125031d8df5001312c52d14857ea5251d6400
|