Questions tagged [simplesamlphp]

SimpleSAMLphp is an award-winning application written in native PHP that provides authentication and authorization infrastructure focused on the Security Assertion Markup Language (SAML).

SimpleSAMLphp can be used to implement an identity Provider (IdP) to supply user information to authenticated services, a service provider (SP) to protect resources and offer an authentication interface or as a bridge to translate between popular identity protocols, such as: Shibboleth 1.3, A-Select, CAS, OpenID, WS-Federation and OAuth. Operates on Linux, Mac OSX and Microsoft Windows.

365 questions
2
votes
1 answer

Authenticating to SAML server with CURL

I'm trying to authenticate to a website that uses SimpleSAML without the browser but simply using cURL commands. Basically I'm using Chrome's dev tools to see the redirects and what information is sent with each request. So far I'm able to reach the…
SergioLeone
  • 734
  • 1
  • 10
  • 24
2
votes
1 answer

SimpleSamlPhp, Multiple Idps (Identity Providers), Multiple Sps (Service Providers)

I have been given a task at work to implement SAML 2.0. I have successfully set it up based on the docs. However, I need to know if SimpleSAMLPhp can be configured as multiple idps per instance of SimpleSAMLPhp as an Idp and Multiple Sp's per…
Purplenimbus
  • 366
  • 4
  • 8
2
votes
0 answers

Generate keypair using keytool taking care of PKCS1 v1.5 / Decryption failed

I need to connect our SimpleSAMLphp SP to a customers SAML 2.0 IdP. We have done this several times before and it worked quiet well. Normaly the certificates of our customers have been created using OpenSSL and we havent had any issues before. Our…
Marco
  • 960
  • 2
  • 7
  • 26
2
votes
0 answers

How can I set up devise_saml_authenticatable with multiple models?

I'm designing a rails 5 app with two user models; user and admin_user (the default for active_admin). I am using devise for authentication. Originally I was using database-authenticatable, but now I need implement SSO through saml. I found and…
2
votes
0 answers

SimpleSAMLphp Partial Single Logout

I decided to implement Single Sign On SSO and Single Logout SLO using SimpleSAMLPhP by following https://simplesamlphp.org/docs/stable/ for my project. i was able to implement the SSO, but for SLO, it was implemented partially i.e If I logout from…
2
votes
1 answer

How to integrate simple saml in laravel

I am trying to integrate using this https://simplesamlphp.org/download but not able to understand the steps. i am completely new for this. Thanks in advance.
Venugopal
  • 29
  • 1
  • 8
2
votes
1 answer

How to return an XML string after authentication in SimpleSamlPhp

I am new to SimpleSamlPhp, I already setup a working environment, it is able to redirect to an URL @ metadata\saml20-sp-remote.php Example: $metadata['http://www.example.com'] = array( 'AssertionConsumerService' =>…
Jack
  • 377
  • 5
  • 19
2
votes
6 answers

Too many redirects in simplesamlphp

When add a new app to access saml, I am facing this issue. SSOService.php:1 GET https://saml.testing.net/www/saml2/idp/SSOService.php?spentityid=newapp&cookieTime=1459920375 net::ERR_TOO_MANY_REDIRECTS in my local I don't facing any issue, but…
Jack
  • 377
  • 5
  • 19
2
votes
0 answers

How to extend session based on activity?

I am currently building a web portal that is protected via SimpleSAMLPHP. The issue I am having is that currently the session expires 1 hour after the user logs in. Does anyone know if it is possible to extend the SimpleSAML session each time the…
MattDrewery
  • 129
  • 1
  • 3
  • 13
2
votes
0 answers

Shibboleth IDP 3 with PHP authentication

I have installed Shibboleth IDP 3 on one of our server and Shibboleth SP on another server.Is it possible to use php to send attributes to Shibboleth SP for login authentication?
Jacky
  • 21
  • 1
2
votes
3 answers

Drupal SAML login redirect not working

I'm configuring SSO by SAML for Drupal, I tested the SP login through SimpleSAMLphp's panel and it works. I installed simplesamlphp_auth for drupal and enabled authentication via SimpleSAMLphp. When I go to https://mydrupal.com/saml_login, the…
blackbird
  • 1,129
  • 1
  • 23
  • 48
2
votes
1 answer

Failure when Simplesamlphp is behind load balancer

We use simplesamlphp as a service provider. We've integrated with a number of Idp's. Everything works fine. Now we want to change our server architecture to load balancer -> webserver -> database server. The problem comes up when we put the load…
James
  • 1,562
  • 15
  • 23
2
votes
0 answers

Csrf protection does not work while using session.storage.php_bridge in Symfony2

I am using Symfony2 with SimpleSAMLphp for user authentication. I set session.storage.php_bridge in my config because I get strange behaviour without it. session: storage_id: session.storage.php_bridge handler_id: ~ Now with these settings…
andrius.k
  • 799
  • 1
  • 10
  • 26
2
votes
0 answers

IDP-initiated Single Sign-On POST Binding with SimpleSAMLphp

I am trying to setup idp for our provided sp through simplesamlphp to achieve this : http://saml.xml.org/wiki/idp-initiated-single-sign-on-post-binding something i need to do add custom attribute Its generating signature value and digest value…
2
votes
1 answer

How to create my own login page instead of simplesamlphp IDP login page

I am using SimpleSamlePhp for IDP. Currently when i login it defaults to SimpleSamle login page. But i want to create my own customised login page. Can somebody please help me out with the steps how to achive this.