mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	Moved ancillary files to extras/ (fixes #1011)
				
					
				
			This commit is contained in:
		
							
								
								
									
										17
									
								
								extras/fuzzing/CMakeLists.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								extras/fuzzing/CMakeLists.txt
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| # ArduinoJson - arduinojson.org | ||||
| # Copyright Benoit Blanchon 2014-2019 | ||||
| # MIT License | ||||
|  | ||||
| if(MSVC) | ||||
| 	add_compile_options(-D_CRT_SECURE_NO_WARNINGS) | ||||
| endif() | ||||
|  | ||||
| add_executable(msgpack_fuzzer | ||||
| 	msgpack_fuzzer.cpp | ||||
| 	fuzzer_main.cpp | ||||
| ) | ||||
|  | ||||
| add_executable(json_fuzzer | ||||
| 	json_fuzzer.cpp | ||||
| 	fuzzer_main.cpp | ||||
| ) | ||||
							
								
								
									
										22
									
								
								extras/fuzzing/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								extras/fuzzing/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| # CAUTION: this file is invoked by https://github.com/google/oss-fuzz | ||||
|  | ||||
| CXXFLAGS += -I../src -DARDUINOJSON_DEBUG | ||||
|  | ||||
| all: \ | ||||
| 	$(OUT)/json_fuzzer \ | ||||
| 	$(OUT)/json_fuzzer_seed_corpus.zip \ | ||||
| 	$(OUT)/json_fuzzer.options \ | ||||
| 	$(OUT)/msgpack_fuzzer \ | ||||
| 	$(OUT)/msgpack_fuzzer_seed_corpus.zip \ | ||||
| 	$(OUT)/msgpack_fuzzer.options | ||||
|  | ||||
| $(OUT)/%_fuzzer: %_fuzzer.cpp $(shell find ../src -type f) | ||||
| 	$(CXX) $(CXXFLAGS) $< -o$@ $(LIB_FUZZING_ENGINE) | ||||
|  | ||||
| $(OUT)/%_fuzzer_seed_corpus.zip: %_seed_corpus/* | ||||
| 	zip -j $@ $? | ||||
|  | ||||
| $(OUT)/%_fuzzer.options: | ||||
| 	@echo "[libfuzzer]" > $@ | ||||
| 	@echo "max_len = 256" >> $@ | ||||
| 	@echo "timeout = 10" >> $@ | ||||
							
								
								
									
										50
									
								
								extras/fuzzing/fuzzer_main.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								extras/fuzzing/fuzzer_main.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | ||||
| // ArduinoJson - arduinojson.org | ||||
| // Copyright Benoit Blanchon 2014-2019 | ||||
| // MIT License | ||||
|  | ||||
| // This file is NOT use by Google's OSS fuzz | ||||
| // I only use it to reproduce the bugs found | ||||
|  | ||||
| #include <stdint.h>  // size_t | ||||
| #include <stdio.h>   // fopen et al. | ||||
| #include <stdlib.h>  // exit | ||||
| #include <iostream> | ||||
| #include <vector> | ||||
|  | ||||
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size); | ||||
|  | ||||
| std::vector<uint8_t> read(const char* path) { | ||||
|   FILE* f = fopen(path, "rb"); | ||||
|   if (!f) { | ||||
|     std::cerr << "Failed to open " << path << std::endl; | ||||
|     exit(1); | ||||
|   } | ||||
|  | ||||
|   fseek(f, 0, SEEK_END); | ||||
|   size_t size = ftell(f); | ||||
|   fseek(f, 0, SEEK_SET); | ||||
|  | ||||
|   std::vector<uint8_t> buffer(size); | ||||
|   if (fread(buffer.data(), 1, size, f) != size) { | ||||
|     fclose(f); | ||||
|     std::cerr << "Failed to read " << path << std::endl; | ||||
|     exit(1); | ||||
|   } | ||||
|  | ||||
|   fclose(f); | ||||
|   return buffer; | ||||
| } | ||||
|  | ||||
| int main(int argc, const char* argv[]) { | ||||
|   if (argc < 2) { | ||||
|     std::cerr << "Usage: msgpack_fuzzer files" << std::endl; | ||||
|     return 1; | ||||
|   } | ||||
|  | ||||
|   for (int i = 1; i < argc; i++) { | ||||
|     std::cout << "Loading " << argv[i] << std::endl; | ||||
|     std::vector<uint8_t> buffer = read(argv[i]); | ||||
|     LLVMFuzzerTestOneInput(buffer.data(), buffer.size()); | ||||
|   } | ||||
|   return 0; | ||||
| } | ||||
							
								
								
									
										2
									
								
								extras/fuzzing/json_corpus/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								extras/fuzzing/json_corpus/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| * | ||||
| !.gitignore | ||||
							
								
								
									
										11
									
								
								extras/fuzzing/json_fuzzer.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								extras/fuzzing/json_fuzzer.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| #include <ArduinoJson.h> | ||||
|  | ||||
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { | ||||
|   DynamicJsonDocument doc(4096); | ||||
|   DeserializationError error = deserializeJson(doc, data, size); | ||||
|   if (!error) { | ||||
|     std::string json; | ||||
|     serializeJson(doc, json); | ||||
|   } | ||||
|   return 0; | ||||
| } | ||||
							
								
								
									
										10
									
								
								extras/fuzzing/json_seed_corpus/Comments.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								extras/fuzzing/json_seed_corpus/Comments.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| //comment | ||||
| /*comment*/ | ||||
| [ //comment | ||||
| /*comment*/"comment"/*comment*/,//comment | ||||
| /*comment*/{//comment | ||||
| /* comment*/"key"//comment | ||||
| : //comment | ||||
| "value"//comment | ||||
| }/*comment*/ | ||||
| ]//comment | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/json_seed_corpus/EmptyArray.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/json_seed_corpus/EmptyArray.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| [] | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/json_seed_corpus/EmptyObject.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/json_seed_corpus/EmptyObject.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| {} | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/json_seed_corpus/ExcessiveNesting.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/json_seed_corpus/ExcessiveNesting.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| [1,[2,[3,[4,[5,[6,[7,[8,[9,[10,[11,[12,[13,[14,[15,[16,[17,[18,[19,[20,[21,[22,[23,[24,[25,[26,[27,[28,[29,[30,[31,[32,[33,[34,[35,[36,[37,[38,[39,[40,[41,[42,[43,[44,[45,[46,[47,[48,[49,[50,[51,[52,[53,[54,[55,[56,[57,[58,[59,[60,[61,[62,[63,[64,[65,[66,[67,[68,[69,[70,[71,[72,[73,[74,[75,[76,[77,[78,[79,[80,[81,[82,[83,[84,[85,[86,[87,[88,[89,[90,[91,[92,[93,[94,[95,[96,[97,[98,[99,[100,[101,[102,[103,[104,[105,[106,[107,[108,[109,[110,[111,[112,[113,[114,[115,[116,[117,[118,[119,[120]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/json_seed_corpus/IntegerOverflow.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/json_seed_corpus/IntegerOverflow.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| 9720730739393920739 | ||||
							
								
								
									
										24
									
								
								extras/fuzzing/json_seed_corpus/Numbers.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								extras/fuzzing/json_seed_corpus/Numbers.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| [ | ||||
|   123, | ||||
|   -123, | ||||
|   123.456, | ||||
|   -123.456, | ||||
|   12e34, | ||||
|   12e-34, | ||||
|   12e+34, | ||||
|   12E34, | ||||
|   12E-34, | ||||
|   12E+34, | ||||
|   12.34e56, | ||||
|   12.34e-56, | ||||
|   12.34e+56, | ||||
|   12.34E56, | ||||
|   12.34E-56, | ||||
|   12.34E+56, | ||||
|   NaN, | ||||
|   -NaN, | ||||
|   +NaN, | ||||
|   Infinity, | ||||
|   +Infinity, | ||||
|   -Infinity | ||||
| ] | ||||
							
								
								
									
										53
									
								
								extras/fuzzing/json_seed_corpus/OpenWeatherMap.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								extras/fuzzing/json_seed_corpus/OpenWeatherMap.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,53 @@ | ||||
| { | ||||
|   "coord": { | ||||
|     "lon": -0.13, | ||||
|     "lat": 51.51 | ||||
|   }, | ||||
|   "weather": [ | ||||
|     { | ||||
|       "id": 301, | ||||
|       "main": "Drizzle", | ||||
|       "description": "drizzle", | ||||
|       "icon": "09n" | ||||
|     }, | ||||
|     { | ||||
|       "id": 701, | ||||
|       "main": "Mist", | ||||
|       "description": "mist", | ||||
|       "icon": "50n" | ||||
|     }, | ||||
|     { | ||||
|       "id": 741, | ||||
|       "main": "Fog", | ||||
|       "description": "fog", | ||||
|       "icon": "50n" | ||||
|     } | ||||
|   ], | ||||
|   "base": "stations", | ||||
|   "main": { | ||||
|     "temp": 281.87, | ||||
|     "pressure": 1032, | ||||
|     "humidity": 100, | ||||
|     "temp_min": 281.15, | ||||
|     "temp_max": 283.15 | ||||
|   }, | ||||
|   "visibility": 2900, | ||||
|   "wind": { | ||||
|     "speed": 1.5 | ||||
|   }, | ||||
|   "clouds": { | ||||
|     "all": 90 | ||||
|   }, | ||||
|   "dt": 1483820400, | ||||
|   "sys": { | ||||
|     "type": 1, | ||||
|     "id": 5091, | ||||
|     "message": 0.0226, | ||||
|     "country": "GB", | ||||
|     "sunrise": 1483776245, | ||||
|     "sunset": 1483805443 | ||||
|   }, | ||||
|   "id": 2643743, | ||||
|   "name": "London", | ||||
|   "cod": 200 | ||||
| } | ||||
							
								
								
									
										8
									
								
								extras/fuzzing/json_seed_corpus/Strings.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								extras/fuzzing/json_seed_corpus/Strings.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| [ | ||||
|   "hello", | ||||
|   'hello', | ||||
|   hello, | ||||
|   {"hello":"world"}, | ||||
|   {'hello':'world'}, | ||||
|   {hello:world} | ||||
| ] | ||||
							
								
								
									
										90
									
								
								extras/fuzzing/json_seed_corpus/WeatherUnderground.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										90
									
								
								extras/fuzzing/json_seed_corpus/WeatherUnderground.json
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,90 @@ | ||||
| { | ||||
|   "response": { | ||||
|     "version": "0.1", | ||||
|     "termsofService": "http://www.wunderground.com/weather/api/d/terms.html", | ||||
|     "features": { | ||||
|       "conditions": 1 | ||||
|     } | ||||
|   }, | ||||
|   "current_observation": { | ||||
|     "image": { | ||||
|       "url": "http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png", | ||||
|       "title": "Weather Underground", | ||||
|       "link": "http://www.wunderground.com" | ||||
|     }, | ||||
|     "display_location": { | ||||
|       "full": "San Francisco, CA", | ||||
|       "city": "San Francisco", | ||||
|       "state": "CA", | ||||
|       "state_name": "California", | ||||
|       "country": "US", | ||||
|       "country_iso3166": "US", | ||||
|       "zip": "94101", | ||||
|       "latitude": "37.77500916", | ||||
|       "longitude": "-122.41825867", | ||||
|       "elevation": "47.00000000" | ||||
|     }, | ||||
|     "observation_location": { | ||||
|       "full": "SOMA - Near Van Ness, San Francisco, California", | ||||
|       "city": "SOMA - Near Van Ness, San Francisco", | ||||
|       "state": "California", | ||||
|       "country": "US", | ||||
|       "country_iso3166": "US", | ||||
|       "latitude": "37.773285", | ||||
|       "longitude": "-122.417725", | ||||
|       "elevation": "49 ft" | ||||
|     }, | ||||
|     "estimated": {}, | ||||
|     "station_id": "KCASANFR58", | ||||
|     "observation_time": "Last Updated on June 27, 5:27 PM PDT", | ||||
|     "observation_time_rfc822": "Wed, 27 Jun 2012 17:27:13 -0700", | ||||
|     "observation_epoch": "1340843233", | ||||
|     "local_time_rfc822": "Wed, 27 Jun 2012 17:27:14 -0700", | ||||
|     "local_epoch": "1340843234", | ||||
|     "local_tz_short": "PDT", | ||||
|     "local_tz_long": "America/Los_Angeles", | ||||
|     "local_tz_offset": "-0700", | ||||
|     "weather": "Partly Cloudy", | ||||
|     "temperature_string": "66.3 F (19.1 C)", | ||||
|     "temp_f": 66.3, | ||||
|     "temp_c": 19.1, | ||||
|     "relative_humidity": "65%", | ||||
|     "wind_string": "From the NNW at 22.0 MPH Gusting to 28.0 MPH", | ||||
|     "wind_dir": "NNW", | ||||
|     "wind_degrees": 346, | ||||
|     "wind_mph": 22, | ||||
|     "wind_gust_mph": "28.0", | ||||
|     "wind_kph": 35.4, | ||||
|     "wind_gust_kph": "45.1", | ||||
|     "pressure_mb": "1013", | ||||
|     "pressure_in": "29.93", | ||||
|     "pressure_trend": "+", | ||||
|     "dewpoint_string": "54 F (12 C)", | ||||
|     "dewpoint_f": 54, | ||||
|     "dewpoint_c": 12, | ||||
|     "heat_index_string": "NA", | ||||
|     "heat_index_f": "NA", | ||||
|     "heat_index_c": "NA", | ||||
|     "windchill_string": "NA", | ||||
|     "windchill_f": "NA", | ||||
|     "windchill_c": "NA", | ||||
|     "feelslike_string": "66.3 F (19.1 C)", | ||||
|     "feelslike_f": "66.3", | ||||
|     "feelslike_c": "19.1", | ||||
|     "visibility_mi": "10.0", | ||||
|     "visibility_km": "16.1", | ||||
|     "solarradiation": "", | ||||
|     "UV": "5", | ||||
|     "precip_1hr_string": "0.00 in ( 0 mm)", | ||||
|     "precip_1hr_in": "0.00", | ||||
|     "precip_1hr_metric": " 0", | ||||
|     "precip_today_string": "0.00 in (0 mm)", | ||||
|     "precip_today_in": "0.00", | ||||
|     "precip_today_metric": "0", | ||||
|     "icon": "partlycloudy", | ||||
|     "icon_url": "http://icons-ak.wxug.com/i/c/k/partlycloudy.gif", | ||||
|     "forecast_url": "http://www.wunderground.com/US/CA/San_Francisco.html", | ||||
|     "history_url": "http://www.wunderground.com/history/airport/KCASANFR58/2012/6/27/DailyHistory.html", | ||||
|     "ob_url": "http://www.wunderground.com/cgi-bin/findweather/getForecast?query=37.773285,-122.417725" | ||||
|   } | ||||
| } | ||||
							
								
								
									
										2
									
								
								extras/fuzzing/msgpack_corpus/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								extras/fuzzing/msgpack_corpus/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| * | ||||
| !.gitignore | ||||
							
								
								
									
										11
									
								
								extras/fuzzing/msgpack_fuzzer.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								extras/fuzzing/msgpack_fuzzer.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| #include <ArduinoJson.h> | ||||
|  | ||||
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { | ||||
|   DynamicJsonDocument doc(4096); | ||||
|   DeserializationError error = deserializeMsgPack(doc, data, size); | ||||
|   if (!error) { | ||||
|     std::string json; | ||||
|     serializeMsgPack(doc, json); | ||||
|   } | ||||
|   return 0; | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/array16
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/array16
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/array32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/array32
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/false
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/false
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixarray
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixarray
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD><EFBFBD>hello<EFBFBD>world | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixint_negative
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixint_negative
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixint_positive
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixint_positive
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
|  | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixmap
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixmap
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD><EFBFBD>one<01>two | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixstr
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/fixstr
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>hello world | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/float32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/float32
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>@H<><48> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/float64
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/float64
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>@	!<21><><EFBFBD>o | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int16
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int16
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD><EFBFBD><EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int32
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| Ҷi<EFBFBD>. | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int64
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int64
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>4Vx<56><78><EFBFBD><EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int8
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/int8
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD><EFBFBD> | ||||
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/map16
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/map16
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/map32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/map32
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/nil
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/nil
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD> | ||||
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/str16
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/str16
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/str32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								extras/fuzzing/msgpack_seed_corpus/str32
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/str8
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/str8
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>hello | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/true
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/true
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint16
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint16
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>09 | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint32
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint32
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>4Vx | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint64
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint64
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD>4Vx<56><78><EFBFBD><EFBFBD> | ||||
							
								
								
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint8
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								extras/fuzzing/msgpack_seed_corpus/uint8
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| <EFBFBD><EFBFBD> | ||||
		Reference in New Issue
	
	Block a user