
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.
Wrapper around the Windows WMIC interface for Node.js.
var wmic = require('wmic');
// equivalent of 'wmic nic get list'
wmic.get_list('nic', function(err, nics) {
// console.log(err || nics);
})
Returns a single value from wmic, for example to get the hostname:
wmic.get_value('computersystem', 'name', null, function(err, value) {
console.log(value) // Your Hostname
})
Returns an array of values from wmic, for example to list hard drives:
wmic.get_values('logicaldisk', 'name, volumename', null, function(err, values) {
console.dir(values) // An array of disks
})
Written by Tomas Pollak, with the help of contributors.
(c) Fork Ltd, MIT licensed.
FAQs
Wrapper around the WMIC Windows command interface.
The npm package wmic receives a total of 4,156 weekly downloads. As such, wmic popularity was classified as popular.
We found that wmic 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.