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.
@akryum/winattr
Advanced tools
Foolproof Windows® file attributes for Node.js
Get and set:
archive
hidden
readonly
system
… on files and/or directories.
A native binding is used, offering great performance. As a contingency in case that fails, functionality will silently revert to a command line, though it is considerably slower.
It may go without saying, but this library is not intended to run on anything other than Windows.
Node.js >= 4
is required. To install, type this at the command line:
npm install @akryum/winattr
Or:
yarn add @akryum/winattr
get(path, callback)
path
- Path to file or directory
callback(err,attrs)
- A callback which is called upon completion
winattr.get("path/to/file.ext", function(err, attrs) {
if (err == null) console.log(attrs);
});
If you omit the callback, a Promise will be return instead.
getSync(path)
path
- Path to file or directory
Returns an Object
or throws an error if the file or dir cannot be found/accessed.
var attrs = winattr.getSync("path/to/file.ext");
console.log(attrs);
set(path, attrs, callback)
path
- Path to file or directory
attrs
- An object containing attributes to change
callback(err)
- A callback which is called upon completion
winattr.set("path/to/folder/", {readonly:true}, function(err) {
if (err == null) console.log("success");
});
If you omit the callback, a Promise will be return instead.
setSync(path, attrs)
path
- Path to file or directory
attrs
- An object containing attributes to change
Throws an error if the file or dir cannot be found/accessed.
winattr.setSync("path/to/folder/", {readonly:true});
v3.0.0
Fixed:
New:
get
and set
return a Promise if no callback is provided.getSync()
,setSync()
useExec()
,useNative()
useExec()
"mode"fswin.find()
to fswin.getAttributes()
now that it's available, tested non-existent filesuseExec()
,useNative()
FAQs
Foolproof Windows® file attributes.
The npm package @akryum/winattr receives a total of 53,742 weekly downloads. As such, @akryum/winattr popularity was classified as popular.
We found that @akryum/winattr 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.