
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.
@osvlabs/cordova-plugin-bugly-sdk
Advanced tools
cordova plugin for Tencent Bugly SDK
you can catch app crash reprot (like android anr, oc expection,js erro etc.) by this plugin.
more info, visit https://bugly.qq.com/docs/
cordova plugin add @osvlabs/cordova-plugin-bugly-sdk --variable ANDROID_APPID=your value --variable ANDROID_APPKEY=your value --variable IOS_APPID=your value --save
init sdk
please notice params difference with each platform
var args = {
// common
debug: true,
channel: "test",
develop: true,
version: "1.0"
// android
// delay:20000,
// package:"com.jasonz.bugly.demo",
// ios
// device_id: "xxx-xxx",
// block_monitor_enable: true,
// block_monitor_timeout: 10000
};
Bugly.initSDK(
function(success) {
console.log("初始化成功");
},
function(err) {
console.log("初始化失败");
console.log(err);
},
args
);
enable js error handler
Bugly.enableJSMonitor();
set user indentifier
var id = "jason.z";
Bugly.setUserID(id);
set tag id(id must be numeric)
var id = 10086;
Bugly.setTagID(id);
set user define data
var data = {
key: "id",
value: 1
};
Bugly.putUserData(id);
There also have some methods to test app crash, you can see them in demo project code.
If this project help you reduce time to develop, you can give me a cup of coffee :)
FAQs
Cordova Crash Reporter
The npm package @osvlabs/cordova-plugin-bugly-sdk receives a total of 0 weekly downloads. As such, @osvlabs/cordova-plugin-bugly-sdk popularity was classified as not popular.
We found that @osvlabs/cordova-plugin-bugly-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.