
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
smartos-tools
Advanced tools
Wrapper for tools available in the SmartOS hypervisor global zone. Supports running in the global zone or connecting via SSH.
smartos-tools provides read-only wrappers for the standard SmartOS management tools such as vmadm/nictagadm/sysinfo/zfs/zpool. It attempts to parse as much data as possible into native Javascript structures.
Also, it does not need to run on the SmartOS host itself as 3 different endpoints are supported:
The primary difference between Native and Builtin SSH will be performance and integrated authentication. NativeSsh will behave as though the user that node is running under has attempted to execute the commands. The implication is typically that the destination host must be in the KnownHosts file for the user (or globally) and public key authentication should already be functional. BuiltinSsh will also work with public key authentication but also supports password auth. BuiltinSsh requires the user to supply the private key as either a string or buffer (as per ssh2 docs).
var smartos = require('smartos-tools');
var endpoint = smartos.Endpoint.BuiltinSsh({
host: '127.0.0.1',
username: 'root',
password: 'password'
});
var host = smartos.Host(endpoint);
host.vmadm.list(null, function(err, vmList){
var vm = vmList[0];
host.vmadm.get(vm.uuid, false, function(err, vmPayload){
});
});
npm install smartos-tools
MIT.
FAQs
Wrapper for tools available in the SmartOS hypervisor global zone. Supports running in the global zone or connecting via SSH.
We found that smartos-tools 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.