Password decryption


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Password decryption
# 1  
Old 07-18-2010
Lightbulb Password decryption

Hi,
I don't know if I am in a correct category with my question.

I want to know what decryption-method is used for this password:

(1) The first stadium is (its stored in the settings.xml of my software):
Code:
lPXPEqJ29pdHfn25y7ID3NKeVPYS/mGlAXZvkbs50jnesg6IOLS7EHpRXXqHt3tXdGMMlSPRshlraIrs2PkIcrJ71xXggaD/He6RQS+W3c0=

(2) The second stadium is (its the argument "password" when I log in with the software on the server):
Code:
9099A1B8A7DA1897D081C63D7EFFF429

(3) And the real password what I have to use when logging in manually is:
Code:
988081


How can I find out, what method is used to get the real password (3.) out of the string of 2.?

I will be very thankful for any information what takes me more to the "target" Smilie

Have a nice day!

Last edited by Neo; 07-18-2010 at 04:57 AM.. Reason: reformatted
# 2  
Old 07-18-2010
You can't get the "real password" from the encryption string. Password encryption is based on a one-way hash algorithm that, by design, cannot be decrypted.
# 3  
Old 07-20-2010
MD5

The example you provided happened to be a MD5 encryption.

md5 Encryption for '988081' is:

9099a1b8a7da1897d081c63d7efff429

Like Neo said, though, it is a one way hash function. The only way to know the output is to first know the input.

-Dave
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Decryption of files on HP-UX servers?

I am pulling a file from sfdc to HP-UX servers. But in HP-UX servers, the file data shows encrypted. Can anyone tell me how to decrypt them? The file data is like- ... (1 Reply)
Discussion started by: saga20
1 Replies

2. Shell Programming and Scripting

String encryption and decryption

Hello All, There are so many questions on this and I didn't find any concluded answer. I want to encrypt a string in the script, actually this is a password. I tried using openssl (I am a newbie to openssl), but it is generating a long one which we can't remember. I want to encrypt the... (5 Replies)
Discussion started by: karumudi7
5 Replies

3. UNIX for Dummies Questions & Answers

decryption of .cpt file

Hi i have the path for encrytion file in unix and i want to decrypt the .cpt file in unix and change the password how can i do that . (3 Replies)
Discussion started by: lily
3 Replies

4. Programming

Write own decryption application

Hi , I need some help as I dont know where to start. I need to create a unix decryption application. The information I have been given is this so far: the specification of the encryption process is: NET 2 Cryptography classes. RijndaelManaged encryption algorithm ... (13 Replies)
Discussion started by: caciing_help
13 Replies

5. Shell Programming and Scripting

unix Script for decryption

how to decrypt a file using unix Scipts . i am using one code that is working in the manual testing... echo $pass_phrase|gpg --output $filename_DEx --batch --passphrase-fd 0 --decrypt $filename_DEx_enc in the informatica level its not working.. can anybody help me in this? thanks... (1 Reply)
Discussion started by: rajesh_pola
1 Replies

6. Shell Programming and Scripting

decryption issue!

Hi, Something bizarre is happening while decrypting the files. I had a decrypt script which was working smoothly on uname -a Linux ######### 2.6.9-89.ELsmp #1 SMP Mon Apr 20 10:33:05 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux After the front-end application was moved to uname -a Linux... (2 Replies)
Discussion started by: dips_ag
2 Replies

7. UNIX for Dummies Questions & Answers

Identify a file for encryption or decryption

Dear Members, Can we find if a particular file is encrypted or decrypted. I need a command by which i should be able to identify if a file is encrypted or decrypted. How can we do this? (1 Reply)
Discussion started by: sandeep_1105
1 Replies

8. UNIX for Advanced & Expert Users

decryption using digital certificate

A client application is encrypting a text using private key and sends through socket. My application(server written in c/c++,unix) receives the chiper-text through socket. I have client's digital certificate. now, how do I decrypt(may be using openssl library) this ciper-text using client's... (1 Reply)
Discussion started by: johnbach
1 Replies

9. Programming

Password encryption/decryption in flat-text files

Dear all, If anyone has some ideas for me how to tackle the following situation: Imagine a type of client-server application. The client application is started by a human operator with all the necessary LDAP/Kerberos in place. The server application is started automatically as a daemon process.... (2 Replies)
Discussion started by: domivv
2 Replies

10. UNIX for Dummies Questions & Answers

Decryption software

whats the most sufficient way to make decryption software? What are the recoomendations for one? (3 Replies)
Discussion started by: Phatress
3 Replies
Login or Register to Ask a Question