Loading request...
The user requests support for detecting Stripe Webhook Secrets, which follow the structure `whsec_[A-Za-z0-9+]{32}|whsec_[A-Za-z0-9+]{64}`. This would expand TruffleHog's coverage for key detection.
## Description Add support for detecting Stripe Webhook Secrets ### Preferred Solution Suggested Regex: ``` whsec_[A-Za-z0-9+]{32}|whsec_[A-Za-z0-9+]{64} ``` ### Additional Context Stripe Webhook Secrets have the structure: `whsec_` followed by either 32 or 64 base64-style characters. Adding this will expand TruffleHog's coverage for key detection, improving security auditing for users leveraging Stripe payment services. #### References None currently.