Following last month's Gartner IDaaS MQ, Centrify has also been named a leader in the 2016 Forrester Wave for Privilege Identity Management (PIM).
This makes Centrify the only vendor with leadership on both capability categories. Most of the content of this blog is around tips for PIM for my prospects and customers. We'll continue to post based on your inquiries and questions.
Showing posts with label PIM. Show all posts
Showing posts with label PIM. Show all posts
Saturday, July 9, 2016
Wednesday, May 4, 2016
[Labs] Centrify+AD+Yubikey - Implement Strong Authentication for UNIX/Linux using Smart Card
Background
This is the the second lab in the series around Strong Authentication. In the previous lab we focused on StrongAuth for Windows access and privilege elevation with YubiKey.
We will be focusing on UNIX/Linux system access leveraging strong authentication to Windows (or Mac) systems via smart card or YubiKey. Centrify Server suite allows definitions of roles that only allow non-password authentication to be enforced. YubiKeys are full-fledged personal identity verification (PIV) cards that work very well with AD and Certificate Services.
The challenges
Although Centrify can accommodate the "jump box and shared account" model using Centrify Privilege Service, organizations should complement their security strategy with the least access model:
Scenario Description:
We will use the Yubikey/Smart Card with the Certificate provisioned to the user in the base lab. With Centrify Access Manager, we will create a role that allows her to access a system (locally and via SSH) and we will prove:

