Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

saml2-js

Package Overview
Dependencies
Maintainers
2
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

saml2-js

SAML 2.0 node helpers

  • 0.2.4
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

SAML2 Library

Description

Takes care of the complexities of the SAML protocol and provides an easy interface for using it. Specifically, creating metadata.xml files, creating AuthnRequests and parsing and validating AuthnResponses.

This is exposed as both a series of functions that implement each step of the SAML protocol, and an Express middleware that creates the necessary endpoints for the metadata, the login and the assertion.

Installation

  npm install saml2-js

Expected Usage

Include the SAML library.

  saml_lib = require('saml')

To use the saml library, we think in terms of service providers (e.g. Clever) and identity providers (e.g. partners that use ADFS).

  sp = saml_lib.service_provider
    private_key : 'saml.pem'
    certificate : 'saml.crt'

  idp = saml_lib.identity_provider
    sso_login_url : 'https://www.example.com/login'
    sso_logout_url : 'https://www.example.com/logout'
    certificate : 'adfs.crt'

Upon creating at least one service provider and one identity provider, you can then create SAML requests between them.

  # -- REQUIRED --
  # Returns a redirect URL, at which a user can login
  sp.create_login_url(idp, cb)

  # Returns user object, if the login attempt was valid.
  sp.assert(idp, request_body, cb)

  # -- OPTIONAL --
  # Returns a redirect URL, at which a user is logged out.
  sp.create_logout_url(idp, cb)

  # Returns XML containing service-provider parameters.
  # For use during initial SAML configuration
  sp.create_metadata(idp, cb)

Helper Methods

We will break each of the service_provider methods into minimal, testable methods.

  ... TODO ...
  parse_xml
  parse_assert
  createAuthRequest

Example: Express implementation using saml-lib

Library users will need to implement the URL endpoints. For example, express endpoints might look like the following:

  app.get "/metadata.xml", (request, response) ->
    sp.get_metadata idp, (err, metadata) ->
      return response.send 500, err if err?
      response.send 200, metadata

  app.get "/login", (request, response) ->
    sp.create_login_url idp, (err, login_url) ->
      return response.send 500, err if err?
      response.location login_url
      response.send 302, "Redirecting..."

  app.get "/logout", (request, response) ->
    sp.create_logout_url idp, (err, login_url) ->
      return response.send 500, err if err?
      response.location login_url
      response.send 302, "Redirecting..."

  app.post "/assert", (request, response) ->
    sp.assert idp, response.body, (err, user) ->
      response.send 500, err if err?
      response.send 200, "Hello #{user.email}!"

Keywords

FAQs

Package last updated on 20 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc