选项
首页首页 Skill 安全 device-integrity

使用 DeviceCheck(DCDevice 的每台设备专用位)和 App Attest(DCAppAttestService 的密钥生成、认证和断言流程)来验证设备的合法性及应用的完整性。 适用于实施欺诈防范、检测受感染设备、通过 Apple 服务器验证应用真实性、使用经过认证的请求保护敏感 API 端点,或向后端架构添加设备验证功能。

...展开全部
69
更新时间 2026-06-29

简介device-integrity

device-integrity 技能提供了关于在 iOS 应用中实现 Apple 的 DeviceCheck 和 App Attest 框架的全面指导,用于验证设备的合法性和应用的真实性。它解决了确保 API 请求源自运行未修改版本应用的正版 Apple 设备这一关键安全挑战,从而防范欺诈、越狱漏洞以及对敏感后端端点的未经授权访问。

本技能涵盖两个主要的 Apple 框架:DCDevice 用于通过临时令牌进行简单的按设备标志管理;DCAppAttestService 用于利用 Secure Enclave 支持的密钥进行加密验证。 文档包含令牌生成、服务器通信、认证流程及断言验证的完整实现模式。它既提供了客户端 Swift 代码,也提供了与 Apple 验证端点集成的服务器端架构指导。

本技能非常适合开发具有防欺诈要求、支付系统、促销优惠兑换功能,或任何需要强设备及应用完整性保障的 iOS 开发者。 本技能涵盖错误处理模式、应避免的常见实现错误、服务器验证工作流以及生产环境部署的安全最佳实践。它面向需要保护后端 API 免受受损设备或篡改应用程序侵害的中高级 iOS 开发者。

常见问题

DeviceCheck 与 App Attest 之间有何区别?

DeviceCheck(DCDevice)提供简单的按设备生成的令牌和两个持久位,用于促销优惠兑换等基础设备追踪。App Attest(DCAppAttestService)利用 Secure Enclave 密钥提供加密证明,以验证特定应用实例是否合法且未被篡改,从而为敏感操作提供更强的安全保障。

这些框架需要哪些 iOS 版本?

DCDevice 支持 iOS 11 及更高版本。DCAppAttestService 要求 iOS 14 或更高版本。在尝试使用任一框架之前,请务必检查 isSupported。

可以在多个请求中重复使用 DeviceCheck 令牌吗?

不可以。DeviceCheck 令牌是临时性的且仅限一次性使用。您必须为每次服务器操作生成新的令牌,而不能缓存或重复使用令牌。

DeviceCheck 中的两个位有什么用途?

Apple 为每个开发者团队的每台设备存储两个布尔值。您可以根据具体用例定义其含义。常见示例包括跟踪设备是否领取了促销优惠(位 0)或将设备标记为欺诈设备(位 1)。这些位在应用重新安装后仍会保留。

实现设备完整性验证是否需要服务器?

是的。DeviceCheck 和 App Attest 均需要服务器端验证。您的应用生成令牌或认证信息,将其发送至您的服务器,然后您的服务器使用从 Apple 开发者门户获取的 DeviceCheck 私钥与 Apple 的验证端点进行通信。

在 GitHub 上查看

Device Integrity

Verify that requests to your server come from a genuine Apple device running alegitimate instance of your app. DeviceCheck provides per-device bits forsimple flags (e.g., "claimed promo offer"). App Attest uses Secure Enclave keysand Apple attestation to cryptographically prove app legitimacy on sensitiverequests.

Contents

  • DCDevice (DeviceCheck Tokens)
  • DCAppAttestService (App Attest)
  • App Attest Key Generation
  • App Attest Attestation Flow
  • App Attest Assertion Flow
  • Server Verification Guidance
  • Error Handling
  • Common Patterns
  • Common Mistakes
  • Review Checklist
  • References

DCDevice (DeviceCheck Tokens)

DCDevice generates aunique, ephemeral token that identifies a device. Treat each token assingle-use: generate a new token for each server operation instead of caching orreusing one. The token is sent to your server, which then communicates withApple's servers to read or set two per-device bits. Available on iOS 11+.

Token Generation

import DeviceCheckfunc generateDeviceToken() async throws -> Data {    guard DCDevice.current.isSupported else {        throw DeviceIntegrityError.deviceCheckUnsupported    }    return try await DCDevice.current.generateToken()}

Sending the Token to Your Server

