From 4f4f1eef615f6e64103fdc45db34f2235540c4e4 Mon Sep 17 00:00:00 2001 From: Randy Luecke Date: Tue, 3 Apr 2018 10:29:49 -0700 Subject: [PATCH] New key patterns for other popular services. --- key-definitions.json | 62 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/key-definitions.json b/key-definitions.json index 8b87886..99b3f0d 100644 --- a/key-definitions.json +++ b/key-definitions.json @@ -4,5 +4,65 @@ "regexp": { "pattern": "sk_live_([A-Za-z0-9*]{12,30})" } + }, + { + "description": "GitHub Secret Token", + "regexp": { + "pattern": "[a-f0-9]{40}" + } + }, + { + "description": "GitLab Personal Access Key", + "regexp": { + "pattern": "[A-Za-z0-9]{20}" + } + }, + { + "description": "GitLab RSS Token", + "regexp": { + "pattern": "[A-Za-z0-9\\-]{20}" + } + }, + { + "description": "GitLab Incoming Email Token", + "regexp": { + "pattern": "[a-z0-9]{25}" + } + }, + { + "description": "AWS Access Key ID", + "regexp": { + "pattern": "[A-Z0-9/+=]{20}" + } + }, + { + "description": "AWS Secret", + "regexp": { + "pattern": "[A-Za-z0-9/+=]{40}" + } + }, + { + "description": "Dropbox API Key", + "regexp": { + "pattern": "[a-z0-9]{15}" + } + }, + { + "description": "Twilio App Secret", + "regexp": { + "pattern": "[0-9a-f]{32}" + } + }, + { + "description": "Coinbase", + "regexp": { + "pattern": "[A-Za-z0-9]{32}" + } + }, + { + "description": "Facebook Developer App Secret", + "regexp": { + "pattern": "[a-f0-9]{32}" + } } -] +] \ No newline at end of file