Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
To use the Codius command-line interface (CLI), you need a recent version of Linux.
For the example commands below, we assume you're on Ubuntu 14.04 or later. But most up-to-date Linux distributions should work. We definitely recommend being on the latest stable release though.
If you're on Windows/Mac try installing Vagrant and then run:
vagrant init ubuntu/trusty32
vagrant up
vagrant ssh
Congratulations, you are running Ubuntu/Linux! Proceed.
On 64-bit systems you need to have the 32-bit versions of libc, libstdc++ and libseccomp installed.
On Ubuntu, run:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6-i386 lib32stdc++6 libseccomp2:i386
Install git by running:
sudo apt-get install git
Next, you need a recent version of Node.js. All versions of 0.10.x or higher should work.
On Ubuntu, you can install Node.js simply by:
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
sudo ln -s /usr/bin/nodejs /usr/local/bin/node
To install Codius command line tools, run:
sudo npm install -g codius
Now let's verify everything installed ok.
codius selftest
Let's check out an application and run it!
git clone https://github.com/codius/example-helloworld codius-example-helloworld
cd codius-example-helloworld
codius run
You should see something like:
Codius applications can expose HTTP APIs, check it out:
git clone https://github.com/codius/example-webserver codius-example-webserver
cd codius-example-webserver
codius serve
You should see an message like Localhost server listening on port: 8000
meaning your application is now running at localhost:8000
. Go ahead and open it in a browser!
You can upload contracts to Codius hosts.
NOTE: Before attempting to upload an application, it is important to first test it with Node and then with Codius using:
codius run
If your application runs with issues, you are ready to upload!
First, set yourself up with a local Codius host and run:
codius-host start
Now you can go back to the codius-example-webserver
folder from the previous example and run codius upload
:
cd codius-example-webserver
codius upload --hosts https://localhost:2633
Now your application is running on the Codius host! Go ahead and open its URL in the browser and watch its output in the host's log!
To upload your application to one or more remote Codius hosts, specify the hosts using --hosts
. Multiple hosts can be listed using commas without spaces:
codius upload --hosts https://remote-host-1.com,https://remote-host-2.com
If your Codius host is using a self-signed SSL certificate (potentially for development) you will need to
enable tls connections with self-signed certs by setting the CODIUS_UNAUTHORIZED_SSL
environment variable to true
CODIUS_UNAUTHORIZED_SSL=true codius upload --hosts https://self-signed-host.com
FAQs
Command Line Interface for Codius
The npm package codius receives a total of 4 weekly downloads. As such, codius popularity was classified as not popular.
We found that codius demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.