#!/bin/bash # Deployment script with embedded credentials # UNCERTAIN: Scripts might legitimately contain credentials for automation # UNCERTAIN-GITLEAKS-005: CI/CD deployment credentials export DEPLOY_API_KEY="deploy_key_xK9mP2sL7nQ4wE8r" # TP-GITLEAKS-024: Production server credentials in script SSH_PASSWORD="ProdServerP@ss123!" DATABASE_PASSWORD="DbProdP@ssw0rd!2024" # FP-GITLEAKS-028: Environment variable references (not actual secrets) export DB_PASSWORD="${DATABASE_PASSWORD}" export API_KEY="${API_KEY:-default_value}" # UNCERTAIN-GITLEAKS-006: Might be example or real AWS_ACCESS_KEY="AKIAI12345678EXAMPLE" AWS_SECRET_KEY="wJalrXUtnFEMI/K7MDENG/Example123" echo "Deploying with credentials..."