
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
🤹🏻♀️ A basic promise-based SFTP Client
npm i basic-sftp
ES Modules
import { Client } from 'basic-sftp';
CommonJS
const { Client } = require('basic-sftp');
const sftp = new Client();
await sftp.connect({
host: '',
port: 22,
username: '',
password: '',
});
ssh2
optionsawait sftp.reconnect();
await sftp.end();
Lists the contents of a directory
await sftp.ls(path);
Get the type from path: File | Directory | null
await sftp.is(path);
File
means that the remote path is a fileDirectory
means that the remote path is a directorynull
means that the remote path doesn't existCreates the path recursively, if it does not exist
await sftp.ensureDir(path);
Uploads a local file to the remote server
await sftp.uploadFile(localPath, remotePath);
Downloads a remote file to the local workspace
await sftp.downloadFile(remotePath, localPath);
Remove all files and directories from a directory, including the directory itself, if it exists
await sftp.unlink(path);
Brings up the original ssh2.sftp
methods
sftp.getConnection();
ls
is
ensureDir
unlink
uploadFile
downloadFile
uploadDir
downloadDir
Contributions | GitHub |
---|---|
Author |
FAQs
🤹🏻♀️ A basic promise-based SFTP Client
The npm package basic-sftp receives a total of 543 weekly downloads. As such, basic-sftp popularity was classified as not popular.
We found that basic-sftp 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.