Mobile security
Skill ShieldNet-360/secure-vibe/dist/copilot-skills/.github/skills/mobile-security
SecureVibe — prevention-first security for AI-written code. Signed SKILL.md knowledge that makes AI coding assistants write secure code at generation time, plus a deterministic CI gate. Offline · keyless · Ed25519-signed. By ShieldNet360.
npx -y skills add ShieldNet-360/secure-vibe --skill mobile-securityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Android and iOS hardening: exported components, ATS, keychain, certificate pinning, root/jailbreak detection — Applies to: when generating Android (Kotlin / Java) app code or manifests; when generating iOS (Swift / Objective-C) app code; when generating React Native / Flutter native modules
SKILL.md
4.1 KB, 880 tokens by cl100k_base, as published. Nobody here has run it
Mobile Application Security
Android and iOS hardening: exported components, ATS, keychain, certificate pinning, root/jailbreak detection
ALWAYS
- Android: every
<activity>,<service>,<receiver>,<provider>inAndroidManifest.xmleither hasandroid:exported="false"or explicitly declares an intent filter and is intentionally exported. As of Android 12 (API 31),android:exportedis required when an intent-filter is declared. - Android: store secrets in the Android Keystore (
KeyStore/ EncryptedSharedPreferences withMasterKey). Never in plainSharedPreferences, plain files, orBuildConfig. - iOS: store secrets in the Keychain with
kSecAttrAccessibleAfterFirstUnlockThisDeviceOnlyor stricter. Don't store inUserDefaults, plist, or files. - iOS: keep App Transport Security (ATS) enabled in
Info.plist. If an exception is required, scope it to a specific host withNSExceptionDomains. - Validate the server's TLS certificate with certificate pinning (public key pinning preferred) for backends you control. Use
OkHttp.CertificatePinneron Android,URLSessionDelegate didReceiveChallengeon iOS, or your framework's pinning module. - Obfuscate / shrink release builds (Android R8 / ProGuard with
proguard-rules.pro; iOS bitcode + Swift symbol stripping). Strip debug logs from release builds. - Detect rooted / jailbroken devices for high-risk apps (banking, payment, enterprise) and reduce sensitivity (block payments, refuse to attach to a managed profile). Use the Play Integrity API on Android and
DeviceCheck/AppAtteston iOS as the authoritative attestation.
NEVER
- Ship API keys, signing keys, or backend secrets in source / resources /
strings.xml/BuildConfig/Info.plist. Issue short-lived, device-scoped tokens from a backend instead. - Set
android:allowBackup="true"for apps that store credentials — the backed-up data is readable on developer machines. Useandroid:fullBackupContentto exclude sensitive paths. - Set
android:debuggable="true"in release builds, or<application android:networkSecurityConfig>that allows cleartext to arbitrary hosts. - Disable ATS app-wide on iOS (
NSAllowsArbitraryLoads=true). If you must weaken it, scope per-host. - Implement custom TLS / certificate handling that returns "trust all" (
X509TrustManager.checkServerTrustedempty body,URLSessionDelegatealways-trust). This is the #1 Android security finding shipped to production. - Pass user input to
WebView.loadUrl/WKWebView.loadwithout scheme validation; never enableWebSettings.setAllowFileAccessFromFileURLs(true)orsetUniversalAccessFromFileURLs(true). - Implement biometric auth without
BiometricPrompt'ssetUserAuthenticationRequired(true)binding the key — biometric "true" alone proves nothing without a cryptographic challenge. - Log full request/response bodies including
Authorizationheaders — e.g. an OkHttpHttpLoggingInterceptorleft atLevel.BODY(orURLSession/ Alamofire debug logging) in a release build. The dump lands in Logcat / oslog, readable byadb logcaton any USB-debuggable device (no root) and by log aggregation. Gate body + header logging to debug builds and redactAuthorization/Cookie/ token / PII fields.
KNOWN FALSE POSITIVES
- Public read-only IDs (analytics public key, public DSN) embedded in the binary are not secrets; they're meant to be there.
- The default debuggable=true on debug variants is normal — the rule applies to release builds.
- Custom URL schemes (
myapp://) for OAuth callbacks are expected; ensure the corresponding intent filter is restricted and thestateparameter is verified.
What ships with it: 1 file
1.1 KB alongside SKILL.md
- metadata.json1.1 KB