/src/httrack/fuzz/fuzz-meta.c
Line | Count | Source |
1 | | /* ------------------------------------------------------------ */ |
2 | | /* |
3 | | HTTrack Website Copier, Offline Browser for Windows and Unix |
4 | | Copyright (C) 1998 Xavier Roche and other contributors |
5 | | |
6 | | SPDX-License-Identifier: GPL-3.0-or-later |
7 | | |
8 | | This program is free software: you can redistribute it and/or modify |
9 | | it under the terms of the GNU General Public License as published by |
10 | | the Free Software Foundation, either version 3 of the License, or |
11 | | (at your option) any later version. |
12 | | |
13 | | This program is distributed in the hope that it will be useful, |
14 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | | GNU General Public License for more details. |
17 | | |
18 | | You should have received a copy of the GNU General Public License |
19 | | along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 | | |
21 | | Ethical use: we kindly ask that you NOT use this software to harvest email |
22 | | addresses or to collect any other private information about people. Doing so |
23 | | would dishonor our work and waste the many hours we have spent on it. |
24 | | |
25 | | Please visit our Website: http://www.httrack.com |
26 | | */ |
27 | | |
28 | | /* Fuzz hts_getCharsetFromMeta (htscharset.c): scans raw attacker HTML for a |
29 | | <meta> charset declaration. */ |
30 | | #include "fuzz.h" |
31 | | #include "htscharset.h" |
32 | | |
33 | 1.39k | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
34 | 1.39k | char *html = fuzz_strdup(data, size); |
35 | 1.39k | char *charset = hts_getCharsetFromMeta(html, size); |
36 | | |
37 | 1.39k | freet(charset); |
38 | | freet(html); |
39 | 1.39k | return 0; |
40 | 1.39k | } |