Decoding password letters.

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
MLGsuperGame414
Posts: 54
Joined: 10 Nov 2011 20:40

Decoding password letters.

#1 Post by MLGsuperGame414 » 20 Dec 2011 17:11

How can I go about making a batch file that can decode password characters if you paste it in the batch file? Characters like

*****
and
●●●●●●

taripo
Posts: 228
Joined: 01 Aug 2011 13:48

Re: Decoding password letters.

#2 Post by taripo » 20 Dec 2011 17:36

copy/paste probably copy/pastes the literal ones.

The program itself knows what they are but just displays those characters.

There is a program called snadboy's revelation that you can use to see what's behind them.. But how it works I don't know.. and how a bat file could read them, I don't know. But somebody might

aGerman
Expert
Posts: 4721
Joined: 22 Jan 2010 18:01
Location: Germany

Re: Decoding password letters.

#3 Post by aGerman » 21 Dec 2011 12:00

The program is processing the virtual key codes but it is displaying asterisks instead. You can't decode these asterisks because they are not encoded :wink:

Regards
aGerman

MLGsuperGame414
Posts: 54
Joined: 10 Nov 2011 20:40

Re: Decoding password letters.

#4 Post by MLGsuperGame414 » 21 Dec 2011 13:19

Okay thanks for the effort guys!

phillid
Posts: 109
Joined: 03 Apr 2010 20:27
Location: Wellington, New Zealand
Contact:

Re: Decoding password letters.

#5 Post by phillid » 26 Dec 2011 03:17

Wee bit off topic, but I wrote a simple C program that waited for a key to be pressed and returned the scancode of the key pressed. I then made a vacth script that used a FOR loop to scan a file holding definitions for each scancode relating to any key a-z, A-Z, 0-9, etc, etc. Using this external program allowed my script to accept a password without using SET /P which would cause the password to show up on-screen

Yeah, yeah, it's kinda off-topic, but hey. :)

--Phillid

Post Reply