Application Development 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: 

Hiding password in debug

raphael_almeida
Active Contributor
0 Kudos

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

mvoros
Active Contributor
0 Kudos

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

mvoros
Active Contributor
0 Kudos

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

0 Kudos

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.