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.
github.com/ohpe/socks-my-vpn
This is a small Docker image which blends together OpenVPN-Client and a SOCKS proxy server. Use it to isolate network changes.
bash run.sh ~/path/to/vpn-folder/
Alternatively:
docker run \
--rm \
-it \
--privileged \
--device=/dev/net/tun \
--cap-add=NET_ADMIN \
--env-file socks.config \
-p 1080:1080 \
--volume "~/path/to/vpn-folder/:/vpn/:ro" \
--sysctl net.ipv6.conf.all.disable_ipv6=0 \
ohpe/socks-my-vpn:latest
The socks5 server is written in Go and forked from https://github.com/serjs/socks5-server.
If works with or without authentication and the configurations can be set in the
socks.config
file.
Supported config parameters:
ENV variable | Type | Default | Description |
---|---|---|---|
PROXY_USER | String | EMPTY | Set proxy user (also required existed PROXY_PASS ) |
PROXY_PASSWORD | String | EMPTY | Set proxy password for auth, used with PROXY_USER |
PROXY_PORT | String | 1080 | Set listen port for application |
Connect to proxy:
without auth:
curl --proxy socks5://127.1:$PROXY_PORT ipinfo.io
with auth:
curl --socks5 --user $PROXY_USER:$PROXY_PASSWORD 127.1:$PROXY_PORT ipinfo.io
FAQs
Unknown package
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.