Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/egor200313/tcp-tunnel
Утилита, позволяющая обращаться к ресурсу локальной сети без публичного IP адреса из внешней сети через сервер с публичным IP (например виртуалка в Яндекс Облаке).
go run tunnel-server/main.go --client-port <port> --tunnel-port <port>
запустить сервер на публичном сервере. client-port
для подключения внешнего клиента, tunnel-port
для подключения туннельного агента. Сервера запускаются на 0.0.0.0
go run tunnel-agent/main.go --tunnel-ip <ip> --tunnel-port <port> --local-ip <ip> --local-port <port>
запустить агента в локальной сети с доступом к нужному ресурсу. tunnel-ip
и tunnel-port
адресуют туннельный сервер, local-ip
и local-port
- локальный ресурс (например, по умолчанию это nginx на 80 порту localhost)
Полный пример:
go run tunnel-server/main.go --client-port 9090 --tunnel-port 9999
go run tunnel-agent/main.go --tunnel-ip 1.2.3.4 --tunnel-port 9999 --local-ip 127.0.0.1 --local-port 80
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.