search for: cajeptha

Displaying 12 results from an estimated 12 matches for "cajeptha".

2016 Apr 30
2
Changing Password Schemes
This looks good, except it is truncated, it should be something like 95chars long, Is your hash column set to 128 or up around there or larger? Quoting Carl A Jeptha <cajeptha at gmail.com>: > Sorry for double reply, but this what a password looks like in the > "hashed" password column: > {SHA512-CRYPT}$6$wEn1UFuiMzl9OSjd$Vh/PZ95WDID1GwI2 > > ------------ > You have a good day now, en mag jou m?re ook so wees, > > On 2016-04-30 01:...
2016 May 03
3
Changing Password Schemes
...;) But still no happy dance, we now have a new error: dovecot: imap-login: Disconnected (auth failed, 3 attempts in 15 secs): user=<user at domain.tld>, method=PLAIN, rip=165.255.109.89, lip=10.0.0.12, TLS, session=<LywBS+0xdQCl/21Z> On Tue, May 3, 2016 at 11:10 AM, Carl Jeptha <cajeptha at gmail.com> wrote: > Here is what is in phpmyadmin: > password_query = > SELECT > username as user, > SELECT > IF( > cryptpwd IS NULL > OR cryptpwd = '', > CONCAT('{PLAIN}', clearpwd), > cryptpwd > )...
2016 May 03
3
Changing Password Schemes
...ut I see nothing like that in the code. Did > you've verified that the post login script gets the plain password? > > If you have hashed passwords, CONCAT('{PLAIN}',clearpwd) is nonsense. > > > >> >> >> On Tue, May 3, 2016 at 11:10 AM, Carl Jeptha <cajeptha at gmail.com> wrote: >> >> Here is what is in phpmyadmin: >>> password_query = >>> SELECT >>> username as user, >>> SELECT >>> IF( >>> cryptpwd IS NULL >>> OR cryptpwd = '', >>>...
2016 May 01
2
Changing Password Schemes
...?re ook so wees, > > Carl A Jeptha > > On 2016-04-30 14:58, Patrick Domack wrote: >> This looks good, except it is truncated, it should be something like 95chars long, Is your hash column set to 128 or up around there or larger? >> >> >> Quoting Carl A Jeptha <cajeptha at gmail.com>: >> >>> Sorry for double reply, but this what a password looks like in the "hashed" password column: >>> {SHA512-CRYPT}$6$wEn1UFuiMzl9OSjd$Vh/PZ95WDID1GwI2 >>> >>> ------------ >>> You have a good day now, en mag jou m?re...
2016 May 03
2
Changing Password Schemes
...ee nothing like that > in the code. Did you've verified that the post login script gets the > plain password? > > If you have hashed passwords, CONCAT('{PLAIN}',clearpwd) is nonsense. > >> >> >> >> On Tue, May 3, 2016 at 11:10 AM, Carl Jeptha <cajeptha at gmail.com> wrote: >> >>> Here is what is in phpmyadmin: >>> password_query = >>> SELECT >>> username as user, >>> SELECT >>> IF( >>> cryptpwd IS NULL >>> OR cryptpwd = '', >>&gt...
2016 May 03
5
Changing Password Schemes
...code. Did you've verified that the post login script gets the plain password? >>> >>> If you have hashed passwords, CONCAT('{PLAIN}',clearpwd) is nonsense. >>> >>>> >>>> >>>> On Tue, May 3, 2016 at 11:10 AM, Carl Jeptha <cajeptha at gmail.com> wrote: >>>> >>>>> Here is what is in phpmyadmin: >>>>> password_query = >>>>> SELECT >>>>> username as user, >>>>> SELECT >>>>> IF( >>>>> cryptpwd...
2016 May 03
2
Changing Password Schemes
...erified that the post login script gets the plain password? >>>>> >>>>> If you have hashed passwords, CONCAT('{PLAIN}',clearpwd) is nonsense. >>>>> >>>>>> >>>>>> On Tue, May 3, 2016 at 11:10 AM, Carl Jeptha <cajeptha at gmail.com> wrote: >>>>>> >>>>>>> Here is what is in phpmyadmin: >>>>>>> password_query = >>>>>>> SELECT >>>>>>> username as user, >>>>>>> SELECT >>>>&gt...
2016 Apr 29
3
Changing Password Schemes
That's not SHA512-CRYPT. That's just a simple sha512 of the password, without salt. A SHA512-CRYPT password will be generated with: printf "1234\n1234" | doveadm pw -s SHA512-CRYPT or: doveadm pw -s SHA512-CRYPT -p 1234 or: mkpasswd -m sha-512 1234 (without the "{SHA512-CRYPT}" prefix) What exactly is the difficulty you are having with converting the passwords?
2016 May 01
3
Changing Password Schemes
...>>> >>> On 2016-04-30 14:58, Patrick Domack wrote: >>>> This looks good, except it is truncated, it should be something like >> 95chars long, Is your hash column set to 128 or up around there or larger? >>>> >>>> Quoting Carl A Jeptha <cajeptha at gmail.com>: >>>> >>>>> Sorry for double reply, but this what a password looks like in the >> "hashed" password column: >>>>> {SHA512-CRYPT}$6$wEn1UFuiMzl9OSjd$Vh/PZ95WDID1GwI2 >>>>> >>>>> ------------ >...
2016 Apr 29
4
Changing Password Schemes
Good Day, I have been following this tutorial without much luck - http://wiki2.dovecot.org/HowTo/ConvertPasswordSchemes#CA-26af2b83a43b8100522c57565773f605c21f2f27_1 It is obvious to me that I am not following the instructions correctly and need to be shown what I am misunderstanding. I have an old postfix + dovecot + Roundcube mailserver (mail.domain.Tld). Server clock is loosing time and
2016 May 02
2
Changing Password Schemes
On 05/02/2016 05:32 AM, Carl Jeptha wrote: > May 2 05:26:03 |****** dovecot: auth-worker(3442): Error: > sql(user at domain.tld,xxx.xxx.xxx.xxx): Password query must return a > field named 'password' I'm not sure, maybe it's checking case-sensitive. Your query returns PASSWORD. Make it lowercase. > > For testing purposes I put the query in PHPMyAdmin and it
2016 Apr 29
4
Changing Password Schemes
converting the passwords in the database from clear/plain text to SHA512-CRYPT ------------ You have a good day now, en mag jou m?re ook so wees, Carl A Jeptha On 2016-04-29 15:02, Steffen Kaiser wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Fri, 29 Apr 2016, Carl A Jeptha wrote: > >> Good Day, >> I have been following this tutorial without much