https://nat.nioee.com
Core functions:
Experience address https://lanp.nioee.com (test username and password test/123456)
README | Chinese documentation
Lanproxy is an intranet penetration tool that proxies LAN personal computers and servers to the public network. It supports TCP traffic forwarding and can support any TCP upper layer protocol (access to intranet websites, local payment interface debugging, SSH access, remote desktop... ). Currently, similar services on the market include Peanut Shell, TeamView, GoToMyCloud, etc. However, if you want to use a third-party public network server, you must pay for the third party, and these services have various restrictions. In addition, due to the data packet It will flow through a third party, so it is also a major hidden danger to data security.
The server configuration file is placed in the conf directory and configured config.properties
server.bind =0.0.0.0
#与代理客户端通信端口
server.port =4900
# ssl相关配置
server.ssl.enable =true
server.ssl.bind =0.0.0.0
server.ssl.port =4993
server.ssl.jksPath =test.jks
server.ssl.keyStorePassword =123456
server.ssl.keyManagerPassword =123456
#这个配置可以忽略
server.ssl.needsClientAuth =false
# WEB在线配置管理相关信息
config.server.bind =0.0.0.0
config.server.port =8090
config.admin.username =admin
config.admin.password =admin
For proxy configuration, open the address http://ip:8090, log in using the username and password configured in the above configuration, and enter the following proxy configuration interface
A server can support multiple client connections. Configuration data is stored in the ~/.lanproxy/config.json file.
The configuration file of Java client is placed in the conf directory and configured config.properties
#与在proxy-server配置后台创建客户端时填写的秘钥保持一致;
client.key =
ssl.enable =true
ssl.jksPath =test.jks
ssl.keyStorePassword =123456
#这里填写实际的proxy-server地址;没有服务器默认即可,自己有服务器的更换为自己的proxy-server(IP)地址
server.host =lp.thingsglobal.org
# proxy-server ssl默认端口4993,默认普通端口4900
# ssl.enable=true时这里填写ssl端口,ssl.enable=false时这里填写普通端口
server.port =4993
If you don’t use the Java client, you can use the clients for each platform provided below, eliminating the need to install the Java operating environment.
https://github.com/ffay/lanproxy-go-client
https://github.com/ffay/lanproxy-go-client/releases
# mac 64位
nohup ./client_darwin_amd64 -s SERVER_IP -p SERVER_PORT -k CLIENT_KEY &
# linux 64位
nohup ./client_linux_amd64 -s SERVER_IP -p SERVER_PORT -k CLIENT_KEY &
# windows 64 位
./client_windows_amd64.exe -s SERVER_IP -p SERVER_PORT -k CLIENT_KEY
# mac 64位
nohup ./client_darwin_amd64 -s SERVER_IP -p SERVER_SSL_PORT -k CLIENT_KEY -ssl true &
# linux 64位
nohup ./client_linux_amd64 -s SERVER_IP -p SERVER_SSL_PORT -k CLIENT_KEY -ssl true &
# windows 64 位
./client_windows_amd64.exe -s SERVER_IP -p SERVER_SSL_PORT -k CLIENT_KEY -ssl true