A Docker container for Sal that uses SAML
You will almost certainly need to edit settings.py
and provide your own metadata.xml file from your SAML provider.
The following instructions are provided as a best effort to help get started. They might require modifications to meet specific environments.
SAML_ATTRIBUTE_MAPPING
(These values come from OpenLDAP, Active Directory, etc)SAML_CONFIG
entityid
Ex: https://sal.example.com/saml2/metadata/assertion_consumer_service
Ex: https://sal.example.com/saml2/acs/single_logout_service
Ex: https://sal.example.com/saml2/ls/ and https://sal.example.com/saml2/postrequired_attributes
- These should match the values from SAML_ATTRIBUTE_MAPPINGidp
root url
Ex: https://app.onelogin.com/saml/metadata/1234567890single_sign_on_service
Ex: https://apps.onelogin.com/trust/saml2/http-post/sso/1234567890single_logout_service
Ex: https://apps.onelogin.com/trust/saml2/http-redirect/slo/1234567890
Please note that this Docker run is incomplete, but shows where to pass the metadata.xml
and settings.py
. Also note, latest
in the below run should not be used unless you have a real reason (needing a development version). When performing docker run
, you should substitute latest
for the latest tagged release.
docker run -d --name="sal" \
-p 80:8000 \
-v /yourpath/metadata.xml:/home/docker/sal/sal/metadata.xml \
-v /yourpath/settings.py:/home/docker/sal/sal/settings.py \
--restart="always" \
macadmins/sal-saml:latest
-
In the OneLogin admin portal click on Apps > Add Apps.
-
Search for
SAML Test Connector (IdP)
. Click on this option. -
Give the application a display name, upload a icon if you wish, and then click save.
-
Under "Configuration" tab, you will need at least the minimum settings shown below:
Recipient
: https://sal.example.com/saml2/acs/ACS (Consumer) URL Validator
: .* (Note this is a period followed by an asterisk)ACS (Consumer) URL
: https://sal.example.com/saml2/acs/
-
Under the "Parameters" tab, you will need to add the custom iDP Fields/Values. The process looks like:
- Click "Add parameter"
Field name
: FIELD_NAMEFlags
: Check the Include in SAML assertion
- Now click on the created field and set the appropriate FIELD_VALUE based on the table below.
Repeat the above steps for all required fields:
FIELD_NAME FIELD_VALUE urn:mace:dir:attribute-def:cn First Name urn:mace:dir:attribute-def:sn Last Name urn:mace:dir:attribute-def:mail Email urn:mace:dir:attribute-def:uid Email name part - Click "Add parameter"
-
Under the "SSO" tab, download the "Issuer URL" metadata file. This will be mounted in your Docker container (see above).
-
Under the "SSO" tab, you will find the "SAML 2.0 Endpoint" and "SLO Endpoint" which will go into the
settings.py
>idp
section. -
Lastly, "Save" the SAML Test Connector (IdP).
Okta has a slightly different implementation and a few of the tools that this container uses, specifically pysaml2
and djangosaml2
, do not like this implementation by default. Please follow the setup instructions, make sure to replace the example URL:
-
Create a new app from the admin portal
- Platform: Web
- Sign on method: SAML 2.0
-
Under "General Settings", give the app a name, add a logo and modify app visibility as desired.
-
Under "Configure SAML" enter the following (if no value is given after the colon leave it blank):
Single sign on URL: https://sal.example.com/saml2/acs/
Use this for Recipient URL and Destination URL: Checked
Allow this app to request other SSO URLs: Unchecked (If this option is available)
Audience URI (SP Entity ID): https://sal.example.com/saml2/metadata/
Default RelayState: Unspecified
Application username: Okta username
Name Format Value urn:mace:dir:attribute-def:cn Basic ${user.firstName} urn:mace:dir:attribute-def:sn Basic ${user.lastName} urn:mace:dir:attribute-def:mail Basic ${user.email} urn:mace:dir:attribute-def:uid Basic ${user.login} Sal does not support these at this time.
-
Under "Feedback":
- Are you a customer or partner? I'm an Okta customer adding an internal app
- App type: This is an internal app that we have created
-
Download the metadata file from: "Sign On" tab > "Settings" > "SAML 2.0" > "Metadata details" > "Metadata URL" link
- Rename the file to
metadata.xml
to match the Docker run example. Make sure to move this file to the correct location on your Docker host.
- Rename the file to
-
Under "Sign On" tab > "Settings > "SAML 2.0" > "Metadata details" > "More details", you will find the "Sign on URL" and "Issuer" which will go into the
settings.py
>idp
section.
- In the Google admin console click on Apps > SAML Apps.
- Click the
+
(plus) button > Setup My Own Custon App. - Under the "Option 1" section, you will find the "SSO URL" which will go into the
settings.py
>idp
section. - Under the "Option 2" section, download the "IDP metadata" metadata file. This will be mounted in your Docker container (see above).
- Give the application a display name, upload a icon if you wish, and then click Next.
- In the "Service Provider Details" pane, you will need at least the minimum settings shown below:
ACS (Consumer) URL
: https://sal.example.com/saml2/acs/Entity ID
: https://sal.example.com/saml2/metadata/- Set the
Name ID Format
toEMAIL
- In the "Attribute Mapping" pane, you will need to add the following mappings (NOTE: These match the default mappings in the
settings.py
file, if you changed the attribute mappings, you should use those keys here instead)- Click "Add New Mapping" and fill out the attributes as listed below:
Application Attribute | Category | User Field |
---|---|---|
Basic Information | Primary Email | |
uid | Basic Information | Primary Email |
cn | Basic Information | First Name |
sn | Basic Information | Last Name |
- Click "Finish" to save the new SAML app in Google.
- NOTE: You will likely need to enable the app for your OUs before you will be able to authenticate in using SAML auth
-
Create a new Enterprise application. Choose "Non-gallery application"
-
Under "Single sign-on", choose SAML.
-
Set "Basic SAML Configuration" to:
Name Value Identifier (Entity ID) https://sal.example.com/saml2/metadata/ Reply URL (Assertion Consumer Service URL) https://sal.example.com/saml2/acs/ Sign on URL https://sal.example.com/saml2/login/ Relay State Optional Logout Url https://sal.example.com/saml2/ls Set the "Clain name" name identifier format to "Persistent".
-
Set "User Attributes & Claims" to:
Claim name Value urn:oid:2.5.4.42 user.givenname urn:oid:0.9.2342.19200300.100.1.1 user.userprincipalname urn:oid:2.5.4.4 user.surname urn:oid:0.9.2342.19200300.100.1.3 user.mail Unique User Identifier user.userprincipalname -
Set the attribute mapping in settings.py to:
SAML_ATTRIBUTE_MAPPING = { 'uid': ('username', ), 'mail': ('email', ), 'givenName': ('first_name', ), 'sn': ('last_name', ), }
-
Set the id section in settings.py to:
'idp': { 'https://sts.windows.net/[tenantId]': { 'single_sign_on_service': { saml2.BINDING_HTTP_REDIRECT: 'https://login.microsoftonline.com/[tenantId]/saml2', }, 'single_logout_service': { saml2.BINDING_HTTP_REDIRECT: 'https://login.microsoftonline.com/[tenantId]/saml2', }, }, },
For more information on what to put in your settings.py, look at https://github.com/knaperek/djangosaml2 Also, swing by the #sal channel on the MacAdmins slack team (https://macadmins.org/)