Spaces:
Configuration error
Configuration error
""" | |
This plugin searches for Bittrex Access Key and Secret Key | |
""" | |
import re | |
from detect_secrets.plugins.base import RegexBasedDetector | |
class BittrexDetector(RegexBasedDetector): | |
"""Scans for Bittrex Access Key and Secret Key.""" | |
def secret_type(self) -> str: | |
return "Bittrex Secrets" | |
def denylist(self) -> list[re.Pattern]: | |
return [ | |
# For Bittrex Access Key | |
re.compile( | |
r"""(?i)(?:bittrex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:{1,3}=|\|\|:|<=|=>|:|\?=)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)""" | |
), | |
# For Bittrex Secret Key | |
re.compile( | |
r"""(?i)(?:bittrex)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:{1,3}=|\|\|:|<=|=>|:|\?=)(?:'|\"|\s|=|\x60){0,5}([a-z0-9]{32})(?:['|\"|\n|\r|\s|\x60|;]|$)""" | |
), | |
] | |