Skip to content

Commit 05ff62e

Browse files
authored
add security handling process docs (#52)
1 parent b8cbd69 commit 05ff62e

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ current_span->endSpan();
113113
tracer->sendSegment(std::move(current_segment));
114114
```
115115

116+
## Security
117+
118+
If you've found any security issues, please read [Security Reporting Process](https://github.com/SkyAPM/cpp2sky/blob/main/SECURITY.md) and take described steps.
119+
116120
## LICENSE
117121

118122
Apache 2.0 License. See [LICENSE](https://github.com/SkyAPM/cpp2sky/blob/main/LICENSE) for more detail.

SECURITY.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Security Reporting Process
2+
3+
If you've found a security vulnerability on cpp2sky, please report the description and details to [email protected]. After that we will acknowledge about your report then send confiramation email.

source/grpc_async_client_impl.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ GrpcAsyncSegmentReporterClient::~GrpcAsyncSegmentReporterClient() {
6161
// failed to send message and close stream, then recreate new stream and try
6262
// to do it. This process will continue forever without sending explicit
6363
// signal.
64-
// TODO(shikugawa): Block to wait drained messages to be clear with createing condition
65-
// variable wrapper.
64+
// TODO(shikugawa): Block to wait drained messages to be clear with createing
65+
// condition variable wrapper.
6666
#ifndef TEST
6767
if (stream_) {
6868
std::unique_lock<std::mutex> lck(mux_);

0 commit comments

Comments
 (0)