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.
Copy files (one after the other)
$ npm install cpy-sync
const cpy = require('cpy-sync');
(async () => {
await cpy(['src/*.png', '!src/goat.png'], 'dist');
console.log('Files copied!');
})();
Type: string
Array
Files to copy.
Type: string
Destination directory.
Type: Object
Options are passed to cp-file and globby.
Type: string
Default: process.cwd()
Working directory to find source files.
Type: boolean
Default: false
Preserve path structure.
Type: string
Function
Filename or function returning a filename used to rename every file in files
.
cpy('foo.js', 'destination', {
rename: basename => `prefix-${basename}`
});
Type: Function
{
completedFiles: Number,
totalFiles: Number,
completedSize: Number
}
completedSize
is in bytespercent
is a value between 0
and 1
Note that the .on()
method is available only right after the initial cpy
call, so make sure you add a handler
before calling .then()
:
(async () => {
await cpy(source, destination).on('progress', progress => {
// …
});
})();
MIT © Sindre Sorhus
FAQs
Copy files (one after the other)
The npm package cpy-sync receives a total of 0 weekly downloads. As such, cpy-sync popularity was classified as not popular.
We found that cpy-sync 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
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.