Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
A node.js library to monitor your external ip for changes
npm install ip-monitor
basic
const IpMonitor = require('ip-monitor');
const ipMonitor = new IpMonitor();
ipMonitor.on('change', (prevIp, newIp) => {
console.log(`IP changed from ${prevIp} to ${newIp}`);
});
ipMonitor.on('error', (error) => {
console.error(error);
});
ipMonitor.start();
with custom configuration
const IpMonitor = require('ip-monitor');
const ipMonitor = new IpMonitor({
pollingInterval: 36000,
verbose: true,
externalIp: {
timeout: 1000,
getIP: 'parallel',
services: ['http://ifconfig.co/x-real-ip', 'http://icanhazip.com/'],
replace: true,
verbose: true
}
});
ipMonitor.on('change', (prevIp, newIp) => {
console.log(`IP changed from ${prevIp} to ${newIp}`);
});
ipMonitor.on('error', (error) => {
console.error(error);
});
ipMonitor.start();
new IpMonitor([config])
accepts a configuration object with the following optional properties:
pollingInterval: <Integer>
: how often to poll for ip changes, default 1 dayexternalIp: <Object>
: configuration passed directly to external-ip
.start()
: start watching.stop()
: stop watching.poll()
: poll for ip manuallychange
: fired when the external ip has changed. it will also fire the first time .start()
or .poll()
are invoked.error
: typical error handling hereChange your working directory to the project's root, npm install
to get the development dependencies and then npm test
FAQs
A node.js library to monitor your external ip
The npm package ip-monitor receives a total of 0 weekly downloads. As such, ip-monitor popularity was classified as not popular.
We found that ip-monitor 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.