Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Warren Young
On Mar 30, 2015, at 11:08 PM, Jegadeesh Kumar jegasm...@gmail.com wrote: # Root password rootpw --iscrypted $1$1SItJOAg$UM9n7lRFK1/OCs./rgQtQ/ # System authorization information auth --useshadow --passalgo=sha512 Those two settings are inconsistent. The $1 at the beginning of that crypt(3)

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Valeri Galtsev
On Wed, April 1, 2015 11:09 am, Andrew Holway wrote: This is all interesting, but I've got one dumb question: why do you need to decrypt it? In the UK we have a law which give you the right to remain silent; so as not to incriminate yourself. I think in the US its known as taking the

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Andrew Holway
This is all interesting, but I've got one dumb question: why do you need to decrypt it? In the UK we have a law which give you the right to remain silent; so as not to incriminate yourself. I think in the US its known as taking the fifth. ___ CentOS

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread m . roth
Warren Young wrote: On Mar 30, 2015, at 11:08 PM, Jegadeesh Kumar jegasm...@gmail.com wrote: # Root password rootpw --iscrypted $1$1SItJOAg$UM9n7lRFK1/OCs./rgQtQ/ # System authorization information auth --useshadow --passalgo=sha512 Those two settings are inconsistent. The $1 at the

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Warren Young
On Mar 30, 2015, at 11:37 PM, Eero Volotinen eero.voloti...@iki.fi wrote: Well, you could bruteforce sha512 hashed password or use dictionary attack against it. The sad thing is that dictionary attacks still work. Just a few months ago on this very mailing list, we had a big battle over

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Stephen Harris
On Wed, Apr 01, 2015 at 06:09:01PM +0200, Andrew Holway wrote: In the UK we have a law which give you the right to remain silent; so as not to incriminate yourself. I think in the US its known as taking the fifth. The UK RIPA act requires you to hand over decryption keys upon presentation of

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread Always Learning
On Wed, 2015-04-01 at 18:09 +0200, Andrew Holway wrote: This is all interesting, but I've got one dumb question: why do you need to decrypt it? In the UK we have a law which give you the right to remain silent; so as not to incriminate yourself. I think in the US its known as taking

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-04-01 Thread m . roth
Valeri Galtsev wrote: On Wed, April 1, 2015 11:09 am, Andrew Holway wrote: This is all interesting, but I've got one dumb question: why do you need to decrypt it? In the UK we have a law which give you the right to remain silent; so as not to incriminate yourself. I think in the US its

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-03-31 Thread g
On 03/31/2015 12:08 AM, Jegadeesh Kumar wrote: Is there any way to decry pt the password and get it as plain text. yes. but not inexpensive. from this group; http://www.openwall.com/ you will find; http://www.openwall.com/john/pro/linux/ and a shell script for using;

[CentOS] How to decrypt rootpassword form kickstart file

2015-03-30 Thread Jegadeesh Kumar
Hi Team, I have the kick start file where my root password is store like # Root password rootpw --iscrypted $1$1SItJOAg$UM9n7lRFK1/OCs./rgQtQ/ # System authorization information auth --useshadow --passalgo=sha512 Is there any way to decry pt the password and get it as plain text. I know

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-03-30 Thread Peter
On 03/31/2015 06:08 PM, Jegadeesh Kumar wrote: I have the kick start file where my root password is store like # Root password rootpw --iscrypted $1$1SItJOAg$UM9n7lRFK1/OCs./rgQtQ/ # System authorization information auth --useshadow --passalgo=sha512 Is there any way to decry pt the

Re: [CentOS] How to decrypt rootpassword form kickstart file

2015-03-30 Thread Eero Volotinen
2015-03-31 8:08 GMT+03:00 Jegadeesh Kumar jegasm...@gmail.com: Hi Team, I have the kick start file where my root password is store like # Root password rootpw --iscrypted $1$1SItJOAg$UM9n7lRFK1/OCs./rgQtQ/ # System authorization information auth --useshadow --passalgo=sha512 Is