blob: 47aff0972e91a93c54067ff4fa8420e2e0db201c [file] [log] [blame]
#!/usr/bin/env python3
import base64
import os
import sys
sys.stdout.write(
'Content-Type: text/html\r\n'
)
credentials = base64.b64decode(os.environ.get('HTTP_AUTHORIZATION', ' Og==').split(' ')[1]).decode().split(':')
username = credentials[0]
password = ':'.join(credentials[1:]) if len(credentials) > 1 else ''
if username or password:
sys.stdout.write(
'\r\n'
'User: {}, password: {}.'.format(username, password)
)
else:
sys.stdout.write(
'WWW-Authenticate: Basic realm="WebKit Test Realm"\r\n'
'status: 401\r\n'
'\r\n'
'Authentication canceled'
)