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.
xod-arduino-builder
Advanced tools
This package is a part of the XOD project.
The builder wraps Arduino IDE into nodejs
Promise
-based cli interface.
packages/
folder must be reachable.Start node
cli session:
node
Import the builder and set utility display function:
const xab = require('xod-arduino-builder');
const $HOME = process.env.HOME;
const c = promise => promise.then(
value => (console.log(value), Promise.resolve(value)),
error => (console.error(error), Promise.reject(error))
);
Set paths to Arduino IDE executable and packages:
c(xab.setArduinoIdePathExecutable($HOME + '/programs/arduino-1.8.1/arduino'));
c(xab.setArduinoIdePathPackages($HOME + '/.arduino15/packages'));
View the raw official Arduino package index:
c(xab.listPackageIndex());
View the processed package index optimized for pav
selection:
c(xab.listPAVs());
const pav = {
package: 'arduino',
architecture: 'avr',
version: '1.6.16'
};
Install the selected pav
:
c(xab.installPAV(pav));
View the boards supported by the selected pav
:
c(xab.loadPAVBoards(pav));
const pab = {
package: pav.package,
architecture: pav.architecture,
board: 'uno'
};
Compile the file
for the selected pab
:
const file = $HOME + '/programs/arduino-1.8.1/examples/01.Basics/Blink/Blink.ino';
c(xab.verify(pab, file));
View the available serial port
s:
c(xab.listPorts());
const port = '/dev/ttyACM0';
Compile and upload the file
for the selected pab
at the specified port
:
c(xab.upload(pab, port, file));
FAQs
XOD project: Arduino Builder
We found that xod-arduino-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
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.