Úsalo si
Discover over-privileged OAuth grants, stale app access, and shadow AI tool sprawl across Google Workspace, Microsoft 365, and GitHub. Runs entirely inside your tenant boundary.
Discover over-privileged OAuth grants, stale app access, and shadow AI tool sprawl across Google Workspace, Microsoft 365, and GitHub. Runs entirely inside your tenant boundary. Audiencia: Security engineers, identity and access management teams, platform engineers. Tiempo típico de configuración: 10 minutes.
Discover over-privileged OAuth grants, stale app access, and shadow AI tool sprawl across Google Workspace, Microsoft 365, and GitHub. Runs entirely inside your tenant boundary.
Copy a working starter, run it in your environment, then come back here for the deeper rollout details.
Solo demostración
Esta configuración está diseñada para facilitar el uso. Para desplegar clientes de escaneo a escala, planifique su arquitectura de despliegue en consecuencia o contáctenos para obtener las mejores prácticas empresariales.
Descarga los archivos exactos usados en esta guía o ejecuta el instalador de un solo comando para escribirlos localmente antes del despliegue.
Creates the AWS CDK project under `deploy/aws-saas-scanner/` so the scheduled Fargate deployment commands on this page work unchanged.
BLACKSHIELD_SAAS_IMAGE=public.ecr.aws/blackshield-security/saas-scanner:1.0.8 \
bash <(curl -fsSL https://blackshield.chaplau.com/source-bundles/aws-saas-scanner.sh)
cd deploy/aws-saas-scannerCreates the Terraform module under `deploy/gcp-saas-scanner/` and prefills the current platform API URL so the Cloud Run deployment commands on this page work unchanged.
BLACKSHIELD_SAAS_IMAGE=public.ecr.aws/blackshield-security/saas-scanner:1.0.8 \
BLACKSHIELD_SITE_URL=https://blackshield.chaplau.com \
BLACKSHIELD_API_URL=https://api.blackshield.chaplau.com \
bash <(curl -fsSL https://blackshield.chaplau.com/source-bundles/gcp-saas-scanner.sh)
cd deploy/gcp-saas-scannerdocker run --rm \
-e BLACKSHIELD_API_URL=https://api.blackshield.chaplau.com \
-e BLACKSHIELD_API_KEY=sp_xxxx \
-e SAAS_SCAN_MODE=oauth \
-e SAAS_SCAN_PROVIDER=google_workspace \
-e SAAS_COLLECTOR_STRATEGY=api \
-e SAAS_ACCESS_TOKEN=ya29.xxxx \
-e GOOGLE_CUSTOMER_ID=C0xxxxxxx \
-e SCAN_INTERVAL_SECONDS=0 \
public.ecr.aws/blackshield-security/saas-scanner:1.0.8cd deploy/aws-saas-scanner
pip install -r requirements.txt
# Store credentials (once)
aws secretsmanager create-secret \
--name "blackshield/saas-scanner/google" \
--secret-string '{
"BLACKSHIELD_API_KEY": "sp_xxxx",
"SAAS_ACCESS_TOKEN": "ya29.xxxx",
"GOOGLE_CUSTOMER_ID": "C0xxxxxxx"
}'
# Deploy Fargate task (scans every 6 hours)
python3.11 -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
export BLACKSHIELD_API_URL=https://api.blackshield.chaplau.com
export SCANNER_IMAGE_URI=public.ecr.aws/blackshield-security/saas-scanner:1.0.8
export SAAS_SCAN_PROVIDER=google_workspace
export SECRET_NAME=blackshield/saas-scanner/google
cdk bootstrap
cdk deploy BlackShieldSaasScanner-Google --require-approval neverapiVersion: batch/v1
kind: CronJob
metadata:
name: blackshield-saas-github
namespace: blackshield
spec:
schedule: "0 3 * * *"
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
restartPolicy: OnFailure
containers:
- name: saas-scanner
image: public.ecr.aws/blackshield-security/saas-scanner:1.0.8
env:
- { name: BLACKSHIELD_API_URL, value: "https://api.blackshield.chaplau.com" }
- { name: SAAS_SCAN_MODE, value: ai_assets }
- { name: SAAS_SCAN_PROVIDER, value: github_code }
- { name: SAAS_COLLECTOR_STRATEGY, value: api }
- { name: SCAN_INTERVAL_SECONDS, value: "0" }
- { name: GITHUB_ORG, value: your-org }
- name: BLACKSHIELD_API_KEY
valueFrom:
secretKeyRef: { name: blackshield-saas-scanner, key: api-key }
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef: { name: blackshield-saas-scanner, key: github-token }Use the guided steps below when you want to tailor the rollout, validate ownership, or expand the deployment safely.
Paso 1
Generate the necessary access tokens from your target SaaS provider. The scanner requires read-only scopes to inspect user grants and installed apps.
Cómo se ve el éxito
GitHub: Create a Personal Access Token (PAT) or GitHub App token with `read:org` and `repo` scopes.
Helpful context
Paso 2
Before deploying the automated schedule, verify your credentials and network access by running a one-shot container locally.
Cómo se ve el éxito
Check the terminal output to ensure the scanner successfully authenticates and pushes at least one batch of findings.
Paso 3
Automate the scan cadence (e.g., daily) by deploying the scanner as a scheduled task in AWS or GCP.
Cómo se ve el éxito
Kubernetes: Apply a `CronJob` manifest to run the scanner on a schedule.
Paso 4
Check the platform dashboard to review the ingested SaaS inventory.
Cómo se ve el éxito
For GitHub targets, review any newly discovered shadow AI/LLM dependencies.
Keep your rollout moving with the next recommended step.
Revisa y prioriza hallazgos