
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
mygithub.libinneed.workers.dev/pagran/r-ssh
Advanced tools
This program allows you to quickly and safely forward local port without configuring the infrastructure.
Features:
ssh -R [domain[+flags]:]<port>:target_domain:target_port <host>
domain - The domain to which requests will be redirected (Host and Origin headers will be replaced by this value if the corresponding flag is enabled) [optional].
flags - Flags change the logic of port forwarding. [optional]
Available flags:
Origin header (see domain)port - Optional for r-ssh, but mandatory for ssh client. Affects only the link generated by r-ssh. By default, port 80 is not included in the link.
target_domain - Server to which requests will be redirected target_port - The port to which requests will be redirected
Forward local http://localhost:8080/ to web
ssh -R 80:localhost:8080 <host>
# forward "localhost:80" to "https://<fingeprint>.<host>/"
Forward https://example.com:443/ to web with automatic Host correction
ssh -R example.com+s:80:example.com:443 <host>
# forward "example.com+s:80" to "https://example_com-<fingeprint>.<host>/"
Without ssl:
docker run -d --restart always --name rssh -p 22:22 -p 80:80 -e RSSH_HOST=<host> -e RSSH_HOST_KEY=/mnt/id_rsa -v /root/r-ssh/:/mnt pagran/r-ssh:latest
With ssl (wildcard certificate required):
docker run -d --restart always --name rssh -p 22:22 -p 80:80 -p 443:443 -e RSSH_HOST=<host> -e RSSH_HOST_KEY=/mnt/id_rsa -e RSSH_CERT_FILE=/mnt/<host>.cer -e RSSH_KEY_FILE=/mnt/<host>.key -v /root/.acme.sh/<host>/:/mnt pagran/r-ssh:latest
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.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.