diff options
author | Eric Hawicz <erh+git@nimenees.com> | 2020-05-15 21:02:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 21:02:37 -0400 |
commit | 4467e94110678c19edb2e36ec9c7e31ef7561a43 (patch) | |
tree | 8b6f46e6251979cc32a3e846bed90c9c05057920 /tests/test4.c | |
parent | 228881c8fc287182f284a58d8279a32fbeae0b7f (diff) | |
parent | 5d6fa331418d49f1bd488553fd1cfa9ab023fabb (diff) | |
download | json-c-0.14.tar.gz |
Merge pull request #608 from besser82/topic/besser82/json-c-0.14/CVE-2020-12762json-c-0.14
json-c-0.14: Fix CVE-2020-12762 - json-c through 0.14 has an integer overflow and out-of-bounds write ...
Diffstat (limited to 'tests/test4.c')
-rw-r--r-- | tests/test4.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test4.c b/tests/test4.c index bd964ec..288cec1 100644 --- a/tests/test4.c +++ b/tests/test4.c @@ -3,12 +3,15 @@ */ #include "config.h" +#include <assert.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "json_inttypes.h" #include "json_object.h" #include "json_tokener.h" +#include "snprintf_compat.h" void print_hex(const char *s) { @@ -24,6 +27,29 @@ void print_hex(const char *s) putchar('\n'); } +static void test_lot_of_adds(void); +static void test_lot_of_adds() +{ + int ii; + char key[50]; + json_object *jobj = json_object_new_object(); + assert(jobj != NULL); + for (ii = 0; ii < 500; ii++) + { + snprintf(key, sizeof(key), "k%d", ii); + json_object *iobj = json_object_new_int(ii); + assert(iobj != NULL); + if (json_object_object_add(jobj, key, iobj)) + { + fprintf(stderr, "FAILED to add object #%d\n", ii); + abort(); + } + } + printf("%s\n", json_object_to_json_string(jobj)); + assert(json_object_object_length(jobj) == 500); + json_object_put(jobj); +} + int main(void) { const char *input = "\"\\ud840\\udd26,\\ud840\\udd27,\\ud800\\udd26,\\ud800\\udd27\""; @@ -52,5 +78,8 @@ int main(void) retval = 1; } json_object_put(parse_result); + + test_lot_of_adds(); + return retval; } |