Univention Bugzilla – Attachment 8044 Details for
Bug 34420
Univention-directory-logger: undetectable base64 encoding
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Alternative solution
file_34420.txt (text/plain), 591 bytes, created by
Julius Hinrichs
on 2016-09-28 14:53:23 CEST
(
hide
)
Description:
Alternative solution
Filename:
MIME Type:
Creator:
Julius Hinrichs
Created:
2016-09-28 14:53:23 CEST
Size:
591 bytes
patch
obsolete
>$ svn diff >Index: directory_logger.py >=================================================================== >--- directory_logger.py (Revision 72278) >+++ directory_logger.py (Arbeitskopie) >@@ -81,7 +81,9 @@ > def ldapEntry2string(entry): > str='' > for (key, valuelist) in entry.iteritems(): >- str += ''.join( [ '%s: %s\n' % (key, base64Filter(value)) for value in valuelist ] ) >+ for value in valuelist: >+ base64value = base64Filter(value) >+ str += '%s%s %s\n' % (key, ':' if base64value == value else '::', base64value) > return str > > def ldapTime2string( timestamp ):
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 34420
:
8006
|
8008
|
8044
|
8089
|
8117