forked from phoenix/litellm-mirror
add stricter secret detection
This commit is contained in:
parent
552bac586f
commit
84ee37086c
96 changed files with 2337 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
"""
|
||||
This plugin searches for PyPI Upload Tokens.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from detect_secrets.plugins.base import RegexBasedDetector
|
||||
|
||||
|
||||
class PyPiUploadTokenDetector(RegexBasedDetector):
|
||||
"""Scans for PyPI Upload Tokens."""
|
||||
|
||||
@property
|
||||
def secret_type(self) -> str:
|
||||
return "PyPI Upload Token"
|
||||
|
||||
@property
|
||||
def denylist(self) -> list[re.Pattern]:
|
||||
return [re.compile(r"""pypi-AgEIcHlwaS5vcmc[A-Za-z0-9\-_]{50,1000}""")]
|
Loading…
Add table
Add a link
Reference in a new issue