Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
marionette-file-manager
Advanced tools
A marionette plugin to manage(add, remove) files in device storage.
A marionette plugin to manage(add, remove) files in device storage.
/**
* For Gaia usage, please setup the plugin in
* https://github.com/mozilla-b2g/gaia/blob/master/shared/test/integration/setup.js.
*/
marionette.plugin('fileManager', require('marionette-file-manager'));
/**
* The marionette-file-manager plugin will handle the directory things,
* we do not need to create or remove the directort manually.
*
* After do the below script,
* we will have the two files in the path/to/device-storage/pictures directory.
*
* And we could just use { type: 'other-directory', filePath: 'path/to/file1' } to
* add files into the "other-directory" directory.
*/
client.fileManager.add([
{ type: 'pictures', filePath: 'path/to/file1' },
{ type: 'pictures', filePath: 'path/to/file2', filename: 'filename2' }
]);
// Add all files of a directory into device storage.
client.fileManager.add([
{ type: 'pictures', dirPath: 'path/to/dir' }
]);
// Remove the filename2 file from pictures directory.
client.fileManager.remove({ type: 'pictures', filename: 'filename2' });
// Remove all files in device storage.
client.fileManager.removeAllFiles();
FAQs
A marionette plugin to manage(add, remove) files in device storage.
The npm package marionette-file-manager receives a total of 1 weekly downloads. As such, marionette-file-manager popularity was classified as not popular.
We found that marionette-file-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.