[28.x] Add [NonDebuggable] to Cryptography Management encrypt/decrypt procedures#9304
Open
PooyaKharamesh wants to merge 1 commit into
Open
[28.x] Add [NonDebuggable] to Cryptography Management encrypt/decrypt procedures#9304PooyaKharamesh wants to merge 1 commit into
PooyaKharamesh wants to merge 1 commit into
Conversation
…ures The EncryptText/Encrypt and Decrypt procedures in the Cryptography Management system app (codeunit 1266) and its implementation (codeunit 1279) lacked the [NonDebuggable] flag. This allowed cleartext input and return values to be extracted with a debugger, compromising the confidentiality of encrypted and decrypted data. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
djukicmilica
approved these changes
Jul 10, 2026
krupybalu
approved these changes
Jul 10, 2026
Contributor
|
krupybalu
approved these changes
Jul 14, 2026
darjoo
approved these changes
Jul 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Backport of #9291 to
releases/28.x.The
EncryptText/EncryptandDecryptprocedures in the Cryptography Management system app (codeunit 1266 / codeunit 1279) lacked the[NonDebuggable]flag. Because both take/return plainText(notSecretText), cleartext input and decrypted output could be extracted with an attached debugger. This backport adds[NonDebuggable]to all four procedures.MSRC/Autoclave assessed the original issue as P1.
Fix
Added
[NonDebuggable]to:EncryptText,DecryptEncrypt,DecryptCherry-picked cleanly from main (PR #9291).
Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com
Fixes AB#642029