Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
github.com/alongl/tcprelay
tcprelay helps client accessing the host unreachable. For example:
Client A can not direct access target machine, for some reason firewall or NAT etc.
The other middle machine can access target.
Tcp client can access target with tcp by tcprelay running on middle machine.
+----------------+
| |
+-------------------------------> | target |(vm1)
| can not direct access | |
| +----------------+
| ^ 192.168.122.*:80
| |
| |
| | 192.168.122.1
+--------------+ +----------------+
| | 192.168.1.20 | |
| client A | +------------------------> | server A |(tcprelay)
| | 192.168.1.10:8080 | |
+--------------+ +----------------+
on server A, run tcprelay.
./tcprelay -l ":8080" -t "192.168.122.101:80"
It will listen on 8080, and all the client connected to :8080 will be relay to 192.168.1.101:80
For the client, just type http://1.2.3.4:8080 you can access the web service on target machine.
download this code, cd into the dir. type command as follows:
SET GOOS=linux
SET GOARCH=amd64
SET GOPROXY=https://goproxy.cn
go build .
if you don't want to compile it. just download in release page.
It's very easy to use.
This program is taken from this two repository. they are the hero.
https://github.com/xtaci/kcptun
https://github.com/hikaricai/p2p_tun
gost is a powerful relay tool.
https://github.com/ginuerzh/gost
It's easy to use, like this.
./gost -L tcp://:8080/192.168.122.101: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.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.