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

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 a

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

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 "takin

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". ___ C

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 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

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 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 whether the default pa

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 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) string means i

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

2015-03-30 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; http://linu

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

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

[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