Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ar-drone-fleet
Advanced tools
Control multiple ar drones using Node.js, module wraps @felixge's https://github.com/felixge/node-ar-drone module.
Control multiple ar drones using Node.js, module wraps @felixge's https://github.com/felixge/node-ar-drone module.
Api wraps all of Felixge's Client api library.
Still under heavy development and not completly tested, still waiting to get together with multiple drones.
npm install ar-drone-fleet
Each wrapped function can be called as normal to control all drones fleet.takeoff()
or with the first parameter as the drones key fleet.takeoff('drone1')
. See example below for more details.
var ArDroneFleet = require('ar-drone-fleet');
// Supply constructor with the client options, this is used by arDrone.createClient()
var fleet = new ArDroneFleet({
drone1 : {ip : "192.168.1.2"},
drone2 : {ip : "192.168.1.3"}
});
fleet.up(1);
fleet.up('drone1',2); // Use object name
fleet.on('takeoff',function(data){
console.log(data.drone + " tookoff");
});
// Or alternately supply the constructor with array of client options.
var fleet = new ArDroneFleet([
{ip : "192.168.1.2"},
{ip : "192.168.1.3"}
]);
fleet.up(1);
fleet.up(1,2); // Using index of supplied drones
fleet.on('takeoff',function(data){
console.log(data.drone + " tookoff");
});
FAQs
Control multiple ar drones using Node.js, module wraps @felixge's https://github.com/felixge/node-ar-drone module.
The npm package ar-drone-fleet receives a total of 0 weekly downloads. As such, ar-drone-fleet popularity was classified as not popular.
We found that ar-drone-fleet 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.