diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-19 10:51:08 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-07-20 09:17:14 +1000 |
commit | 9d09b66f41cb4ab58bd4a6d83ecebb91805a4b5b (patch) | |
tree | d8a9805ff8c06f32c7a43631fa7bb470ceb0884a /auth | |
parent | 02444afb87ae940d4d58d5566f16121279a57902 (diff) | |
download | samba-9d09b66f41cb4ab58bd4a6d83ecebb91805a4b5b.tar.gz |
auth: Set NETLOGON_GUEST and use it to determine guest status
These additional measures should help ensure we do not accidentily upgrade
a guest to an authenticated user in the future.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'auth')
-rw-r--r-- | auth/auth_sam_reply.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auth/auth_sam_reply.c b/auth/auth_sam_reply.c index ee27e966f66..59fcf7ad5d3 100644 --- a/auth/auth_sam_reply.c +++ b/auth/auth_sam_reply.c @@ -237,7 +237,8 @@ NTSTATUS make_user_info_SamBaseInfo(TALLOC_CTX *mem_ctx, info->bad_password_count = base->bad_password_count; info->acct_flags = base->acct_flags; - info->authenticated = authenticated; + /* Only set authenticated if both NETLOGON_GUEST is not set, and authenticated is set */ + info->authenticated = (authenticated && (!(base->user_flags & NETLOGON_GUEST))); *_user_info = info; return NT_STATUS_OK; |