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.
unblock-netease-music
Advanced tools
一个基于 koa 的网易云音乐的代理……
English version here.
npm install unblock-netease-music -g
unblockneteasemusic
向 /etc/hosts 文件中添加一行:119.29.65.105 music.163.com
unblockneteasemusic -h
Usage: unblockneteasemusic [options]
Options:
-h, --help output usage information
-p, --port <port> Specific server port.
-f, --force-ip <ip> Force the netease server ip.
-k, --kugou Find copyright music on Kugou.
-d, --dongting Find copyright music on TianTianDongTing.
-q, --qq Find copyright music on QQ Music.
在客户端中设置代理为 127.0.0.1:8123
,并重启客户端
新客户端 API 有改动,已经用不了了
127.0.0.1 music.163.com
sudo unblockneteasemusic -p 80
P.S. 请务必不要更新客户端到 1.4.3 以上的版本。 下载连接
<服务器 IP> music.163.com
music.163.com
的流量到自建服务器127.0.0.1 music.163.com
server {
listen 80;
server_name music.163.com;
location / {
proxy_pass http://127.0.0.1:8123;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Accept-Encoding "";
}
}
server {
listen 80;
server_name music.163.com;
location / {
if ($http_host !~* ^(music.163.com)$){
return 500;
}
proxy_pass http://localhost:8123;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Accept-Encoding "";
}
}
user daemon
pidfile /var/run/sniproxy.pid
error_log {
syslog daemon
priority notice
}
listen <YOUR_SERVER_IP>:443 {
proto tls
table https_hosts
access_log {
filename /var/log/sniproxy/https_access.log
priority notice
}
fallback 127.0.0.1:443
}
table https_hosts {
music.163.com 223.252.199.7:443
}
sudo npm install unblock-netease-music -g
unblockneteasemusic
.GPLv3
FAQs
A proxy server for Netease Music...
The npm package unblock-netease-music receives a total of 7 weekly downloads. As such, unblock-netease-music popularity was classified as not popular.
We found that unblock-netease-music 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
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.