Skip to content

scottcarlson/simplesamlphp-duosecurity

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simplesamlphp-duosecurity

Two factor authentication module using Duo Security for SimpleSAMLphp

Usage: Rename the folder to duosecurity and place in your SimpleSAMLphp modules folder

Set up a Web SDK integration on your Duo admin website. see https://www.duosecurity.com/docs/duoweb for more information

In config/config.php, activate the Duo Security module by adding it to the authentication filters section. (under 'authproc.idp')

        80 => array(

            'class' => 'duosecurity:Duosecurity',
        
            'akey' => 'SECRET KEY UNIQUE TO YOUR APP MUST BE 40 CHARACTERS',
        
            // The following values can be found on your Duo admin page
        
            'ikey' => '',
        
            'skey' => '',
        
            'host' => '',

            // Specify the attribute to be used as the Duo username

            'usernameAttribute' => '',

        ),

Do not change the names of any files in the module

About

Two factor authentication module using Duo Security for SimpleSAMLphp

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 55.0%
  • JavaScript 44.5%
  • CSS 0.5%