
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
@aalzehla/capacitor-secure-storage-plugin
Advanced tools
Securely store secrets such as usernames, passwords, tokens, certificates or other sensitive information (strings) on iOS & Android
Capacitor plugin for storing string values securly on iOS and Android. Forked from @evva-sfw/capacitor-secure-storage-plugin
npm install @aalzehla/capacitor-secure-storage-plugin
npm install @aalzehla/capacitor-secure-storage-plugin@1.0.2
For version lower than 5 please refer to https://github.com/martinkasa/capacitor-secure-storage-plugin
import { SecureStoragePlugin } from '@aalzehla/capacitor-secure-storage-plugin';
get(options: { key: string }): Promise<{ value: string }>
Note if item with specified key does not exist, throws an Error
set(options: { key: string; value: string }): Promise<{ value: boolean }>
Note return true in case of success otherwise throws an error
remove(options: { key: string }): Promise<{ value: boolean }>
Note return true in case of success otherwise throws an error
keys(): Promise<{ value: string[] }>
clear(): Promise<{ value: boolean }>
Note return true in case of success otherwise throws an error
getPlatform(): Promise<{ value: string }>
Note return returns which implementation is used - one of 'web', 'ios' or 'android'
const key = 'username';
const value = 'hellokitty2';
SecureStoragePlugin.set({ key, value })
.then(success => console.log(success))
const key = 'username';
SecureStoragePlugin.get({ key })
.then(value => {
console.log(value);
})
.catch(error => {
console.log('Item with specified key does not exist.');
});
async getUsername(key: string) {
return await SecureStoragePlugin.get({ key });
}
This plugin uses the SimpleKeychain Swift library for iOS.
On Android it is implemented by AndroidKeyStore and SharedPreferences. Source: Apriorit
There is no secure storage in browser (not because it is not implemented by this plugin, but it does not exist at all). Values are stored in LocalStorage, but they are at least base64 encoded. Plugin adds 'capsec' prefix to keys to avoid conflicts with other data stored in LocalStorage.
FAQs
Securely store secrets such as usernames, passwords, tokens, certificates or other sensitive information (strings) on iOS & Android
We found that @aalzehla/capacitor-secure-storage-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.