Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@128technology/netconfetti
Advanced tools
It's always a party with NetConf
Netconfetti is a Javascript client for the NetConf protocol.
const netconfetti = require('@128technology/netconfetti');
// Beacuse Netconfetti is promise based, it's extremely easy to utilize it
// in a async/await fashion.
async function main() {
const client = new netconfetti.Client();
await client.connect({
host: '127.0.0.1',
username: 'admin',
password: 'admin',
port: 22
});
// The RPC method can also take a string
const configResponse = await client.rpc('get-config');
console.log(configResponse.data)
// The RPC method can also take an object that will get converted into
// XML via xml2js.Builder.
const doThingsResponse = await client.rpc({
'do-things': {
$: {
xmlns: 'http://special-namespace-here-if-required'
},
'param1': 'hello',
'param2': 'goodbye'
}
});
console.log(doThingsResponse.data);
}
main().then(
() => process.exit(0),
err => {
console.error(err);
process.exit(1);
});
FAQs
A Javascript NetConf client
The npm package @128technology/netconfetti receives a total of 2 weekly downloads. As such, @128technology/netconfetti popularity was classified as not popular.
We found that @128technology/netconfetti demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.