
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.
node-merlin-wrt-api
Advanced tools
An npm package to retrieve data and send commands to an asus Router running Merlin WRT
The purpose of this project is to provide a library that can be used to
$# npm i --save node-merlin-wrt-api
"use strict";
const node_merlin_wrt_api = require("node-merlin-wrt-api");
(async () => {
const api = new node_merlin_wrt_api.NodeMerlinWrtApi('admin', 'changeMe', 'https://192.168.1.1:8443', true);
console.log('Api created');
const token = await api.getAuthToken();
console.log(`New Auth Token: "${token}"`);
const data = await api.getClientList();
console.log(`Recieved clients macs: ${JSON.stringify(data.macList)}`);
await api.logout();
})().then(() => {
process.exit();
}).catch(err => {
console.error(err);
process.exit(1);
});
Start the dev-Container described in docker-compose.yml-file:
$# docker-compose run --rm dev ash
/src $
whilst in the dev-containers shell, run:
$# npm run tsx -- --inspect-wait=0.0.0.0:9229 Example/example.ts
then attach your node inspector of choice to port 9229, e.g. with vscode and the following configuration:
.vscode/launch.json:
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Docker: Attach to Node",
"port": 9229,
"remoteRoot": "/src",
"localRoot": "${workspaceFolder}"
},
]
FAQs
An npm package to retrieve data and send commands to an asus Router running Merlin WRT
The npm package node-merlin-wrt-api receives a total of 12 weekly downloads. As such, node-merlin-wrt-api popularity was classified as not popular.
We found that node-merlin-wrt-api 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
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.