KB 160045 user static passwords can be used in various ways with IAS. For example when requesting a...

4
Applies to: IDENTIKEY Authentication Server KB 160045– 19/12/2014 2014 VASCO Data Security. All rights reserved. Page 1 of 4 KB 160045 How To determine what IDENTIKEY Authentication Server Users Don’t have a Password Set. Creation date: 19/12/2014 Last Review: 19/12/2014 Revision number: 2 Document type: How To Security status: EXTERNAL Summary IAS user static passwords can be used in various ways with IAS. For example when requesting a Virtual OTP with a VDP enabled DIGIPASS, authentication against IAS if no DIGIPASS is assigned (dependent on policy settings) and storage of back-end password forwarding. It may be useful to see if which users do not have this value set. details. IAS on Windows with Postgress ODBC as the datastore Open pgAdmin III from Start Menu All Programs PostgreSQL 9.2 pgAdmin III

Transcript of KB 160045 user static passwords can be used in various ways with IAS. For example when requesting a...

Applies to: IDENTIKEY Authentication Server

KB 160045– 19/12/2014 2014 VASCO Data Security. All rights reserved.

Page 1 of 4

KB 160045

How To determine what IDENTIKEY Authentication

Server Users Don’t have a Password Set.

Creation date: 19/12/2014 Last Review: 19/12/2014 Revision number: 2

Document type: How To Security status: EXTERNAL

Summary

IAS user static passwords can be used in various ways with IAS. For example when

requesting a Virtual OTP with a VDP enabled DIGIPASS, authentication against IAS if

no DIGIPASS is assigned (dependent on policy settings) and storage of back-end

password forwarding. It may be useful to see if which users do not have this value

set.

details.

IAS on Windows with Postgress ODBC as the datastore

Open pgAdmin III from Start Menu � All Programs � PostgreSQL 9.2 � pgAdmin III

Applies to: IDENTIKEY Authentication Server

KB 160045– 19/12/2014 2014 VASCO Data Security. All rights reserved.

Page 2 of 4

Right Click on PostgreSQL Database Server 9.2x (localhost) and select connect

Enter the password for the database account.

Default User: digipass

Default Password: digipassword

Expand PostgreSQL, expand Databases and then highlight postgres.

Applies to: IDENTIKEY Authentication Server

KB 160045– 19/12/2014 2014 VASCO Data Security. All rights reserved.

Page 3 of 4

Select the SQL query icon as highlighted in the following screenshot. You may also

use the shortcut CTRL-E

The following query will provide the following information.

• IAS Userid

• Domain

• IAS user’s staticpassword will be blank if no password is set

Select vdsuserid, vdsdomain, vdsstaticpwd from vdsuser where vdsstaticpwd is null

Applies to: IDENTIKEY Authentication Server

KB 160045– 19/12/2014 2014 VASCO Data Security. All rights reserved.

Page 4 of 4

If you would like to export the data select the File Menu and then Export…

Accessing PostgreSQL in Linux

Login to the IDENTIKEY Authentication Server Chroot environment:

vds_chroot <install dir> /bin/bash

Switch to postgres user:

su postgres

Login to PostgreSQL server as the postgres user:

psql -U postgres -d identikey

The following query will provide the following information.

• IAS Userid

• Domain

• IAS user’s staticpassword will be blank if no password is set

Select vdsuserid, vdsdomain, vdsstaticpwd from vdsuser where vdsstaticpwd is null