Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Use adb from node
#Requirements
#Install
npm install --save adbjs
#Build
git clone https://github.com/Urucas/adbjs.git
npm run build
#Usage
var ADB = new (require('adbjs'))();
// Getting adb version
var version = ADB.version();
console.log(version);
// Android Debug Bridge version 1.0.32
// Getting devices
var devices = ADB.devices()
console.log(devices)
// [ '07042e0e13cca2d0' ]
var deviceInfo = ADB.deviceInfo(devices[0]);
console.log(deviceInfo);
// { id: '07042e0e13cca2d0', model: 'Nexus 5', version: '5.1.1' }
// select device
ADB.selectDevice(devices[0]);
// check if device is available
var isAvailable = ADB.isDeviceAvailable('07042e0e13cca2d0');
console.log(isAvailable);
// true
// list installed packages
var packages = ADB.listPackages();
/*
* [ 'com.skype.raider',
* 'com.google.android.youtube',
* 'com.android.providers.telephony',
* 'com.google.android.gallery3d',
* ...
* 'com.google.android.inputmethod.latin' ]
*/
// check if a package is installed
var isInstalled = ADB.isPackageInstalled("com.urucas.zoster_testpp");
console.log(isInstalled);
// false
// check if package is currently running
var isRunning = ADB.isAppRunning("com.google.android.youtube");
console.log(isRunning);
// true
// close a application running
ADB.closeApp("com.google.android.youtube");
// install a package
ADB.install("/path/to/my/zoster_testapp.apk", "com.urucas.zoster_testapp");
// get wlan0 ip
var ip = ABD.getDeviceWlan0()
console.log(ip)
// 192.168.0.105
// connect a device via tcpip
var conn = ADB.tcpConnect()
console.log(conn)
// 192.168.0.105:5555
// disconnect device
ADB.tcpDisconnect(conn)
// lock device
ADB.lock()
// unlock device
ADB.unlock()
// get information about the power display
let power = ADB.power()
console.log(power)
// { display_power: 'ON' }
FAQs
Call adb methods from node
The npm package adbjs receives a total of 18 weekly downloads. As such, adbjs popularity was classified as not popular.
We found that adbjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.