Centrify Setup
In this instance we are setting up a Web Admin role that contains the pre-defined "login-all" PAM right. We are not breaking down the rights to prove that we can stop the user from logging in via console or via SSH with a password.
The privileged user assigned the role must have authenticated with her YubiKey or SmartCard to obtain a Kerberos TGT from Active Directory, subsequently, Centrify DirectAuthorize will be in charge of denying access to the user if they don't use SSO for access (via Kerberos or GSSAPI). All we're going to need is a zone and a role.
To set up using PowerShell
To perform the steps for the script above manually
Create, Configure and Assign the Demo role
In Access Manager > Open they Yubikey-Demo zone > Authorization > Right Click Role Definitions > Select Add Role
Test Plan:
Other Considerations:
This is the the second lab in the series around Strong Authentication. In the previous lab we focused on StrongAuth for Windows access and privilege elevation with YubiKey.
We will be focusing on UNIX/Linux system access leveraging strong authentication to Windows (or Mac) systems via smart card or YubiKey. Centrify Server suite allows definitions of roles that only allow non-password authentication to be enforced. YubiKeys are full-fledged personal identity verification (PIV) cards that work very well with AD and Certificate Services.
The challenges
- Recent advanced threats leverage the collection of passwords and poor security practices to exploit systems.
- The variability (heterogeneity) of systems (Windows, UNIX, Linux, Macs) poses a big challenge for organizations
- The proliferation of "best of breed" solutions promotes IT fragmentation and limits organizational flexibility.
- The "jumpbox" or proxy approach combined with additional controls like workflow can help as long as connections are centralized, however many organizations are getting audit comments due to circunvention of these mechanisms.
- Although there are different multifactor providers in the market and most of them provide Pluggable Authentication Modules for their solutions, the implementation requires a high-degree of expertise and translating the capability to hundreds or thousands of servers with heterogeneous OSs can be quite complex.
Although Centrify can accommodate the "jump box and shared account" model using Centrify Privilege Service, organizations should complement their security strategy with the least access model:
- Users shall only access the systems they need to based on business need-to-know with strong authentication
- Users shall be limited to the minimum privileges required for their functions: this is accomplished by providing users roles with the rights that they need.
- Rights shall be assigned and limited to the business function with a privilege elevation mechanism (e.g. sudo) that has the flexibility to provide strong authentication.
- In sensitive systems, access and privilege elevation shall be supplemented with session capture and replay.
- Active Directory and Centrify provide a stack that can secure systems and eliminates complexity across the different UNIX/Linux platforms
- Limit privileged users to a subset of UNIX/Linux systems based on their needs (AD and Centrify Zones enable this)
- Require strong authentication for local or remote (SSH) access (this is enabled by Centrify DirectAuthorize)
- Require strong authentication on privilege elevation if needed (OTP, SMS, E-mail, phonefactor, etc)
- Reproduce privileged sessions (session capture, transcription, replay).
- Active Directory with Certificate Services
- A domain joined member server with Centrify Server Suite 2016 (DirectControl) a
- One or two UNIX/Linux systems with Centrify DirectControl and Centrify-Enhanced OpenSSH
Because we will be relying on SSO, Centrify OpenSSH comes compiled with Centrify methods that simplify the process in simple and complex AD environments. - For SSO to work, the system has to be resolvable by name (shortname or FQDN) by the Kerberized clients.
- SSH client that supports SSO; e.g. stock PuTTY (GSSAPI) or Centrify-enhanced (Kerberos)
- Access to Centrify Standard Edition (evaluation or licensed)
- Yubikey PIV Manager (download link)
- Yubikey 4, NANO or NEO
- You need working knowledge of Active Directory and Centrify Zones
Scenario Description:
We will use the Yubikey/Smart Card with the Certificate provisioned to the user in the base lab. With Centrify Access Manager, we will create a role that allows her to access a system (locally and via SSH) and we will prove:
- That the user can only log in to her Windows station with her Smart Card
- That the user cannot sign-in to UNIX/Linux system locally or remotely (via SSH) with a password
- That the user is only allowed to log in remotely via SSH to UNIX/Linux systems via SSO (Kerberos or GSSAPI)
- That these rights can be assigned to groups of systems, or groups of users in a temporary or permanent basis
- Minimal to zero configuration at the system level. Once the system is joined to AD, the security measures should just work.
Centrify Setup
In this instance we are setting up a Web Admin role that contains the pre-defined "login-all" PAM right. We are not breaking down the rights to prove that we can stop the user from logging in via console or via SSH with a password.
The privileged user assigned the role must have authenticated with her YubiKey or SmartCard to obtain a Kerberos TGT from Active Directory, subsequently, Centrify DirectAuthorize will be in charge of denying access to the user if they don't use SSO for access (via Kerberos or GSSAPI). All we're going to need is a zone and a role.
To set up using PowerShell
Import-Module ActiveDirectory Import-Module Centrify.DirectControl.PowerShell $user = Get-ADUser -Identity Maggie.Simpson # substitute for your test user $cont = "cn=zones,ou=unix,dc=centrify,dc=vms" # substitute for your container DN $zone = New-CdmZone -Name "Yubikey-Demo" -Container $cont $cmd1 = New-CdmCommandRight -Zone $zone -Name "Edit http config file" -Pattern "vi /etc/httpd/conf/httpd.conf" -Authentication none $cmd2 = New-CdmCommandRight -Zone $zone -Name "Httpd service control" -Pattern "service httpd*" $cmd3 = Get-CdmPamRight -Zone $zone -Name "login-all" $role = New-CdmRole -Zone $zone -Name "UNIX Webadmin - StrongAuth" -UnixSysRights ssologin, nondzsh, visible Add-CdmCommandRight -Right $cmd1 –Role $role Add-CdmCommandRight -Right $cmd2 –Role $role Add-CdmPamRight -Right $cmd3 –Role $role New-CdmUserProfile -Zone $zone –User $user –login $user.SamAccountName -UseAutoUid -AutoPrivateGroup –HomeDir "%{home}/%{user}" –Gecos "%{u:displayName}" –Shell "%{shell}" New-CdmRoleAssignment -Zone $zone -Role $role -TrusteeType ADUser -ADTrustee $user | Out-Null
To perform the steps for the script above manually
Create, Configure and Assign the Demo role
In Access Manager > Open they Yubikey-Demo zone > Authorization > Right Click Role Definitions > Select Add Role
- Name: UNIX WebAdmin - StrongAuth
System Rights:
- Non-password (SSO) login is allowed (checked)
- Login with non-Restricted shell (checked) - Create two UNIX commands.
Since this will be our "Web Admin" we'll allow the role to manipulate the httpd daemon and edit the config file for the Apache server. The commands are:
Glob expression vi /etc/httpd/conf/httpd.conf from the standard user path /usr/bin no reauthentication required.
Glob expression service httpd* from the standard user system path /usr/sbin no reauthentication required. - Add the rights to the role. Right click the "UNIX WebAdmin - StrongAuth" role and select "Add Right"
- The role is ready to be assigned. Now press OK and right-click the Authorization > Role Assignments > Select Assign Role
- Press the Add AD account > type the name of your test user, select it and press OK.
Note: This is a permanent direct assignment to a user principal at the zone level. This is not the best practice, typically you grant role assignments temporarily (for attestation), in a subset of systems and to AD groups for better administration.
- Use your preferred software distribution method to copy the Centrify software
In my case I already have a local repo for RHEL and derivatives. (Read how to set up here) - Log in to your UNIX/Linux system and use your favorite package manager to install Centrify DirectControl and Centrify-enhanced OpenSSH
$ sudo yum install CentrifyDC CentrifyDC-openssh [truncated] Installed: CentrifyDC.x86_64 0:5.3.0-213 CentrifyDC-openssh.x86_64 0:7.1p1-5.3.0.208 Complete!
- Now Join the Centrify zone and you'll be ready for testing. Use the adjoin command and an authorized user:
$ sudo adjoin -z Yubikey-Demo -c "ou=servers,ou=unix" -u dwirth centrify.vms [sudo] password for centrifying: dwirth@CENTRIFY.VMS's password: Using domain controller: dc.centrify.vms writable=true Join to domain:centrify.vms, zone:Yubikey-Demo successful Centrify DirectControl started. [truncated]
- If your system was not resolvable by Windows DNS, you can use the addns command to register automatically with dynamic updates (if your DNS zone allows):
$ sudo /usr/sbin/addns --update --machine Updating both HOST and PTR record for: centos67.centrify.vms Deleting old reverse lookup records for centos67.centrify.vms on 192.168.81.10. No old reverse records deleted because no host records found for centos67.centrify.vms on 192.168.81.10.
- Verify that your users are correctly UNIX-enabled and with the expected rights (use adquery user and dzinfo)
$ adquery user maggie.simpson maggie.simpson:x:1040191002:1040191002:Maggie Simpson:/home/maggie.simpson:/bin/bash $ sudo dzinfo maggie.simpson --roles User: maggie.simpson Forced into restricted environment: No Centrify Cloud Authentication: Supported Role Name Avail Restricted Env --------------- ----- -------------- UNIX Webadmin - Yes None StrongAuth/Yubi key-Demo Effective rights: Non password login Allow normal shell Visible Centrify Cloud Authentication: Not Required Audit level: AuditIfPossible Always permit login: false
All set on the Centrify side.
- In ADUC, find and double-click the test user.
- Account Tab > Account Options > Check the box for "Smart Card is required for interactive logon"
- Press OK. You are ready to start testing.
Test Plan:
- Try to access the system with any other AD user than test user - expected result: Access Denied
This is because users need to be explicitly be granted access a UNIX identity and a Centrify role in the zone for the computer.login as: dwirth ----------------------------------------------------------------- CENTRIFY DEMO - ----------------------------------------------------------------- WARNING: This is a PRIVATE system exclusively for Centrify demos Your actions will be monitored and recorded. ----------------------------------------------------------------- Using keyboard-interactive authentication. Password: Access denied Using keyboard-interactive authentication.
- Try to access the system with your test user (Maggie) with her password (Console or SSH) - expected result: Access Denied
This is because the test user was defined with "Smart card required for interactive logon"login as: maggie.simpson ----------------------------------------------------------------- CENTRIFY DEMO - ----------------------------------------------------------------- WARNING: This is a PRIVATE system exclusively for Centrify demos Your actions will be monitored and recorded. ----------------------------------------------------------------- Using keyboard-interactive authentication. Demo Password: Using keyboard-interactive authentication. Account cannot be accessed at this time. Please contact your system administrator.
- Log in to Windows system (you are forced to smartcard login) - Launch PuTTY (configured for SSO)
Expected result: Access Granted
Other Considerations:
- When forcing strong authentication, you must have a plan for other shared non-human accounts. This is where Centrify Privilege Service shines.
- Don't underestimate the need for good process around the lifecycle of PKI and smart cards. PKI is serious business.
Monday, April 11, 2016
[Labs] Centrify+AD+Yubikey - Implement Strong Authentication for Windows Server Access and Privilege Elevation
Background
This is the first lab in the series around Strong Authentication. We will be focusing on Windows systems and providing strong authentication for privileged users using Yubikeys. Yubikeys are full-fledged personal identity verification (PIV) cards that work very well with Active Directory and Certificate Services.
Note: This lab covers topics related to Public Key Infrastructure. As previously advised, PKI should be implemented with strong adherence to Security policy, and a well balanced People-Process-Technology triad.
The challenges
Although Centrify can accommodate the "dual account" model using Centrify Privilege Service, ideally organizations would implement the least privilege model:
Scenario Description:
We will provision the proper certificate to a test user (lisa) on her Yubikey. In Active Directory we'll require smart card authentication for the user. (This can be done at a group of systems level using OUs and GPOs).
We will grant the test user a Centrify DirectAuthorize role that allows her to:

Optional: We will record her actions using DirectAudit.
Lab Setup
Create Test Users and AD Group
Modify the Smart Card User (or Smart Card logon) template
Centrify Setup
To Create the Zone, Role, Rights and Assignments using PowerShell:
To perform the steps for the script above manually
Create the Zone
In Access Manager > Open they Yubikey-Demo zone > Authorization > Right Click Role Definitions > Select Add Role
Test Plan:
This is the first lab in the series around Strong Authentication. We will be focusing on Windows systems and providing strong authentication for privileged users using Yubikeys. Yubikeys are full-fledged personal identity verification (PIV) cards that work very well with Active Directory and Certificate Services.
Note: This lab covers topics related to Public Key Infrastructure. As previously advised, PKI should be implemented with strong adherence to Security policy, and a well balanced People-Process-Technology triad.
The challenges
- The Windows security model lends itself for organizations to grant additional privileges to users by way of the local Administrators group. In Active Directory environments organizations struggle with excessive memberships on privileged groups like Domain Admins.
- In Active Directory, a common mitigation strategy is to provision each privileged user an "administrative" account (e.g. joe/joe-a). This strategy can be supplemented by having the "-a" account password stored securely.
- Unfortunately, advanced attacks like password mining, pass-the-hash and others have become more ubiquitous, this makes a member of a privileged group ("-a" or not) more susceptible to exposure.
- The "dual account" model is often paired with PSM (jumpbox) to provide session brokering and recording. Unfortunately, this model can be circumvented by bypassing the jumpbox, and since the "-a" account is very powerful, that means that the privileged user can go anywhere.
Although Centrify can accommodate the "dual account" model using Centrify Privilege Service, ideally organizations would implement the least privilege model:
- Users shall only access the systems they need to based on business need-to-know with strong authentication
- Users shall be limited to the minimum privileges required for their functions: this is accomplished by providing users roles with the rights that they need.
- Rights shall be assigned in the context of applications, desktops and network rights. Strong authentication shall be required when using privilege elevation.
- In sensitive systems, access and privilege elevation shall be supplemented with session capture and replay.
- Limit privileged users to a subset of Windows systems based on their needs (AD and Centrify Zones enable this)
- Require strong authentication for local or remote (RDP) access (this is supported natively by Windows)
- Require strong authentication on Privilege Elevation (applications/desktops) (DirectAuthorize is Smart Card ready)
- Reproduce privileged sessions (session capture, transcription, replay).
- Active Directory with Certificate Services
- A domain joined member server with Centrify Access Manager and Centrify PowerShell
- Access to Centrify Standard Edition (evaluation or licensed)
- Yubikey PIV Manager (download link)
- Yubikey 4, NANO or NEO
- You need working knowledge of Active Directory and Centrify Zones
Scenario Description:
We will provision the proper certificate to a test user (lisa) on her Yubikey. In Active Directory we'll require smart card authentication for the user. (This can be done at a group of systems level using OUs and GPOs).
We will grant the test user a Centrify DirectAuthorize role that allows her to:
- Run Disk Management as administrator and requires strong authentication
- Use an administrative desktop (as local administrator) and requires strong authentication
Optional: We will record her actions using DirectAudit.
Lab Setup
Create Test Users and AD Group
- Open Active Directory Users and Computers and navigate to your desired OU
- Right click and select New > User and follow the wizard until the user is created.
- Right
click the newly-created user and select properties. In the general
tab, update the Email to match the user principal name.
e.g. user@corp.contoso.com and press OK. - Right click the OU and select New > Group and make it a Global/Security group. Call it "Smart Card Users"
- Right click the Group, select properties, go to the Members tab, press Add and add the user created in step 2.
- On the member server, grant the group or user the ability to log on remotely.
Computer > Properties > Remote Settings > Remote Desktop > Select Users > Add > [select user or group] press OK twice.
Modify the Smart Card User (or Smart Card logon) template
- Open the Certification Authority console (Start > Search > Certification Authority)
If you get an error, retarget the console to the appropriate server (e.g. DC1) - On the left pane, right click "Certificate Templates" and select Manage. This will open the Certificate Templates console.
- In the template list, right-click the SmartCard User template and select "Duplicate Template"
- In the General tab, give the template a descriptive name. I used "Smart card User V2" (this is the display name, the actual template name is SmartcardUserV2)
- Click on the Security tab, press Add, select the newly-created Smart Card Users group, check the Enroll and Autoenroll boxes, then press OK and close the Certificate Templates console.
- In the Certification Authorities console, on the left pane, right click "Certificate Templates" and select New > Certificate Template to Issue
- Select the newly-created version of the Smart Card User template (e.g. Smart Card User v2) and press OK.
- Log on to your member system with the test user.
- Open the Yubikey PIV manager tool with the Test User (shift+right click > run as different user)
- If you're using a VM, connect the Yubikey to your virtual machine.
Note: If you're using VMWare, you need to add the parameter below for the Yubikey to be available to your VM.usb.generic.allowHID = "TRUE"
This step is performed by editing the .vmx file and editing it with your current text editor while the VM is off. - Initialize the Yubikey if brand new. Do not forget the PIN.
- In Yubikey PIV manager, press Certificates > Generate New Key and make sure you type the Certificate Template name (not the display name). The subject will match the credential that you launched the Yubikey PIV Manager (e.g. your test user).
- Type the PIN when challenged, and select your existing CA. In my case I use the non HTTP link.
- To
test the smart card authentication, either lock your screen or logoff.
If you can unlock or login successfully, you should be ready for the
next steps.
Centrify Setup
To Create the Zone, Role, Rights and Assignments using PowerShell:
Import-Module ActiveDirectory Import-Module Centrify.DirectControl.PowerShell $user = Get-ADUser -Identity Lisa.Simpson # substitute for your user $cont = "cn=zones,ou=unix,dc=centrify,dc=vms" # substitute for your container DN $zone = New-CdmZone -Name "Yubikey-Demo" -Container $cont $criteria1 = New-CdmMatchCriteria -Description "Disk Management - Direct" -FileType "msc" -FileName "diskmgmt.msc" -Argument " " -Path "C:\Windows\System32\" $criteria2 = New-CdmMatchCriteria -Description "Disk Management - MMC" -FileType "exe" -FileName "mmc.exe" -Argument "C:\Windows\system32\diskmgmt.msc" -Path "C:\Windows\System32\" $cmd1 = New-CdmApplicationRight -Zone $zone -Name "Disk Management Combo" -MatchCriteria @($criteria1, $criteria2) -RunasSelfGroups "Builtin\Administrators" -RequirePassword $true $desktop1 = New-CdmDesktopRight -Zone $zone -Name "Admin Desktop" -RunasSelfGroups "Builtin\Administrators" -RequirePassword $true $role = New-CdmRole -Zone $zone -Name "Demo Role" -WinSysRights remote Add-CdmApplicationRight -Right $cmd1 -Role $role Add-CdmDesktopRight -Right $desktop1 -Role $role New-CdmRoleAssignment -Zone $zone -Role $role -TrusteeType ADUser -ADTrustee $user | Out-Null
To perform the steps for the script above manually
Create the Zone
- Open Access Manager and right-click Zones > Create New Zone
Name: Yubikey-Demo
Container: Browse to your container. - Press Next and Finish
- Launch Disk Management (e.g. Start > Run > diskmgmt.msc)
- Open Access Manager > Open they Yubikey-Demo zone > Authorization > Windows Right Definitions > Right Click Applications > New Windows Application
Name: Disk Management ComboMatch Criteria: Press Add > Import Process and Select Disk Management and Press OK
Press Add > Import File > Browse to c:\Windows\System32 and select diskmgmt.msc, press OK.
This will add another way to launch the application.
RunAs: Self with added group privileges > Press Add Builtin Groups > Select Administrators, press OK and check the box for Authentication Required and press OK.
- In Access Manager > Open they Yubikey-Demo zone > Authorization > Windows Right Definitions > Right Click Desktops > New Windows Desktop
Name: Admin Desktop
Runas: Press Add Builtin Groups > Select Administrators, press OK and check the box for Authentication Required and press OK.
In Access Manager > Open they Yubikey-Demo zone > Authorization > Right Click Role Definitions > Select Add Role
- Name: Demo Role
System Rights: "Remote Login is allowed" < this will allow the user only to access via RDP - Press OK and right-click the newly created role and select "Add Right"
- The role is ready to be assigned. Now press OK and right-click the Authorization > Role Assignments > Select Assign Role
- Press the Add AD account > type the name of your test user, select it and press OK.
Note: This is a permanent direct assignment to a user principal at the zone level. This is not the best practice, typically you grant role assignments temporarily (for attestation), in a subset of systems and to AD groups for better administration.
- In your domain-joined test systems, browse to the path for the Centrify Standard Edition software.
- Go to Agent > and Run "Centrify Windows Agent.exe"
- Follow the Wizard, you will select the "Access" components. If you have DirectAudit, also select Audit.
- When the installation ends, you need to configure the client to join your desired zone.
- The system will ask to reboot when complete.
- When a Windows system is added to the Centrify Zone, the security model changes.
- In order to access a Centrified Windows system, users must be explicitly granted logon rights. This means that even Domain Admins won't be able to access those sytsems.
- The type of access is based on the Windows setup (Remote/Log on Locally) and the Centrify Role definition (Console/Remote)
- When adding your first system to a zone, you will have an opportunity to explicitly add Domain Admins, otherwise you may completely lock the system
- In Active Directory Users and Computers, find and double-click the test user.
- Account Tab > Account Options > Check the box for "Smart Card is required for interactive logon"
- Press OK
Test Plan:
- Try to access the system with any other AD user than test user - expected result: Access Denied
This is because users need to be explicitly be granted access using a Centrify role. - Try to access the system with Lisa with her password - expected result: Access Denied
This is because the test user was defined with "Smart card required for interactive logon" - Try to access the system via the console with Smart Card - expected result: Access Denied
This is because the role created in Centrify does not grant console login. - Try to access the system via RDP with smart card PIN - expected result: Access Granted
- Try to run application "disk management" normally - expected result: Error: "You don't have access rights to logical Disk Manager on [Server]"
This is because when the user launches the app, they are doing so without any privileges. - Launching App or Privileged Desktop:
Right click App > Run with Privilege > Challenge with Password - Expected result: Access Denied
Right click App > Run with Privilege > Challenge smart card PIN - Expected result: Access Granted
Subscribe to:
Posts (Atom)