func sendTokenToServer(_ token: Data) async throws {    let tokenString = token.base64EncodedString()    var request = URLRequest(url: serverURL.appending(path: "verify-device"))    request.httpMethod = "POST"    request.setValue("application/json", forHTTPHeaderField: "Content-Type")    request.httpBody = try JSONEncoder().encode(["device_token": tokenString])    let (_, response) = try await URLSession.shared.data(for: request)    guard let httpResponse = response as? HTTPURLResponse,          httpResponse.statusCode == 200 else {        throw DeviceIntegrityError.serverVerificationFailed    }}

Server-Side Overview

Your server uses the device token to call Apple's DeviceCheck API endpoints:

EndpointPurpose
https://api.devicecheck.apple.com/v1/query_two_bitsRead the two bits for a device
https://api.devicecheck.apple.com/v1/update_two_bitsSet the two bits for a device
https://api.devicecheck.apple.com/v1/validate_device_tokenValidate a device token without reading bits

The server authenticates with a DeviceCheck private key from the Apple Developerportal, creating a signed JWT for each request.

Use https://api.development.devicecheck.apple.com only while testing; usehttps://api.devicecheck.apple.com for production.

What the Two Bits Are For

Apple stores two Boolean values per device per developer team. You decide whatthey mean. Common uses:

  • Bit 0: Device has claimed a promotional offer.
  • Bit 1: Device has been flagged for fraud.

Bits persist across app reinstall. You control when to reset them via theserver API.

DCAppAttestService (App Attest)

DCAppAttestServicevalidates that a specific instance of your app on a specific device islegitimate. It uses a hardware-backed key in the Secure Enclave to createcryptographic attestations and assertions. Available on iOS 14+.

The flow has three phases:

  1. Key generation -- create a key pair in the Secure Enclave.
  2. Attestation -- Apple certifies the key belongs to a genuine Apple device running your app.
  3. Assertion -- sign server requests with the attested key to prove ongoing legitimacy.

Checking Support

