Public bug reported:

Line 365 reads:

AC_SUBST(ADMIN_PASS,[c4f588ddfeff57433fe1bb88fabf331e])

It should instead read:

AC_SUBST(ADMIN_PASS,[c3284d0f94606de1fd2af172aba15bf3])

The suggestion to generate a password is flawed: echo SOME_PASSWORD |
md5sum | md5sum

The following method however does work:

$ echo -n "SOME_PASSWORD" | md5sum
a2b3a791548ef459b01e0cd0c7f3769d  -

$ echo -n "a2b3a791548ef459b01e0cd0c7f3769d" | md5sum
6bb27db69abac88bd5feb132364520fe  -

That is, if the desired password is SOME_PASSWORD, the stored hash is
6bb27db69abac88bd5feb132364520fe

** Affects: aikiframework
     Importance: Undecided
         Status: New

** Description changed:

  Line 365 reads:
  
  AC_SUBST(ADMIN_PASS,[c4f588ddfeff57433fe1bb88fabf331e])
  
  It should instead read:
  
  AC_SUBST(ADMIN_PASS,[c3284d0f94606de1fd2af172aba15bf3])
  
  The suggestion to generate a password is flawed: echo SOME_PASSWORD |
  md5sum | md5sum
  
  The following method however does work:
  
  $ echo -n "SOME_PASSWORD" | md5sum
  a2b3a791548ef459b01e0cd0c7f3769d  -
  
  $ echo -n "a2b3a791548ef459b01e0cd0c7f3769d" | md5sum
  6bb27db69abac88bd5feb132364520fe  -
  
  That is, if the desired password is SOME_PASSWORD, the stored hash is
- S6bb27db69abac88bd5feb132364520fe
+ 6bb27db69abac88bd5feb132364520fe

** Summary changed:

- the default admin password has in configure.ac is incorrect
+ the default admin password in configure.ac is incorrect

-- 
You received this bug notification because you are a member of Aiki
Framework Admins, which is subscribed to aikiframework.
https://bugs.launchpad.net/bugs/788847

Title:
  the default admin password in configure.ac is incorrect

Status in Aiki Framework:
  New

Bug description:
  Line 365 reads:

  AC_SUBST(ADMIN_PASS,[c4f588ddfeff57433fe1bb88fabf331e])

  It should instead read:

  AC_SUBST(ADMIN_PASS,[c3284d0f94606de1fd2af172aba15bf3])

  The suggestion to generate a password is flawed: echo SOME_PASSWORD |
  md5sum | md5sum

  The following method however does work:

  $ echo -n "SOME_PASSWORD" | md5sum
  a2b3a791548ef459b01e0cd0c7f3769d  -

  $ echo -n "a2b3a791548ef459b01e0cd0c7f3769d" | md5sum
  6bb27db69abac88bd5feb132364520fe  -

  That is, if the desired password is SOME_PASSWORD, the stored hash is
  6bb27db69abac88bd5feb132364520fe

_______________________________________________
Mailing list: https://launchpad.net/~aikiframework.admins
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework.admins
More help   : https://help.launchpad.net/ListHelp

Reply via email to