We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61491e3 commit 737cfecCopy full SHA for 737cfec
src/verify_cert.rs
@@ -242,7 +242,13 @@ impl Budget {
242
243
impl Default for Budget {
244
fn default() -> Self {
245
- Self { signatures: 100 }
+ Self {
246
+ // This limit is taken from the remediation for golang CVE-2018-16875. However,
247
+ // note that golang subsequently implemented AKID matching due to this limit
248
+ // being hit in real applications (see <https://github.com/spiffe/spire/issues/1004>).
249
+ // So this may actually be too aggressive.
250
+ signatures: 100,
251
+ }
252
}
253
254
0 commit comments