HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/root/home/posscale/subdomains/xibo/vendor/onelogin/php-saml/lib/Saml/Response.php
<?php

class OneLogin_Saml_Response extends OneLogin_Saml2_Response
{
    /**
     * Constructor that process the SAML Response,
     * Internally initializes an SP SAML instance
     * and an OneLogin_Saml2_Response.
     *
     * @param array|object $oldSettings Settings
     * @param string       $assertion  SAML Response
     */
    public function __construct($oldSettings, $assertion)
    {
        $auth = new OneLogin_Saml2_Auth($oldSettings);
        $settings = $auth->getSettings();
        parent::__construct($settings, $assertion);
    }

    /**
     * Retrieves an Array with the logged user data.
     *
     * @return array
     */
    public function get_saml_attributes()
    {
        return $this->getAttributes();
    }

    /**
     * Retrieves the nameId
     *
     * @return string
     */
    public function get_nameid()
    {
        return $this->getNameId();
    }
}