Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/briiirussell/cybersecurity-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/briiirussell/cybersecurity-skills/mobile-audit)<a href="https://agentmods.dev/rules/briiirussell/cybersecurity-skills/mobile-audit"><img src="https://agentmods.dev/badge/rules/briiirussell/cybersecurity-skills/mobile-audit/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/briiirussell/cybersecurity-skills/mobile-audit"><img src="https://agentmods.dev/badge/rules/briiirussell/cybersecurity-skills/mobile-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00127 | $0.02460 |
| Opus 5 | $0.00063 | $0.01230 |
| Sonnet 5 | $0.00025 | $0.00492 |
| Haiku 4.5 | $0.00013 | $0.00246 |
Grade A, and why
mobile-audit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mobile Audit — iOS & Android Application Security Review
Audit mobile apps against the OWASP Mobile Application Security Verification Standard (MASVS) and Mobile Application Security Testing Guide (MASTG). Covers source code review, static analysis of compiled binaries, and runtime testing.
Scope: this skill covers the app and its interaction with the device, the backend, and other apps. For backend API security, pair with api-audit. For dependency CVEs (CocoaPods, SPM, Gradle), pair with dependency-audit.
Authorization Check
Before reverse-engineering or runtime-testing a binary, confirm:
- The app is yours, or you have written authorization from the publisher
- You're operating in an environment you control (test device, emulator, dedicated sandbox)
- App store ToS — Apple and Google generally allow security research on apps you own; testing competitor apps without authorization is a fast path to legal exposure
If unclear, ask before proceeding.
Audit Checklist — MASVS-STORAGE (Sensitive Data Storage)
- iOS: keychain items use the strongest available
kSecAttrAccessibleclass —kSecAttrAccessibleWhenUnlockedThisDeviceOnlyorkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly. AvoidAlwaysandThisDeviceOnly-less variants - iOS: no secrets in
NSUserDefaults, plist, or app bundle —strings <app>.ipashould not reveal API keys or secrets - Android: secrets in EncryptedSharedPreferences / Keystore-backed encrypted storage, not raw SharedPreferences
- Android:
android:allowBackup="false"in the manifest (or backup rules carefully scoped) — otherwiseadb backupextracts everything - Both: no PII / tokens written to logs that survive a crash (NSLog, Log.d, third-party crash reporters)
- Both: Pasteboard / Clipboard access — sensitive fields don't auto-share to system clipboard (iOS
pasteboard.expirationDate, AndroidClipDescription.EXTRA_IS_SENSITIVE) - Both: the OS app-switcher screenshot doesn't capture sensitive screens — iOS
applicationDidEnterBackgroundblur, AndroidFLAG_SECUREon the activity
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 175 lines · 127 tokens per session scan A da73c8842a5c
mobile-audit is a cursor rule published in the GitHub repository briiirussell/cybersecurity-skills (384 stars, last pushed 3mo ago), licensed MIT. It adds 127 tokens to every session and 2,460 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
nativescript
NativeScript best practices and patterns for mobile applications.
performance-optimization
// Use weak/unowned references appropriately class ViewController: UIViewController { private var timer: Timer?
webkit-browser
Cursor rule "webkit-browser" from duckduckgo/apple-browsers, covering webkit & browser development guidelines, webview configuration, basic webview setup, user scripts management and tab management.
maestro-device-selection
Maestro tests can run on either iPhone or iPad simulators based on tags in the test YAML files. This allows you to test iPad-specific UI layouts and features while maintaining a single test suite.
cursorrules
Kortix is a React Native + Expo app built with TypeScript, NativeWind (Tailwind CSS), and a custom design system.
gradle
Enforce modern Gradle build practices for Java and Android projects, focusing on Kotlin DSL, modularity, version catalogs, and performance optimizations.