Skip to content
Snippets Groups Projects
  1. Nov 12, 2011
  2. Apr 11, 2011
  3. Mar 19, 2011
  4. Feb 22, 2011
  5. Jan 22, 2011
    • Andreas Gohr's avatar
      refactored passowrd hashing functions to a class · 3a0a2d05
      Andreas Gohr authored
      this splits the long auth_cryptPassword() function into many member
      functions of a new class PassHash which should make it more
      maintainable and reusable for other projects.
      
      This also adds two new methods djangomd5 and djangosha1 as used by the
      popular python framework Django.
      
      Maybe the auth_cryptPassword() and auth_verifyPassword() functions
      should be deprecated in favor of using the class directly?
      3a0a2d05
  6. Jan 15, 2011
  7. Jan 02, 2011
  8. Dec 21, 2010
  9. Dec 10, 2010
    • Michael Hamann's avatar
      preg_quote namespaces in auth_aclcheck · 3e304b55
      Michael Hamann authored
      Like ids namespaces are now preg_quoted in the acl check (and therefore
      the escaping of "*" has been removed). When plugins call the ACL check
      function with strange ids the regex fails otherwise (in the case of the
      include plugin errors like "Warning: preg_grep() [function.preg-grep]:
      Compilation failed: missing terminating ] for character class at offset
      47" have been reported by two users).
      
      I've run the acl tests after this change and everything passes so this
      shouldn't break anything but please test this especially with protected
      wikis as this change modifies the code that handles namespace
      permissions. Furthermore permissions for a namespace foobar are no
      longer applied to namespaces with names like foo.ar, I hope nobody has
      used that "feature".
      
      When you are using per-user namespaces, user registration is open and
      either write or read protection for these namespaces is important to
      you this is a security fix for you: When someone wants to get access to
      the namespace of a user "foo.bar" he can register as "fooxbar" (where
      "x" is an arbitrary character) and will have access to the user
      namespace of the user "foo.bar" as when a page in "foo.bar" is checked
      it will match the rule for "fooxbar".
      3e304b55
  10. Dec 08, 2010
    • Andreas Gohr's avatar
      added auth_isMember() · d6dc956f
      Andreas Gohr authored
      This function abstracts checking a given user and her groups against a
      given member list (as used in the superuser and manager options).
      
      It is also used in auth_isManager() and auth_isAdmin(), unlike the
      previous function, this one skips the nameencode step as it should be
      unnessary here (all input is given decoded).
      
      The test cases where extended by some non-ID user and group names.
      
      People with non-plain auth backends should check that their
      administrator and manager setups still work as expected
      d6dc956f
    • Adrian Lang's avatar
      tmp · fa7c70ff
      Adrian Lang authored
      fa7c70ff
  11. Nov 29, 2010
  12. Oct 02, 2010
  13. Aug 27, 2010
  14. Jun 27, 2010
  15. Jun 26, 2010
  16. Jun 22, 2010
    • Andreas Gohr's avatar
      new auth capability 'logout' · 880f62fa
      Andreas Gohr authored
      This patch implements what Adrian's patch "Hide logout button if auth
      backend cannot logout" intended to do.
      
      The 'logoff' capability was used to decide if a special method called
      $auth->logOff() should be called when the user logs out, not if the
      backend supports logouts at all. This was a superflous capability since
      an empty logOff() method is implemented in the base class anyway - it
      doesn't hurt to always call the method.
      
      The 'logoff' capability is now deprecated. Backends who want to do
      actions on logout simply need to overwrite logOff().
      
      A new capability 'logout' was added which defaults to true. Backends
      that can't logoff the user (eg. because they use some automatic
      login/logoff mechanism) can set this to false.
      
      Probably makes sense to add a 'login' capability as well...
      880f62fa
  17. Apr 28, 2010
  18. Mar 24, 2010
  19. Mar 23, 2010
  20. Jan 31, 2010
    • Andreas Gohr's avatar
      first attempt to centralize all include loading · 16905344
      Andreas Gohr authored
      Classes are loaded throug PHP5's class autoloader, all other
      includes are just loaded by default. This skips a lot of
      require_once calls.
      
      Parser and Plugin stuff isn't handled by the class loader yet.
      16905344
  21. Jan 19, 2010
  22. Nov 28, 2009
  23. Nov 24, 2009
  24. Nov 15, 2009
  25. Nov 14, 2009
  26. Nov 13, 2009
  27. Nov 04, 2009
    • Adrian Lang's avatar
      Emit less E_NOTICEs and E_STRICTs · c66972f2
      Adrian Lang authored
        Changes of behaviour are:
        * Allow the user name, title & description \e2\80\9c0\e2\80\9d
        * Default to Port 443 if using HTTPS
        * Set $INFO['isadmin'] and $INFO['ismanager'] to \e2\80\9cfalse\e2\80\9d even if no user is
          logged in
        * Do not pass empty fragment field in the event data for event
          ACTION_SHOW_REDIRECT
        * Handle chunked encoding in HTTPClient
      
      darcs-hash:20091104100115-e4919-5cf6397d4a457e3f98a8ca49fbdab03f2147721d.gz
      c66972f2
  28. Oct 23, 2009
  29. Oct 20, 2009
    • Andreas Gohr's avatar
      Coding Standard Cleanup · db959ae3
      Andreas Gohr authored
      Ignore-this: 259cb5773c3144c6c706d87298dcf674
      
      darcs-hash:20091020212338-7ad00-6bf1c5c403491f136a1c02af5ecd9f84d7227107.gz
      db959ae3
  30. Oct 15, 2009
    • Andreas Gohr's avatar
      Support for kmd5 passcrypt method · 43ee7484
      Andreas Gohr authored
      Ignore-this: c809bd207504f78e84685612b0a668a7
      
      This is a MD5 based hashing method used in the Unclassified NewsBoard forum
      software (which is used for DokuWiki's supprt forum)
      
      darcs-hash:20091015184330-7ad00-38680848952bdb46052dcf3597fa5e91f892ca51.gz
      43ee7484
  31. Oct 04, 2009
  32. May 28, 2009
  33. Apr 10, 2009
  34. Apr 07, 2009
  35. Mar 12, 2009
Loading