
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@hoobs/network
Advanced tools
Library for interacting with network interfaces on Debian based systems.

Library for interacting with network interfaces on Debian based systems.
This library is designed for Debian systems, and requires a few packages to be installed.
sudo apt install wpasupplicant network-manager dnsmasq hostapd
Next you need to disable the dnsmasq and hostapd services. These services will be dynamically configured and controled by this library.
sudo systemctl disable dnsmasq
sudo systemctl disable hostapd
HOOBS recommends Yarn. From your project's root run;
yarn add @hoobs/network
Or using NPM.
npm install @hoobs/network
First inport this into your code.
const network = require("./network");
Fetch a list of active connections.
const connections = network.current();
if (network.connected) {
console.log(connections);
}
Fetch a list of network devices.
const devices = network.devices();
Fetch a list of available wireless networks.
const networks = network.wireless.scan();
Connect/Disconnect a wireless network.
network.wireless.connect("ssid", "password");
network.wireless.disconnect();
Forget a network.
network.wireless.forget("ssid");
Up/Down a wired connection.
network.ethernet.up("eth0");
network.ethernet.down("eth0");
HOOBS and the HOOBS logo are registered trademarks of HOOBS Inc. Copyright (C) 2021 HOOBS Inc. All rights reserved.
FAQs
Library for interacting with network interfaces on Debian based systems.
We found that @hoobs/network demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.