summaryrefslogtreecommitdiffstats
path: root/fuzz/jplist_fuzzer.cc
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-01-25 03:45:30 +0100
committerGravatar Nikias Bassen2022-01-25 03:45:30 +0100
commitc7b005bc7864b6109115d4278872152208e78c23 (patch)
tree73b635fea8d49521bfff3815a0fc1566d3185692 /fuzz/jplist_fuzzer.cc
parent323009bfd003ff1540967b7b67efebab1ee8693d (diff)
downloadlibplist-c7b005bc7864b6109115d4278872152208e78c23.tar.gz
libplist-c7b005bc7864b6109115d4278872152208e78c23.tar.bz2
fuzz: Add fuzzer for JSON format
Diffstat (limited to 'fuzz/jplist_fuzzer.cc')
-rw-r--r--fuzz/jplist_fuzzer.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/fuzz/jplist_fuzzer.cc b/fuzz/jplist_fuzzer.cc
new file mode 100644
index 0000000..d2fe8d3
--- /dev/null
+++ b/fuzz/jplist_fuzzer.cc
@@ -0,0 +1,32 @@
1/*
2 * xplist_fuzzer.cc
3 * XML plist fuzz target for libFuzzer
4 *
5 * Copyright (c) 2021 Nikias Bassen All Rights Reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <plist/plist.h>
23#include <stdio.h>
24
25extern "C" int LLVMFuzzerTestOneInput(const unsigned char* data, size_t size)
26{
27 plist_t root_node = NULL;
28 plist_from_json(reinterpret_cast<const char*>(data), size, &root_node);
29 plist_free(root_node);
30
31 return 0;
32}