From: Dominik Csapak <d.csapak@proxmox.com>
To: Elias Huhsovitz <e.huhsovitz@proxmox.com>, pve-devel@lists.proxmox.com
Subject: Re: [PATCH access-control] fix #7144: auth: ldap: force utf-8 encoding for bind credentials
Date: Fri, 10 Jul 2026 08:38:11 +0200 [thread overview]
Message-ID: <44cade0a-6957-4edd-be70-fe508ed4708f@proxmox.com> (raw)
In-Reply-To: <20260709140007.163539-1-e.huhsovitz@proxmox.com>
i guess to use the password correctly, we then have to also
decode it as utf8 when reading from that file?
otherwise the password is different in perl when it comes from the api
vs from the file?
(otherwise this issue wouldn't have happened?)
and we probably also have then to encode it again before
passing it to ldap (except if Net::LDAP does this automatically,
which i'm not sure of)
On 7/9/26 4:00 PM, Elias Huhsovitz wrote:
> When saving the LDAP/AD bind password to /etc/pve/priv/realm/<realm>.pw,
> the file was written using the default byte encoding. This caused
> passwords containing non-ASCII characters (e.g., '£' or '§') to be
> truncated to their lowest byte, resulting in authentication failures
> during subsequent sync operations.
>
> Pass the 'force_utf8' flag to file_set_contents to ensure the password
> is encoded as UTF-8 before being written to disk.
>
> Signed-off-by: Elias Huhsovitz <e.huhsovitz@proxmox.com>
> ---
> src/PVE/Auth/LDAP.pm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/PVE/Auth/LDAP.pm b/src/PVE/Auth/LDAP.pm
> index 6a73ee8..21ee047 100755
> --- a/src/PVE/Auth/LDAP.pm
> +++ b/src/PVE/Auth/LDAP.pm
> @@ -438,7 +438,7 @@ sub ldap_set_credentials {
> my $cred_file = ldap_cred_file_name($realmid);
> mkdir $ldap_pw_dir;
>
> - PVE::Tools::file_set_contents($cred_file, $password);
> + PVE::Tools::file_set_contents($cred_file, $password, 0600, 1);
>
> return $cred_file;
> }
next prev parent reply other threads:[~2026-07-10 6:38 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-09 14:00 [PATCH access-control] fix #7144: auth: ldap: force utf-8 encoding for bind credentials Elias Huhsovitz
2026-07-09 14:18 ` Shannon Sterz
2026-07-10 6:38 ` Dominik Csapak [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-07-09 13:50 Elias Huhsovitz
2026-07-09 14:32 ` Elias Huhsovitz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44cade0a-6957-4edd-be70-fe508ed4708f@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=e.huhsovitz@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.