在地化威脅模型¶
Outsourcing or crowdsourcing translation tasks to third parties introduces additional security and privacy risks. Unlike internal development teams, translators may have limited trust relationships with the organization and may operate from various jurisdictions. This model identifies and classifies threats associated with external translation contributors.
Key Assumptions¶
Translators may be contractors, volunteers, or agencies with varying levels of vetting.
Translators require access to Weblate.
Translation strings may contain sensitive content such as unreleased features, legal terms, or security messages.
The organization has limited control over translators' local environments.
Threat Categories (STRIDE)¶
1. Spoofing¶
S1. Fake translator accounts impersonating legitimate contributors.
Risk: Unauthorized access to projects or injection of malicious strings.
緩解措施:
Enforce strong authentication (2FA); see 已經強制進行雙重要素身分驗證.
Verify identities of contracted translators.
Use role-based access to limit project scope; see 專案存取控制.
2. Tampering¶
T1. Malicious translations embedding harmful payloads.
Risk: Injection of JavaScript, HTML, or format-string attacks if translations are not properly escaped.
緩解措施:
Apply strict input validation in Weblate. Enforcing quality checks like 不安全的 HTML might help. See 品質檢查 and 強制檢查.
Use automated security scanning for translation files in your CI.
Limit usage of dangerous markup from translation files. Depending on the used localization framework, this might be implicit, opt-in, or require a third-party library.
T2. Insertion of misleading translations.
3. 否認¶
R1. Disputes over malicious or poor-quality translations.
Risk: Translators deny responsibility for injected issues.
緩解措施:
All changes in Weblate are logged.
Use Weblate with version control for immutable history.
4. 資訊披露¶
I1. Leakage of unreleased product details.
Risk: Translators gain early access to unreleased features or confidential terminology.
緩解措施:
Segment projects to limit access to sensitive strings.
Apply non-disclosure agreements with external agencies.
Delay translation of highly confidential strings until public release.
I2. Exposure of personal data within strings.
Risk: Translators might access or misuse embedded user data.
緩解措施:
Avoid exposing real user data in source strings.
Use placeholders for sensitive fields.
5. Denial of Service¶
6. Elevation of Privilege¶
E1. The translator gains unauthorized project-wide or administrative rights.
Risk: Escalation leading to tampering or data exposure.
緩解措施:
Apply the principle of least privilege.
Regularly review access rights and group memberships.
Asset Inventory¶
Source Strings: May contain unreleased product features or legal text.
Translated Strings: Output presented directly to end users.
User Data Placeholders: Names, emails, or IDs referenced in strings.
Access Credentials: Accounts for translators, agencies, or bots.
Trust Boundaries¶
Organization ↔ Translators: Authentication and role-based access must be enforced.
Translation Platform ↔ Source Control: Synchronization requires secured tokens/keys.
Translators ↔ Translation Platform: All input must be sanitized before integration into builds.
Platform ↔ End Users: Translations must be validated to prevent code injection.
緩解摘要¶
Enforce 2FA and RBAC for translator accounts; see 已經強制進行雙重要素身分驗證.
Require non-disclosure agreements or contracts for professional translators.
Use automated quality/security scanning for translations; see 品質檢查.
Perform peer review of critical strings; see 同行評審 or 專門的檢閱者.
Limit project visibility to reduce exposure of sensitive content; see 專案存取控制.
Regularly patch and harden your Weblate server. You might also consider 從 Weblate 獲得支援.
Retain immutable version history for all translation changes in the version control system.
Conclusion¶
Third-party translators introduce unique risks compared to internal contributors. With proper technical, organizational, and contractual controls, organizations can mitigate these risks and safely integrate external translation services while maintaining product integrity and compliance.