
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.
cordova-plugin-wifi-manager
Advanced tools
Wi-Fi Manager Plugin for Apache Cordova
cordova plugin add cordova-plugin-wifi-manager
Notice
When you use this plugin for Android 10 (API level 29) or later, you can connect to the Internet only through your own (cordova) app. This is due to the specification of new Android API, WifiNetworkSpecifier.
If you want to purposely use the deprecated Android API, run the following.
cordova run android --device -- --gradleArg=-PcdvTargetSdkVersion=28
const onDeviceReady = () => {
window.wifiManager.connect(
'SAMPLE_SSID',
'SAMPLE_PASSPHRASE',
() => {
console.log('connect method was successfully called.');
},
(result) => {
console.log('connect method failed to be called.');
console.log(`code: ${result.code}, message: ${result.message}`);
}
);
};
document.addEventListener('deviceready', onDeviceReady, false);
const onDeviceReady = () => {
window.wifiManager.disconnect(
'SAMPLE_SSID',
() => {
console.log('disconnect method was successfully called.');
},
(result) => {
console.log('disconnect method failed to be called.');
consoe.log(`code: ${result.code}, message: ${result.message}`);
}
);
};
document.addEventListener('deviceready', onDeviceReady, false);
cordova-plugin-wifi-manager
is available under the MIT license. See the LICENSE file for details.
FAQs
Wi-Fi Manager Plugin for Apache Cordova
The npm package cordova-plugin-wifi-manager receives a total of 30 weekly downloads. As such, cordova-plugin-wifi-manager popularity was classified as not popular.
We found that cordova-plugin-wifi-manager 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.