|
""" |
|
This plugin searches for HubSpot API Tokens. |
|
""" |
|
|
|
import re |
|
|
|
from detect_secrets.plugins.base import RegexBasedDetector |
|
|
|
|
|
class HubSpotApiTokenDetector(RegexBasedDetector): |
|
"""Scans for HubSpot API Tokens.""" |
|
|
|
@property |
|
def secret_type(self) -> str: |
|
return "HubSpot API Token" |
|
|
|
@property |
|
def denylist(self) -> list[re.Pattern]: |
|
return [ |
|
|
|
re.compile( |
|
r"""(?i)(?:hubspot)(?:[0-9a-z\-_\t .]{0,20})(?:[\s|']|[\s|"]){0,3}(?:=|>|:{1,3}=|\|\|:|<=|=>|:|\?=)(?:'|\"|\s|=|\x60){0,5}([0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12})(?:['|\"|\n|\r|\s|\x60|;]|$)""" |
|
), |
|
] |
|
|