Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Neo SCP is a lightweight real SCP module based on ssh2 module.
This module is inspired by scp1.
This module is still in beta, optimizations and new features will coming in future releases.
npm install neo-scp
In order to use Neo SCP you must pass to NeoScp
instance an ssh2 connection as follow.
const Client = require('ssh2').Client;
const NeoScp = require('neo-scp');
const conn = new Client();
conn.connect({
host: '192.168.0.2',
port: 22,
username: 'root',
password: 'password'
});
const localFile = 'local/file.txt';
const remoteFile = 'remote/file.txt';
conn.on('ready', () => {
const Scp = new NeoScp(conn);
Scp.putFile(localFile, remoteFile, (err, res) => {
if (err) throw err;
if (res.localSize === res.remoteSize)
console.log(`Upload successfully (${res.duration}ms)`);
else
console.log('Damaged remote file');
conn.end();
});
});
Sends a file to remote host.
You must pass the localFile
path, the remoteFile
destination path and a callback function.
The callback returns as result an object with following data:
{
duration: Number, // transfer duration in ms
localSize: Number, // size of local file in bytes
remoteSize: Number // size of remote file in bytes
}
Gets the remote file size.
You must pass the remoteFile
destination path and a callback function.
The callback returns as result the size in bytes.
Gets a file from remote host.
You must pass the remoteFile
path, the localFile
destination path and a callback function.
NeoScp class emits the debug
event with some debug informatione. The following code shows how to use it.
Scp.on('debug', data => {
console.log(data);
});
FAQs
A pure JS real scp module based on ssh2 module
The npm package neo-scp receives a total of 3 weekly downloads. As such, neo-scp popularity was classified as not popular.
We found that neo-scp 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.