security-firebase-apk-scanner
Scan Android APKs for Firebase misconfigurations and exposed credentials. Use when analyzing Android applications for insecure Firebase configurations, leaked API keys, open Realtime Database or Firestore instances, exposed Cloud Storage buckets, or misconfigured authentication settings.
Works with
---
name: security-firebase-apk-scanner
description: Scan Android APKs for Firebase misconfigurations and exposed credentials. Use when analyzing Android applications for insecure Firebase configurations, leaked API keys, open Realtime Database or Firestore instances, exposed Cloud Storage buckets, or misconfigured authentication settings.
license: MIT
---
# Firebase APK Security Scanner
## When to Use
- Analyzing Android APKs for Firebase configuration issues
- Checking for exposed Firebase API keys and project IDs
- Testing Firebase Realtime Database and Firestore access controls
- Identifying misconfigured Firebase Storage buckets
- Assessing Firebase Authentication settings
## When NOT to Use
- iOS app analysis (different extraction method)
- General Android reverse engineering (use dedicated RE tools)
- Non-Firebase backend security testing
## APK Analysis Workflow
### 1. Extract Firebase Config
```bash
# Decompile APK
apktool d app.apk -o app_decoded/
# Find google-services.json or Firebase config
find app_decoded/ -name "google-services.json" -o -name "*.xml" | xargs grep -l "firebase"
# Extract from strings.xml
grep -r "firebase_database_url\|google_api_key\|google_app_id\|project_id\|storage_bucket" app_decoded/
```
### 2. Key Configuration Values
| Value | Location | Risk if Exposed |
|-------|----------|----------------|
| `firebase_database_url` | strings.xml / google-services.json | Direct database access if rules are open |
| `google_api_key` | strings.xml | API abuse, quota theft |
| `google_storage_bucket` | strings.xml | File access if rules are open |
| `project_id` | google-services.json | Enumeration, targeted attacks |
| `gcm_defaultSenderId` | google-services.json | Push notification abuse |
### 3. Test Database Access
```bash
# Test Realtime Database (unauthenticated read)
curl -s "https://<project-id>-default-rtdb.firebaseio.com/.json"
# Test specific paths
curl -s "https://<project-id>-default-rtdb.firebaseio.com/users.json"
# Test write access
curl -X PUT -d '{"test":"probe"}' "https://<project-id>-default-rtdb.firebaseio.com/test.json"
```
### 4. Test Storage Access
```bash
# List storage bucket contents
gsutil ls gs://<bucket-name>/ 2>/dev/null
# Or via REST API
curl -s "https://firebasestorage.googleapis.com/v0/b/<bucket-name>/o"
```
### 5. Check Firestore Rules
```bash
# Test Firestore read (unauthenticated)
curl -s "https://firestore.googleapis.com/v1/projects/<project-id>/databases/(default)/documents/<collection>"
```
## Common Misconfigurations
| Misconfiguration | Impact | Fix |
|-----------------|--------|-----|
| Database rules: `".read": true` | Anyone can read all data | Use authenticated rules |
| Storage rules: `allow read, write` | Public file access | Require authentication |
| No Firestore rules | Default deny (safe) | Explicitly set rules |
| API key unrestricted | API abuse and billing | Restrict by app/IP/referrer |
| Auth sign-up unrestricted | Account enumeration | Rate limit; restrict domains |
## Remediation
1. Apply least-privilege Firebase Security Rules
2. Restrict API keys to specific apps and APIs
3. Enable App Check for additional verification
4. Monitor Firebase usage for anomalies
5. Use Firebase Auth for all data accessMore Security skills
azure-cost
microsoft/azure-skills
Azure cost management: query costs, forecast spending, optimize to reduce waste. WHEN: \"Azure costs\", \"Azure bill\", \"cost breakdown\", \"how much am I spending\", \"forecast spending\", \"optimize costs\", \"reduce spending\", \"orphaned resources\", \"rightsize VMs\", \"cost spike\", \"reduce storage costs\", \"AKS cost\". DO NOT USE FOR: deploying resources, provisioning, diagnostics, or security audits.
entra-app-registration
microsoft/azure-skills
Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Key Vault secrets (use azure-keyvault-expiration-audit), general Azure resource security guidance.
azure-messaging
microsoft/azure-skills
Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, message lock expired, lock renewal, lock renewal batch, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter, batch processing lock, session lock expired, idle timeout, connection inactive, link detach, slow reconnect, session error, duplicate events, offset reset, receive batch.

