-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fuzzing] move fuzz test in main repo add more fuzz test
Signed-off-by: Arjun Singh <[email protected]>
- Loading branch information
Showing
32 changed files
with
577 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "butil/base64.h" | ||
#include "butil/crc32c.h" | ||
#include "butil/hash.h" | ||
#include "butil/sha1.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string input(reinterpret_cast<const char*>(data), size); | ||
|
||
{ | ||
std::string encoded; | ||
std::string decoded; | ||
butil::Base64Encode(input, &encoded); | ||
butil::Base64Decode(input, &decoded); | ||
} | ||
{ | ||
butil::crc32c::Value(reinterpret_cast<const char*>(data), size); | ||
} | ||
{ | ||
butil::Hash(input); | ||
} | ||
{ | ||
butil::SHA1HashString(input); | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
aGVsbG8gd29ybGQ= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hello world |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "brpc/policy/esp_protocol.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string input(reinterpret_cast<const char*>(data), size); | ||
|
||
butil::IOBuf buf; | ||
buf.append(input); | ||
|
||
brpc::policy::ParseEspMessage(&buf, NULL, false, NULL); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "brpc/details/hpack.h" | ||
#include "butil/logging.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string input(reinterpret_cast<const char*>(data), size); | ||
|
||
butil::IOBuf buf; | ||
brpc::HPacker p2; | ||
brpc::HPacker::Header h2; | ||
|
||
p2.Init(4096); | ||
buf.append(input); | ||
|
||
p2.Decode(&buf, &h2); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
passwordsecret |
2 changes: 2 additions & 0 deletions
2
test/fuzzing/fuzz_hpack_seed_corpus/header_with_indexing.hpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@ | ||
custom-keycustom-header | ||
|
1 change: 1 addition & 0 deletions
1
test/fuzzing/fuzz_hpack_seed_corpus/header_without_indexing.hpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/sample/path |
2 changes: 2 additions & 0 deletions
2
test/fuzzing/fuzz_hpack_seed_corpus/requests_without_huffman.hpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
����@ | ||
custom-keycustom-value |
1 change: 1 addition & 0 deletions
1
test/fuzzing/fuzz_hpack_seed_corpus/responses_without_huffman.hpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
H302XprivateaMon, 21 Oct 2013 20:13:21 GMTnhttps://www.example.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "brpc/details/http_message.h" | ||
#include "brpc/policy/http_rpc_protocol.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string input(reinterpret_cast<const char*>(data), size); | ||
|
||
{ | ||
butil::IOBuf buf; | ||
buf.append(input); | ||
brpc::HttpMessage http_message; | ||
http_message.ParseFromIOBuf(buf); | ||
} | ||
{ | ||
brpc::HttpMessage http_message; | ||
http_message.ParseFromArray((char *)data, size); | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
GET /path/file.html?sdfsdf=sdfs HTTP/1.0 | ||
From: [email protected] | ||
User-Agent: HTTPTool/1.0 | ||
Content-Type: json | ||
Content-Length: 19 | ||
Host: sdlfjslfd | ||
Accept: */* | ||
|
||
Message Body sdfsdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
GET /CloudApiControl/HttpServer/telematics/v3/weather?location=%E6%B5%B7%E5%8D%97%E7%9C%81%E7%9B%B4%E8%BE%96%E5%8E%BF%E7%BA%A7%E8%A1%8C%E6%94%BF%E5%8D%95%E4%BD%8D&output=json&ak=0l3FSP6qA0WbOzGRaafbmczS HTTP/1.1 | ||
X-Host: api.map.baidu.com | ||
X-Forwarded-Proto: http | ||
Host: api.map.baidu.com | ||
User-Agent: IME/Android/4.4.2/N80.QHD.LT.X10.V3/N80.QHD.LT.X10.V3.20150812.031915 | ||
Accept: application/json | ||
Accept-Charset: UTF-8,*;q=0.5 | ||
Accept-Encoding: deflate,sdch | ||
Accept-Language: zh-CN,en-US;q=0.8,zh;q=0.6 | ||
Bfe-Atk: NORMAL_BROWSER | ||
Bfe_logid: 8767802212038413243 | ||
Bfeip: 10.26.124.40 | ||
CLIENTIP: 119.29.102.26 | ||
CLIENTPORT: 59863 | ||
Cache-Control: max-age=0 | ||
Content-Type: application/json;charset=utf8 | ||
X-Forwarded-For: 119.29.102.26 | ||
X-Forwarded-Port: 59863 | ||
X-Ime-Imei: 35629601890905 | ||
X_BD_LOGID: 3959476981 | ||
X_BD_LOGID64: 16815814797661447369 | ||
X_BD_PRODUCT: map | ||
X_BD_SUBSYS: apimap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "brpc/policy/hulu_pbrpc_protocol.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string input(reinterpret_cast<const char*>(data), size); | ||
|
||
butil::IOBuf buf; | ||
buf.append(input); | ||
|
||
brpc::policy::ParseHuluMessage(&buf, NULL, false, NULL); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
#include "json2pb/json_to_pb.h" | ||
#include "addressbook1.pb.h" | ||
|
||
#define kMinInputLength 5 | ||
#define kMaxInputLength 1024 | ||
|
||
extern "C" int | ||
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||
{ | ||
if (size < kMinInputLength || size > kMaxInputLength){ | ||
return 1; | ||
} | ||
|
||
std::string error; | ||
JsonContextBody jsondata; | ||
std::string input_data((char *)data,size); | ||
json2pb::JsonToProtoMessage(input_data, &jsondata, &error); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"judge":false, "spur":-2, "data":[], "info":[],"content":[]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[{"container": 1000, "host": 1000, "size": 2}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"content":[{"distance":1,"unknown_member":2,"ext":{"age":1666666666, "databyte":"d2VsY29tZQ==", "enumtype":1},"uid":"someone"},{"distance":10,"unknown_member":20,"ext":{"age":1666666660, "databyte":"d2VsY29tZQ==","enumtype":2},"uid":"someone0"}], "judge":false,"spur":2, "data":[1,2,3,4,5,6,7,8,9,10]} |
Oops, something went wrong.