IBM Verify

IBM Verify

Join this online user group to communicate across Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only

How to find the Password Policy information from IGI Database

By Nishant Singhai posted Mon January 06, 2020 01:39 PM

  
Authors: Nishant Singhai and Ranvijay Singh

Here is one example that explains how we can figure out the details of an account password policy in IGI database.

 

In this example, we have a manualservice and password policy is enabled with 180 days of password expiry settings:

 

 

 

 

We can connect to igi database, schema igacore and use below query to find this in database:

 

SELECT * from PWDCFGCNT cnt, PWDCFG cfg WHERE cfg.name='ManualService' AND cnt.PWDCFG=cfg.id

 

 

1 comment
11 views

Permalink

Comments

Tue January 07, 2020 01:42 AM

thank you