#
55a71a16 |
| 04-Mar-2014 |
Gerrit Uitslag <klapinklapin@gmail.com> |
removed pre PHP 5.2 code wrt setcookie and session setting
- moved cookiedir determination in the if-statement
|
#
04d68ae4 |
| 20-Feb-2014 |
Gerrit Uitslag <klapinklapin@gmail.com> |
PHPDocs auth.php
|
#
c17acc9f |
| 05-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
AUTH_ACL_CHECK event around ACL checking
allows to modify ACL results in the AFTER event or to implement a completely different ACL mechanism in the BEFORE event.
|
#
21c3090a |
| 21-Oct-2013 |
Christopher Smith <chris@jalakai.co.uk> |
replace \s, \S with [ \t], [^ \t] in regexs used with acls
|
#
443e135d |
| 16-Oct-2013 |
Christopher Smith <chris@jalakai.co.uk> |
replace boolean conditional checks on possibly uninitialized vars with \!empty/empty/isset as appropriate
|
#
30f6faf0 |
| 16-Oct-2013 |
Christopher Smith <chris@jalakai.co.uk> |
update for deprecated '/e' flag in preg_replace (php 5.5)
|
#
2f7a0e94 |
| 11-Sep-2013 |
Matt Perry <matt@mattperry.com> |
Fix CodeSniffer whitespace violoations
Removed extraneous whitespace to eliminate errors reported by the Squiz.WhiteSpace.SuperfluousWhitespace sniff.
|
#
7ef8e99f |
| 22-Aug-2013 |
Matt Perry <matt@mattperry.com> |
Fix CodeSniffer violations
Change indentation to ensure code confirms to CodeSniffer rules.
|
#
b8983d3a |
| 21-Aug-2013 |
Matt Perry <matt@mattperry.com> |
Fix CodeSniffer violations
Remove whitespace from end of lines to reduce the number of CodeSniffer violations.
|
#
ad3d68d7 |
| 03-Aug-2013 |
Christopher Smith <chris@jalakai.co.uk> |
Fix a couple of bugs in ACL substitution mechanism
- %GROUP% & %USER% can now both be used in the same rule, e.g.
%GROUP%:%USER% 2
- rules with tokens will be skipped when the user is not logge
Fix a couple of bugs in ACL substitution mechanism
- %GROUP% & %USER% can now both be used in the same rule, e.g.
%GROUP%:%USER% 2
- rules with tokens will be skipped when the user is not logged in previously %USER% was attempted
show more ...
|
#
836a1762 |
| 02-Aug-2013 |
Andreas Gohr <andi@splitbrain.org> |
Merge branch 'FS#2751' of git://github.com/splitbrain/dokuwiki into pull-request-245
* 'FS#2751' of git://github.com/splitbrain/dokuwiki: coding corrections. correct type hint, remove unused varia
Merge branch 'FS#2751' of git://github.com/splitbrain/dokuwiki into pull-request-245
* 'FS#2751' of git://github.com/splitbrain/dokuwiki: coding corrections. correct type hint, remove unused variable assignment de/de-informal: localization updates (delete user function) unit tests for self deleting of user accounts FS#2751 - self deletion of user account
show more ...
|
#
73012efd |
| 02-Aug-2013 |
Christopher Smith <chris@jalakai.co.uk> |
coding corrections. correct type hint, remove unused variable assignment
|
#
20587314 |
| 31-Jul-2013 |
Andreas Gohr <andi@splitbrain.org> |
Merge pull request #246 from splitbrain/profileform_improvements
HTML5isation of some forms
|
#
71422fc8 |
| 31-Jul-2013 |
Christopher Smith <chris@jalakai.co.uk> |
Change error message shown for incorrect current password on update profile form.
The current message confusingly mentions bad 'username' when username is not involved. The new message is the same
Change error message shown for incorrect current password on update profile form.
The current message confusingly mentions bad 'username' when username is not involved. The new message is the same as that introduced for an incorrect current password on the self delete profile form (FS#2751)
show more ...
|
#
2a7abf2d |
| 31-Jul-2013 |
Christopher Smith <chris@jalakai.co.uk> |
FS#2751 - self deletion of user account
|
#
7b650cef |
| 31-Jul-2013 |
Michael Hamann <michael@content-space.de> |
auth_en/decrypt: Add explanation and more efficient decryption
Added an explanation that what we do is like normal CBC but that we additionally encrypt the IV which is actually suggested by the NIST
auth_en/decrypt: Add explanation and more efficient decryption
Added an explanation that what we do is like normal CBC but that we additionally encrypt the IV which is actually suggested by the NIST for non-random (but unique) IVs. In the decryption process it's not necessary to decrypt the IV, this should save some time.
show more ...
|
#
8269996a |
| 31-Jul-2013 |
Michael Hamann <michael@content-space.de> |
auth_random: remove exception comment as there is no exception
|
#
04369c3e |
| 30-Jul-2013 |
Michael Hamann <michael@content-space.de> |
Add AES from phpseclib and use it for cookie encryption
This replaces the deprecated and broken Blowfish implementation that has previously been used and should provide a lot more security.
|
#
30d544a4 |
| 30-Jul-2013 |
Michael Hamann <michael@content-space.de> |
Use a new, truly random secret for cookie encryption
|
#
27058a05 |
| 30-Jul-2013 |
Michael Hamann <michael@content-space.de> |
Fix and add type declarations for the auth system
|
#
483b6238 |
| 30-Jul-2013 |
Michael Hamann <michael@content-space.de> |
Add truly random numbers and use them in places where randomness matters
|
#
ea2272c4 |
| 16-Jun-2013 |
Andreas Gohr <andi@splitbrain.org> |
removed tabs
|
#
987c8d26 |
| 14-Jun-2013 |
Andreas Gohr <andi@splitbrain.org> |
Increased strength of auto generated passwords a bit
If you want better random initialization and more control over the password strength install the passpolicy plugin.
|
#
d628dcf3 |
| 09-Jun-2013 |
Andreas Gohr <andi@splitbrain.org> |
fixed syntax fuckup
|
#
8a285f7f |
| 09-Jun-2013 |
Andreas Gohr <andi@splitbrain.org> |
AUTH_PASSWORD_GENERATE event added
This is needed to replace the password generator by a plugin implementation. Related to PR #166 and FS#2147
|