
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
react-native-get-shared-prefs
Advanced tools
This module was produced by ClassApp Team and will be improved in future updates. `react-native-get-shared-prefs` gets all information stored in Android shared preferences.
This module was produced by ClassApp Team and will be improved in future updates. react-native-get-shared-prefs
gets all information stored in Android shared preferences.
Install react-native-get-shared-prefs
using:
npm i -S react-native-get-shared-prefs
After that, you should link react-native-get-shared-prefs
in your project, to do so:
rnpm link react-native-get-shared-prefs
or
Go to settings.gradle
inside your android project folder and paste this lines there:
include ':react-native-get-shared-prefs'
project(':react-native-get-shared-prefs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-get-shared-prefs/android')
and paste it into build.gradle
:
compile project(':react-native-get-shared-prefs')
In your MainActivity.java
add:
import br.com.classapp.RNGetSharedPrefs.RNGetSharedPrefsPackage; //<- You must import this
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNGetSharedPrefsPackage(), // <- Add this line
);
}
Sync gradle and go :)
Here is a simple example:
import SharedPrefs from 'react-native-get-shared-prefs';
SharedPrefs.getSharedPrefs(function(result){
//result = { 'key1':'value1', 'key2': 'value2', 'key3': 'value3'}
console.log(result); //It will display your data from Shared Preferences
});
Here is an output example:
FAQs
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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.