How do I use SOCKS proxy in delphi?】的更多相关文章

TCP====== For Indy 8.0 In Delphi, do the following: IdTCPClient1.SocksInfo.Host := [the DNS name of the proxy server or its IP address]IdTCPClient1.SocksInfo.Protocol := [svNoSocks for no SOCKS support, svSocks4 for SOCKS 4, svSocks4A for SOCKS 4 wit…
使用netty构建一个socks proxy   最近在做的项目,需要自己搭建一个socks代理.netty4.0附带了一个socks代理的样例,但是3.x就没有这个东西了,碰巧使用的又是3.7,就只能自己摸索并实现一遍,也算是对netty和socks协议的一个熟悉.socks代理涉及到协议解析.server.client等功能,是一个比较复杂的网络程序,对于学习netty的使用也是非常好的例子. socks是在传输层之上的一层协议,主要功能是提供代理认证等功能.socks协议虽然是应用层协议(…
Install and configure ss5 socks proxy with simple authentication SS5 is a high performance socks proxy server implementing SOCK4 and SOCKS5 protocols. This step-by-step guide describes installation and configuration of SS5 with user/password authenti…
使用工具,privoxy,官网: http://www.privoxy.org/ socks5 proxy设定方法: autossh -CgNfD  0.0.0.0:1080 vps-lxb socks5 proxy 转换成 http proxy 方法: sudo apt-get install privoxy vi /etc/privoxy/config,增加或修改以下两行: listen-address localhost: forward-socks5 / . sudo service p…
A curated list of awesome Delphi frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff. Note that only open-source projects are considered. Dead projects are mainly ignored except for those which do not have alive analogs.…
Awesome Delphi  A curated list of awesome Delphi frameworks, libraries, resources, and shiny things. Inspired by awesome-... stuff. Note that only open-source projects are considered. Dead projects are mainly ignored except for those which do not hav…
用户在哪些情况下是需要设置网络代理呢? 1. 内网上不了外网,需要连接能上外网的内网电脑做代理,就能上外网:多个电脑共享上外网,就要用代理: 2.有些网页被封,通过国外的代理就能看到这被封的网站:3.想隐藏真实IP: 4. 想加快访问网站速度,在网络出现拥挤或故障时,可通过代理服务器访问目的网站.比如A要访问C网站,但A到C网络出现问题,可以通过绕道,假设B是代理服务器,A可通过B, 再由B到C. 我们app的大多数用户情况是第一种.我们参考qq和chrome的插件switchysharp设置代…
知其所以然 本文不是教程向,倾向于分析科学上网的一些原理.知其所以然,才能更好地使用工具,也可以创作出自己的工具. 科学上网的工具很多,八仙过海,各显神通,而且综合了各种技术.尝试从以下四个方面来解析一些其中的原理.大致先原理,再工具的顺序. dns http/https proxy vpn socks proxy 一个http请求发生了什么? 这个是个比较流行的面试题,从中可以引出很多的内容.大致分为下面四个步骤: dns解析,得到IP 向目标IP发起TCP请求 发送http request…
 Command Line JVM Settings The proxy settings are given to the JVM via command line arguments: java -Dhttp.proxyHost=proxyhostURL -Dhttp.proxyPort=proxyPortNumber -Dhttp.proxyUser=someUserName -Dhttp.proxyPassword=somePassword HelloWorldClass Setting…
http://technoblog.org/2009/07/configure-apt-get-to-use-a-proxy-ubuntu/ Open the following configuration file: /etc/apt/apt.conf.d/70debconf And add: Acquire::http::proxy “http://<IP_TO_PROXY>:<Proxy_Port_WEB>”; Acquire::ftp::proxy “ftp://<I…