From 2761f4e0f0476a2f6ae7838907dd6bfc7414bb97 Mon Sep 17 00:00:00 2001 From: teomarcdhio Date: Sun, 25 Jan 2026 20:42:44 +0000 Subject: [PATCH] Updated toml --- .gitleaks.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitleaks.toml b/.gitleaks.toml index ecad3f8..a013ee6 100644 --- a/.gitleaks.toml +++ b/.gitleaks.toml @@ -46,3 +46,8 @@ useDefault = true description = "Hardcoded password" regex = '''password\s*=\s*".+"''' tags = ["password", "hardcoded"] + +[[rules]] + description = "Hardcoded secret with 'auth' in variable name" + regex = '''(?i)\w*auth\w*\s*=\s*".+"''' + tags = ["secret", "hardcoded", "auth"]