Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hiding password in debug

raphael_almeida
Active Contributor
0 Likes
960

Hi folks !

I have a question here, how could hide a parameter typed in a password, so this is not visible in debug mode?

Is this possible?

Thanks for help.

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
766

Nope, anybody with access to debugger can read any variables. That's why debugger in read only mode is still dangerous and access to it should be given easily.

Cheers

Nope, anybody with access to debugger can read any variables. That's why debugger in read only mode is still dangerous and access to it should be given easily.

Cheers

2 REPLIES 2
Read only

mvoros
Active Contributor
0 Likes
767

Nope, anybody with access to debugger can read any variables. That's why debugger in read only mode is still dangerous and access to it should be given easily.

Cheers

Read only

0 Likes
766

Hi Martin,

Thanks for your explanation.

I imagined it was possible to create a validation when it was typed value (As i done in Java with key press event)

Thanks anyway.