Transparent login give error 'access denied' error but in learning mode works fine
search cancel

Transparent login give error 'access denied' error but in learning mode works fine

book

Article ID: 257851

calendar_today

Updated On:

Products

CA Privileged Access Manager (PAM)

Issue/Introduction

Transparent login definition work fine with learning mode

if we do same transparent login to the linux, looks like some password characters are wrongly passed or not passed at all as we get 'access denied' error

But user and password are correct.

Environment

Release : 4.1.x

Cause


The issue is that there is some delay in supply the credential in the putty app by TLC agent and Immediately script is submitting the enter command after supplying the TLC credentials.

 

Resolution

 

Put a small  sleep time after the password submission field and it will work, something like this

<window id="">

  <edit id="[CLASS:Edit; INSTANCE:1]" text="xxx.ttt.zz"/>

  <click id="[CLASS:Button; INSTANCE:1]"/>

  <sleep time="1000"/>

  <send id="window" username="true"/>

  <send id="window" text="{ENTER}"/>

  <sleep time="1000"/>

  <send id="window" password="true"/>

  <sleep time="100"/>

  <send id="window" text="{ENTER}"/>

</window>

The sleep time after the password enter text="{ENTER}"/> fixes the issue