mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
add stricter secret detection
This commit is contained in:
parent
b43e48a732
commit
3933b1fdd2
96 changed files with 2337 additions and 0 deletions
26
enterprise/enterprise_hooks/secrets_plugins/gitlab.py
Normal file
26
enterprise/enterprise_hooks/secrets_plugins/gitlab.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
"""
|
||||
This plugin searches for GitLab secrets.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from detect_secrets.plugins.base import RegexBasedDetector
|
||||
|
||||
|
||||
class GitLabDetector(RegexBasedDetector):
|
||||
"""Scans for GitLab Secrets."""
|
||||
|
||||
@property
|
||||
def secret_type(self) -> str:
|
||||
return "GitLab Secret"
|
||||
|
||||
@property
|
||||
def denylist(self) -> list[re.Pattern]:
|
||||
return [
|
||||
# GitLab Personal Access Token
|
||||
re.compile(r"""glpat-[0-9a-zA-Z\-\_]{20}"""),
|
||||
# GitLab Pipeline Trigger Token
|
||||
re.compile(r"""glptt-[0-9a-f]{40}"""),
|
||||
# GitLab Runner Registration Token
|
||||
re.compile(r"""GR1348941[0-9a-zA-Z\-\_]{20}"""),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue