feat(02-01): add Google AI, Vertex AI, AWS Bedrock, xAI providers

- google-ai: AIzaSy pattern for Gemini
- vertex-ai: AIzaSy + Bearer verify on aiplatform endpoint
- aws-bedrock: ABSK long-token and AKIA medium patterns
- xai: xai- 80-char token pattern
- All dual-located in providers/ and pkg/providers/definitions/
This commit is contained in:
salvacybersec
2026-04-05 14:12:03 +03:00
parent 5b5a47d3cc
commit d74200b5ef
8 changed files with 172 additions and 0 deletions

22
providers/vertex-ai.yaml Normal file
View File

@@ -0,0 +1,22 @@
format_version: 1
name: vertex-ai
display_name: Google Vertex AI
tier: 1
last_verified: "2026-04-05"
keywords:
- "vertex"
- "vertex_ai"
- "google_cloud"
- "aiplatform.googleapis.com"
- "AIzaSy"
patterns:
- regex: 'AIzaSy[A-Za-z0-9_\-]{33}'
entropy_min: 3.5
confidence: medium
verify:
method: GET
url: https://aiplatform.googleapis.com/v1/projects
headers:
Authorization: "Bearer {KEY}"
valid_status: [200]
invalid_status: [401, 403]