github-guardian 1.0.1__tar.gz → 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-guardian
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Deep Forensic Security Audit Engine & Pre-Commit Shield
5
5
  Author: GitHub Guardian Team
6
6
  Requires-Dist: typer>=0.9.0
@@ -9,7 +9,8 @@ SECRET_PATTERNS = {
9
9
  "Slack Webhook": r'https://hooks\.slack\.com/services/T[0-9A-Z]{8}/B[0-9A-Z]{8}/[0-9a-zA-Z]{24}',
10
10
  "Stripe API Key": r'sk_live_[0-9a-zA-Z]{24}',
11
11
  "Private Key": r'-----BEGIN (?:RSA|OPENSSH) PRIVATE KEY-----',
12
- "Google API Key": r'AIza[0-9A-Za-z\-_]{35}'
12
+ "Google API Key": r'AIza[0-9A-Za-z\-_]{35}',
13
+ "OpenAI API Key": r'sk\s*-\s*[a-zA-Z0-9\-_]{40,}'
13
14
  }
14
15
 
15
16
  SAST_PATTERNS = {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-guardian
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Deep Forensic Security Audit Engine & Pre-Commit Shield
5
5
  Author: GitHub Guardian Team
6
6
  Requires-Dist: typer>=0.9.0
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="github-guardian",
5
- version="1.0.1",
5
+ version="1.0.2",
6
6
  description="Deep Forensic Security Audit Engine & Pre-Commit Shield",
7
7
  author="GitHub Guardian Team",
8
8
  packages=find_packages(),