Access all passwords in the iCloud keychain

Currently, I can get every password in a custom keychain thanks to the API SecKeychainusing the method SecItemCopyMatching. But if I set the attribute kSecAttrSynchronizableto true, I only get the password that I added earlier using the method SecItemAdd.

Is there a way to get passwords stored on the system or, in particular, Safari?

Thank you for your responses.

+3
source share
1 answer

Is there a way to get passwords stored on the system or, in particular, Safari?

No. If you think about it, it will be a huge security hole.

0
source

All Articles