LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-05-2010, 07:53 AM   #1
prasanna.R
LQ Newbie
 
Registered: Dec 2010
Posts: 9

Rep: Reputation: 0
Encryption question


how to decrypt the passwd in /etc/shawdow
 
Old 12-05-2010, 09:05 AM   #2
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by prasanna.R View Post
how to decrypt the passwd in /etc/shawdow
This thread is no place to ask questions.

Also, how do I know that you're not decrypting passwords for malicious purposes?
 
Old 12-06-2010, 12:55 AM   #3
prasanna.R
LQ Newbie
 
Registered: Dec 2010
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by MTK358 View Post
This thread is no place to ask questions.

Also, how do I know that you're not decrypting passwords for malicious purposes?
Actually, i was trying to learn how to decrypt it?..and i ll be using that only for my own personal purpose only senior
i wont use it for wrong purpose senior...
 
Old 12-06-2010, 01:13 AM   #4
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
You can't. The values in shadow are hashes, not encrypted passwords.
There's no "reverse" for it, only brute force cracking attempts.



Cheers,
Tink
 
Old 12-06-2010, 07:57 AM   #5
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
http://en.wikipedia.org/wiki/Cryptographic_hash
 
1 members found this post helpful.
Old 12-07-2010, 01:24 AM   #6
prasanna.R
LQ Newbie
 
Registered: Dec 2010
Posts: 9

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Tinkster View Post
You can't. The values in shadow are hashes, not encrypted passwords.
There's no "reverse" for it, only brute force cracking attempts.



Cheers,
Tink
what is brute force cracking attempts senior?
is there any other way ? senior.....
 
Old 12-07-2010, 01:33 AM   #7
prodev05
Member
 
Registered: Jul 2009
Location: Planet Earth
Distribution: Unix & Linux Variants
Posts: 304

Rep: Reputation: 20
Install john ripper(www.nmap.org) in your machine and copy the shadow file to the crack container. Start the cracker and you will receive the password with in some minutes/hours (depend on the password critical combination). John ripper is one of the famous tool for password decrypting.

Note: you should not misuse the tool.

Best Regards,
 
1 members found this post helpful.
Old 12-07-2010, 01:35 AM   #8
honeybadger
Member
 
Registered: Aug 2007
Location: India
Distribution: Slackware (mainly) and then a lot of others...
Posts: 855

Rep: Reputation: Disabled
Brute force is like an engine that will try all the possible combinations of passwords till it gets the right one.
But if the password has been encrypted by something like sha512 or des it will take perhaps a million years of computing power to break one password. Not recommended. If you are the sysadmin then you have some tools at your disposal that would send user an email if their password is weak but then it will not tell _you_ the password.
Hope this helps.
 
Old 12-07-2010, 05:35 AM   #9
prodev05
Member
 
Registered: Jul 2009
Location: Planet Earth
Distribution: Unix & Linux Variants
Posts: 304

Rep: Reputation: 20
SilverBlack

I believe Brute force engine will try login to the account and guess the password with the stored dictionary word. :P

Dear prasanna.R,

to decrypt the password go this site and find the tool johnripper password cracker. Install it in your machine or in a separate machine and copy the /etc/shadow file to the container. Read the manual page and start running the tool. You will get your password decrypted.

Regards,
 
Old 12-07-2010, 08:03 AM   #10
honeybadger
Member
 
Registered: Aug 2007
Location: India
Distribution: Slackware (mainly) and then a lot of others...
Posts: 855

Rep: Reputation: Disabled
Thanks for correcting that one . I was not thinking clearly.
 
Old 12-07-2010, 10:22 AM   #11
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally Posted by prodev05 View Post
SilverBlack

I believe Brute force engine will try login to the account and guess the password with the stored dictionary word. :P

Dear prasanna.R,

to decrypt the password go this site and find the tool johnripper password cracker. Install it in your machine or in a separate machine and copy the /etc/shadow file to the container. Read the manual page and start running the tool. You will get your password decrypted.

Regards,

And again, just to avoid language confusion with visitors:

John the ripper will NOT decrypt your password. It will try
large numbers of hashes, and see whether any match your hash.
If one does, the password John was trying happens to be the
one that is in your shadow file.

This is NOT "decrypting a password".



Cheers,
Tink
 
1 members found this post helpful.
Old 12-09-2010, 02:50 AM   #12
prodev05
Member
 
Registered: Jul 2009
Location: Planet Earth
Distribution: Unix & Linux Variants
Posts: 304

Rep: Reputation: 20
Yes its not a password decrypting tool. Its a password cracker.

Dear Visitors,

John Ripper is not a password decrypting tool. Its a famous password cracking tool.

_____________________

Tinkster

Thanks for correcting.

Regards
 
Old 12-09-2010, 08:02 AM   #13
prasanna.R
LQ Newbie
 
Registered: Dec 2010
Posts: 9

Original Poster
Rep: Reputation: 0
ya i got it senior......and i installed it too....but i couldn't know how to use ......any way i ll it try myself senior..
thanks you very much senior....

Last edited by prasanna.R; 12-09-2010 at 08:05 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Encryption question / feasibility Zetec Linux - Security 2 06-22-2009 08:04 PM
LUKS encryption question DarkpawT Linux - Software 4 11-05-2008 01:18 AM
HDD Encryption Question richinsc Linux - Security 2 09-24-2008 06:17 AM
Encryption question jantman Linux - Security 5 07-20-2006 02:25 PM
question on SSL, encryption sopiaz57 Linux - General 1 09-10-2003 02:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:06 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration