
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
filesystem2use
Advanced tools
Allow to browse files like a graph where each file or directory is a node.
const {Node} = require("graph-fs");
Instantiate
const directory = new Node("/path/to/directory");
const file = directory.resolve('file.ext');
const sameFile = new Node("/path/to/directory/file.ext");
sameFile === file; // true (same instance)
Get infos
myFile.exists; // boolean
myFile.is.file; // true
myFile.is.directory; // false
myDirectory.is.directory; // true
myDirectory.is.file; // false
Path & name
myDirectory.toString(); // "/path/to/directory/"
myDirectory.absolute; // "/path/to/directory"
myDirectory.name; // "directory"
myFile.toString(); // "/path/to/file.ext"
myFile.absolute; // "/path/to/file.ext"
myFile.name; // "file.ext"
Navigate
const parent = file.parent
const sameParent = file.resolve("..")
parent === sameParent // true
Read
directory.children; // Node[] of files and directories
file.getContent([options = "utf8"]); // string
Create
// create a new directory
const newDirectory = directory.newDirectory("new-directory");
// create a directory recursively
const target = dir.resolve('this/path/does/not/exists');
target.exists; // false
target.asDirectoryRecursively();
target.exists; // true
target.is.directory; // true
Write
// create a new file
const newFile = directory.newFile("newFile.ext", [content]);
// force to write a file, even if it or its parents, still don't exist. It will create the full path to it.
file.overwrite(contentString);
Rename
const changedDir = directory.rename('changed'); // Node instance
directory.exists; // false
changedDir.exists; // true
Copy
const me2 = directory.copy('me2'); // Node instance
directory.exists; // true
me2.exists; // true
Move
const newLocation = directory.move('newLocation'); // Node instance
directory.exists; // false
newLocation.exists; // true
Clean
directory.clear() // delete all what's inside the directory
directory.delete() // delete the directory
FAQs
A collection of helpers for the Filesystem Facility
We found that filesystem2use 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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.