
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
NoAuthSFTP is an anonymous SFTP server that requires no password (or username) to connect to. Users will only be able to invoke sftp and navigate around the directory specified on the command line
NoAuthSFTP is not for internet facing use and is only intended as a 'quick and dirty' to get files off a machine on a secure network
It is recommended to install NoAuthSFTP to a virtual environment as follows:
$ python3.5 -m venv venv
$ . venv/bin/activate
# pip install noauthsftp
If you intend to use eliptic curve keys, additional dependeincies will need to be pulled in. These can be installed with the following comamnd:
$ pip install 'asyncssh[bcrypt,libnacl]'
This will pull in all the required dependencies after which the server can be run by executing the following command
$ noauthsftp
NoAuthSFTP has a fairly comprehensive help command available by executing the following:
$ noauthsftp --help
In order to get noauthsftp running it requires a ssh host key, this is identical to a standard public/private key pair but used by the server instead (do not reuse it for standard ssh communications). To generate this keypair use the following command
$ ssh-keygen
you will then be prompted for a filename, select a filename such as 'ssh_server_key' and make note of this, The filename will be used with the '-k' option to allow the ssh server to authenticate itself to the client.
0.4.0 2017-04-26 ################
0.3.0 2016-03-28 ################
0.2.0 2016-03-28 ################
0.1.0 2016-08-15 ################
FAQs
Simple SFTP server that allows all logins (anon sftp)
We found that noauthsftp demonstrated a healthy version release cadence and project activity because the last version was released less than 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 uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.