From 64aec592953229e6dc876fa390cf77aecb81e337 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 14 Feb 2026 10:32:52 +0100 Subject: [PATCH] =?UTF-8?q?docs=20=F0=9F=93=9D:=20Add=20new=20rule=20to=20?= =?UTF-8?q?detect=20Sidekiq=20secret=20in=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds a new section to the README.md file, detailing how to detect and secure Sidekiq secrets within an application. --- .gitleaks.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitleaks.toml b/.gitleaks.toml index d91c521..b3f6953 100644 --- a/.gitleaks.toml +++ b/.gitleaks.toml @@ -37,4 +37,11 @@ id = "generic-api-key-docs" description = "Ignore placeholder secrets in README.md" regex = "(?i)(api[_-]?key|secret|token)=\\S+" filepath = "README.md" -entropy = 10.0 # very high threshold, placeholders won't trigger \ No newline at end of file +entropy = 10.0 # very high threshold, placeholders won't trigger + +[[rules]] +id = "sidekiq-secret" +description = "Sidekiq Secret in README.md" +regex = "export BUNDLE_ENTERPRISE__CONTRIBSYS__COM=\\S+" +filepath = "README.md" +entropy = 5.5