
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-sinch-verification
Advanced tools
Sinch Verification for react native. http://www.sinch.com
npm install react-native-sinch-verification
Add Files to <...>
Copy items if needed
and Create groups
are checkednode_modules
➜ react-native-sinch-verification
➜ add SinchVerificationIOS
folderSinchVerication.framework
can be found in this package, under the SinchVericationSDK
folder)npm install react-native-sinch-verification
rnpm link react-native-sinch-verification
- (run npm install -g rnpm
if required)var SinchVerification = require('react-native-sinch-verification');
var custom = "A custom string to be sent to your server backend, through Sinch's callback URL";
// init with app key
SinchVerification.init('your-app-key');
// sms verification
SinchVerification.sms('your-phone-number-without-country-code', custom, (err, res) => {
if (!err) {
// for android, verification is done, because the sms has been read automatically
// for ios, this means the sms has been sent out, you need to call verify with the received code
}
});
// verify the received code (not needed on android)
SinchVerification.verify('the-received-code', (err, res) => {
if (!err) {
// done!
}
});
// flash call verification (android only)
SinchVerification.flashCall('your-phone-number-without-country-code', custom, (err, res) => {
if (!err) {
// done!
}
});
FAQs
Sinch verification for react native
The npm package react-native-sinch-verification receives a total of 353 weekly downloads. As such, react-native-sinch-verification popularity was classified as not popular.
We found that react-native-sinch-verification demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.