import DeviceChecklet attestService = DCAppAttestService.sharedguard attestService.isSupported else {    // Fall back to DCDevice token or other risk assessment.    // App Attest is not available on simulators or all device models.    return}

For app extensions, App Attest is supported only in Action, extensible SSO, andwatchOS extensions. Treat other extension types as unsupported even ifisSupported returns true.

App Attest Key Generation

Generate one cryptographic key pair per user account on each device. Theprivate key stays in the Secure Enclave. The returned keyId is the onlyidentifier your app can later use to access the key, so record and reuse theaccount/device-scoped keyId; do not share one key across users. Avoidunnecessary regeneration because each new key affects App Attest key-count riskmetrics. Only treat the keyId as usable after your server verifiesattestation. If server verification fails, discard the keyId and generate anew key before retrying.

import DeviceCheckactor AppAttestManager {    private let service = DCAppAttestService.shared    private var keyId: String?    /// Generate and record a key pair for App Attest.    func generateKeyIfNeeded() async throws -> String {        if let existingKeyId = loadKeyIdFromKeychain() {            self.keyId = existingKeyId            return existingKeyId        }        let newKeyId = try await service.generateKey()        saveKeyIdToKeychain(newKeyId)        self.keyId = newKeyId        return newKeyId    }    // MARK: - Keychain helpers (simplified)    private func saveKeyIdToKeychain(_ keyId: String) {        let data = Data(keyId.utf8)        let query: [String: Any] = [            kSecClass as String: kSecClassGenericPassword,            kSecAttrAccount as String: "app-attest-key-id-\(currentAccountID)",            kSecAttrService as String: Bundle.main.bundleIdentifier ?? "",            kSecValueData as String: data,            kSecAttrAccessible as String: kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly        ]        SecItemDelete(query as CFDictionary) // Remove old if exists        SecItemAdd(query as CFDictionary, nil)    }    private func loadKeyIdFromKeychain() -> String? {        let query: [String: Any] = [            kSecClass as String: kSecClassGenericPassword,            kSecAttrAccount as String: "app-attest-key-id-\(currentAccountID)",            kSecAttrService as String: Bundle.main.bundleIdentifier ?? "",            kSecReturnData as String: true,            kSecMatchLimit as String: kSecMatchLimitOne        ]        var result: AnyObject?        let status = SecItemCopyMatching(query as CFDictionary, &result)        guard status == errSecSuccess, let data = result as? Data else { return nil }        return String(data: data, encoding: .utf8)    }}

Important: Generate the key once per user account on a device, persist thataccount/device keyId, and keep the key count low. Generating unnecessary keyspollutes App Attest risk metrics.

App Attest Attestation Flow

Attestation proves that the key was generated on a genuine Apple device runninga legitimate instance of your app. You perform attestation once per key, thenstore the verified public key and receipt on your server. The app stores thekeyId for future assertions after the server accepts the attestation.

Client-Side Attestation

import DeviceCheckimport CryptoKitextension AppAttestManager {    /// Attest the key with Apple. Send the attestation object to your server.    func attestKey() async throws -> Data {        guard let keyId else {            throw DeviceIntegrityError.keyNotGenerated        }        // 1. Request a one-time challenge from your server        let challenge = try await fetchServerChallenge()        // 2. Hash the challenge (Apple requires a SHA-256 hash)        let challengeHash = Data(SHA256.hash(data: challenge))        // 3. Ask Apple to attest the key        let attestation = try await service.attestKey(keyId, clientDataHash: challengeHash)        // 4. Send the attestation object to your server for verification        try await sendAttestationToServer(            keyId: keyId,            attestation: attestation,            challenge: challenge        )        return attestation    }    private func fetchServerChallenge() async throws -> Data {        let url = serverURL.appending(path: "attest/challenge")        let (data, _) = try await URLSession.shared.data(from: url)        return data    }    private func sendAttestationToServer(        keyId: String,        attestation: Data,        challenge: Data    ) async throws {        var request = URLRequest(url: serverURL.appending(path: "attest/verify"))        request.httpMethod = "POST"        request.setValue("application/json", forHTTPHeaderField: "Content-Type")        let payload: [String: String] = [            "key_id": keyId,            "attestation": attestation.base64EncodedString(),            "challenge": challenge.base64EncodedString()        ]        request.httpBody = try JSONEncoder().encode(payload)        let (_, response) = try await URLSession.shared.data(for: request)        guard let httpResponse = response as? HTTPURLResponse,              httpResponse.statusCode == 200 else {            throw DeviceIntegrityError.attestationVerificationFailed        }    }}

Server-Side Attestation Verification

Your server validates the attestation object (CBOR), verifies the certificatechain against Apple's App Attest root CA, checks Apple's nonce calculation, andstores the verified public key and receipt for future assertion verification.The attestation nonce is not SHA256(challenge) alone; it isSHA256(authData || SHA256(challenge)) and is compared with the credentialcertificate extension 1.2.840.113635.100.8.2. Seereferences/device-integrity-patterns.mdfor the full server verification flow.

App Attest Assertion Flow

After attestation, use assertions to sign sensitive requests. Each assertionproves the request came from the attested app instance and includes aserver-issued, one-time challenge to prevent replay.

Client-Side Assertion

import DeviceCheckimport CryptoKitextension AppAttestManager {    /// Generate an assertion for encoded client data.    /// Client data should include a one-time server challenge and request context.    func generateAssertion(for clientData: Data) async throws -> Data {        guard let keyId else {            throw DeviceIntegrityError.keyNotGenerated        }        let clientDataHash = Data(SHA256.hash(data: clientData))        return try await service.generateAssertion(keyId, clientDataHash: clientDataHash)    }}

Using Assertions in Network Requests

struct AppAttestClientData: Encodable {    let challenge: String    let method: String    let path: String    let bodySHA256: String}extension AppAttestManager {    /// Perform an attested API request.    func makeAttestedRequest(        to url: URL,        method: String = "POST",        body: Data    ) async throws -> (Data, URLResponse) {        let challenge = try await fetchAssertionChallenge()        let bodyHash = Data(SHA256.hash(data: body)).base64EncodedString()        let clientData = try JSONEncoder().encode(            AppAttestClientData(                challenge: challenge,                method: method,                path: url.path,                bodySHA256: bodyHash            )        )        let assertion = try await generateAssertion(for: clientData)        var request = URLRequest(url: url)        request.httpMethod = method        request.setValue("application/json", forHTTPHeaderField: "Content-Type")        request.setValue(assertion.base64EncodedString(), forHTTPHeaderField: "X-App-Attest-Assertion")        request.setValue(clientData.base64EncodedString(), forHTTPHeaderField: "X-App-Attest-Client-Data")        request.httpBody = body        return try await URLSession.shared.data(for: request)    }    private func fetchAssertionChallenge() async throws -> String {        let url = serverURL.appending(path: "assert/challenge")        let (data, _) = try await URLSession.shared.data(from: url)        return String(decoding: data, as: UTF8.self)    }}

Server-Side Assertion Verification

Your server decodes the assertion (CBOR), verifies the authenticator data andcounter, recomputes clientDataHash from the submitted client data, verifiesthe signature over SHA256(authenticatorData || clientDataHash) with thestored public key, and confirms the embedded challenge and request context. Seereferences/device-integrity-patterns.mdfor step-by-step server verification.

Server Verification Guidance

See references/device-integrity-patterns.md for full server architecture guidance including attestation vs. assertion comparison, recommended endpoint design, and risk assessment.

Security Boundaries

App Attest proves app-instance integrity for selected requests. It does notreplace user authentication, OAuth/JWT/session handling, API token design,entitlement or subscription authorization, TLS, certificate pinning, or generalnetworking security. Treat those as handoffs to authentication, networking, orbroader security guidance, and still enforce normal authentication andauthorization after App Attest passes.

Error Handling

Handle DCError codes from DeviceCheck operations. Key cases:

  • .serverUnavailable — retry with exponential backoff
  • .invalidKey — the key was already attested, assertion used an unattested key, or the service rejected the key
  • .featureUnsupported — fall back to DCDevice tokens
  • .invalidInput — malformed clientDataHash or keyId

For attestKey, retry .serverUnavailable later with the same keyId and thesame clientDataHash. For other attestation errors, discard the key identifierand create a new key before retrying. Seereferences/device-integrity-patterns.mdfor full error handling code, retry strategy, and rejected-key recovery.

Common Patterns

Environment Entitlement

Set the App Attest environment in your entitlements file. Use developmentduring testing and production for App Store builds:

<key>com.apple.developer.devicecheck.appattest-environment</key><string>production</string>

When the entitlement is omitted during development, the app uses the App Attestsandbox by default. After distribution through TestFlight, the App Store, or theApple Developer Enterprise Program, the app ignores the entitlement value anduses production.

See references/device-integrity-patterns.md for the full integration manager pattern, gradual rollout guidance, and error type definition.

Common Mistakes

  1. Generating a new key on every launch. Generate once per user account on a device, persist the keyId, and keep key counts low.
  2. Reusing DCDevice tokens. Treat generated tokens as single-use. Generate a new token for each server operation.
  3. Skipping the fallback for unsupported devices or extensions. Not all devices and extension types support App Attest. Use DCDevice tokens or other risk assessment as fallback.
  4. Trusting attestation client-side. All verification must happen on your server.
  5. Signing only the raw request body. Assertion client data must include a one-time server challenge and enough request context for the server to bind the assertion to the request.
  6. Verifying the wrong attestation nonce. Compare the certificate extension with SHA256(authData || SHA256(challenge)), not SHA256(challenge) alone.
  7. Not implementing replay protection. The server must validate one-time challenges and track the assertion counter.
  8. Mixing development and production environments. Sandbox keys and receipts do not work in production, and production keys and receipts do not work in sandbox.
  9. Not handling DCError.invalidKey. Check for repeated attestation, unattested assertion keys, or service rejection; regenerate only after the state is known bad.

Review Checklist

  • DCDevice tokens generated per server operation and never cached for reuse
  • DCAppAttestService.isSupported checked before use; unsupported devices and extension types have a fallback
  • Key generated once per user account on each device and keyId persisted only for that app account/device
  • Attestation performed once per key; server stores verified public key and receipt
  • Server validates attestation certificate chain, App ID hash, environment aaguid, credential ID, and nonce SHA256(authData || SHA256(challenge))
  • Assertions include one-time challenge plus request context; server verifies signature, RP ID, counter, challenge, and request binding
  • Protected endpoints still enforce normal user authentication and entitlement authorization after App Attest passes
  • DCError cases handled: .serverUnavailable retries attestation with the same key/hash; bad keys are discarded and regenerated
  • App Attest environment entitlement and sandbox/production server routing are consistent
  • Gradual rollout considered; feature flag in place for enabling/disabling

References

  • Extended patterns: references/device-integrity-patterns.md
  • DeviceCheck framework
  • DCDevice
  • DCAppAttestService
  • Establishing your app's integrity
  • Validating apps that connect to your server
  • Attestation Object Validation Guide
  • App Attest Environment

安装 device-integrity

下载技能文件并将其解压到 .claude/skills/ 目录中。

下载ZIP

克隆仓库并复制技能文件到您的项目中。

git clone https://github.com/dpearson2699/swift-ios-skills/blob/main/skills/device-integrity/SKILL.md # Copy SKILL.md to your .claude/skills/ directory

复制 复制
快速设置: 将技能文件夹复制到 .claude/skills/ 目录下,Claude 会自动检测并使用该技能

相关技能

gmgn-portfolio
更新时间 2026-07-01
zeroize-audit
更新时间 2026-07-01
flutter-use-http-package
更新时间 2026-06-30
auth-implementation-patterns
更新时间 2026-06-29
OR