1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/lib/fuzzing/fuzz_security_token_vs_descriptor.c
Douglas Bagnall eb2bed3899 lib/fuzzing: add fuzzer for arbitrary token/sd access checks
The token and descriptor are stored in NDR format; for this purpose we
add a new IDL struct containing this pair (along with a desired access
mask).

An upcoming commit will show how to collect seeds for this fuzzer.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2023-07-19 03:31:30 +00:00

61 lines
1.5 KiB
C

/*
Fuzz a security token and descriptor through an access check
Copyright (C) Catalyst IT 2023
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "replace.h"
#include "librpc/gen_ndr/ndr_security.h"
#include "libcli/security/security.h"
#include "fuzzing/fuzzing.h"
int LLVMFuzzerInitialize(int *argc, char ***argv)
{
return 0;
}
int LLVMFuzzerTestOneInput(uint8_t *input, size_t len)
{
TALLOC_CTX *mem_ctx = NULL;
struct security_token_descriptor_fuzzing_pair p = {0};
enum ndr_err_code ndr_err;
uint32_t access_granted;
DATA_BLOB blob = {
.data = input,
.length = len
};
mem_ctx = talloc_new(NULL);
ndr_err = ndr_pull_struct_blob(
&blob, mem_ctx, &p,
(ndr_pull_flags_fn_t)ndr_pull_security_token_descriptor_fuzzing_pair);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
goto end;
}
se_access_check(&p.sd,
&p.token,
p.access_desired,
&access_granted);
end:
talloc_free(mem_ctx);
return 0;
}