Clipboard access from background processes

I have an iOS app that gives users a key which they need to save in some secure way (e.g. 1Password, LastPass, etc). This key is considered highly sensitive information. If the user copies the key to the clipboard to paste it into another app, is there a possibility that malicious background processes can access the clipboard while the key is copied? I tried looking this up and there doesn't seem to be much information about it.

Answered by DTS Engineer in 306325022

Apps shouldn’t have access to the clipboard while in the background.

Coming back to your big picture, you should have a chat with the standard password vault vendors to see if they offer some mechanism to securely save a password to their vault. If such a thing did exist, it would let you bypass this copy’n’paste route entirely.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"
Accepted Answer

Apps shouldn’t have access to the clipboard while in the background.

Coming back to your big picture, you should have a chat with the standard password vault vendors to see if they offer some mechanism to securely save a password to their vault. If such a thing did exist, it would let you bypass this copy’n’paste route entirely.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Thanks!

Clipboard access from background processes
 
 
Q