Security issue notifications
If you discover a potential security issue in s2n-quic we ask that you notify
AWS Security via our vulnerability reporting page. Please do not create a public github issue.
Problem:
Today the cleaner (https://github.com/aws/s2n-quic/blob/main/dc/s2n-quic-dc/src/path/secret/map/cleaner.rs) tracks "active" entries and reports counts for those entries. We clear the active status on each iteration, i.e., once a minute. We should bump up the timeline or extend active with multiple timelines (e.g., active in last 1m, 5m, 30m, 1hr)... but we need to be careful on memory usage and performance of the extra tracking so needs some care to get that right.
Need By Date:
n/a
Solution:
- Does this change what s2n-quic sends over the wire? no
- Does this change any public APIs? only new metrics
Security issue notifications
If you discover a potential security issue in s2n-quic we ask that you notify
AWS Security via our vulnerability reporting page. Please do not create a public github issue.
Problem:
Today the cleaner (https://github.com/aws/s2n-quic/blob/main/dc/s2n-quic-dc/src/path/secret/map/cleaner.rs) tracks "active" entries and reports counts for those entries. We clear the active status on each iteration, i.e., once a minute. We should bump up the timeline or extend active with multiple timelines (e.g., active in last 1m, 5m, 30m, 1hr)... but we need to be careful on memory usage and performance of the extra tracking so needs some care to get that right.
Need By Date:
n/a
Solution: