我们都讨厌它知道我们每次冲浪时都会在互联网上留下我们的照片。或者,也许您想访问您所在位置不允许的服务,而您根本无法访问。本文将帮助您在互联网上匿名并克服其中的一些障碍。让我们玩得开心。

**免责声明:**本文仅用于_教育目的_。对于使用此信息进行的任何恶意意图,我概不负责。

所需工具

  • 个代理链

Proxychains 是一个开源软件,大部分预装在 Kali Linux 中。该工具通过 TOR、SOCKS4 和 SOCKS5 等代理重定向 TCP 连接,顾名思义,它允许我们链接代理服务器。使用此工具,我们可以隐藏流量的源地址并避开 IDS 和防火墙。

要安装 tor,请在终端中运行此命令。

sudo apt install tor

进入全屏模式 退出全屏模式

要安装代理链,请运行此命令。

sudo apt install proxychains

进入全屏模式 退出全屏模式

接下来,我们将编辑 procychains 配置文件。

您可以使用您喜欢的文本编辑器对其进行编辑。在我们的例子中,我们将使用在终端中运行的 nano 编辑器。

在您的终端类型上,

sudo nano /etc/proxychains.conf

进入全屏模式 退出全屏模式

打开文件后,我们需要做一些更改;

要启用某项功能,请删除该行开头的“#”,并禁用该行开头的“#”。

  • 查找带有 dynamic_chain 的行并启用它。

  • 查找带有 strict_chain 的行并禁用它。

  • 查找带有 proxy_dns 的行并启用它。

  • 查找带有 Proxy DNS requests - no leak for DNS data 的行并启用它。

  • 在末尾添加 tor socks5

现在,您的文件应该看起来像这样。

# proxychains.conf  VER 3.1
#
# HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.
#       

# The option below identifies how the ProxyList is treated.
# only one option should be uncommented at time,
# otherwise the last appearing option will be accepted
#
dynamic_chain
#
# Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app
#
#strict_chain
#
# Strict - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# all proxies must be online to play in chain
# otherwise EINTR is returned to the app
#
#random_chain
#
# Random - Each connection will be done via random proxy
# (or proxy chain, see  chain_len) from the list.
# this option is good to test your IDS :)

# Make sense only if random_chain
#chain_len = 2

# Quiet mode (no output from library)
#quiet_mode

Proxy DNS requests - no leak for DNS data
proxy_dns
# Some timeouts in milliseconds
tcp_read_time_out 15000
tcp_connect_time_out 8000

# ProxyList format
#       type  host  port [user pass]
#       (values separated by 'tab' or 'blank')
#
#
#        Examples:
#
#               socks5  192.168.67.78   1080    lamer   secret
#               http    192.168.89.3    8080    justu   hidden
#               socks4  192.168.1.49    1080
#               http    192.168.39.93   8080    
#
#
#       proxy types: http, socks4, socks5
#        ( auth types supported: "basic"-http  "user/pass"-socks )
#
[ProxyList]
# add proxy here ...
# meanwile
# defaults set to "tor"
socks4  127.0.0.1 9050
socks5 127.0.0.1 9050

进入全屏模式 退出全屏模式

现在按 CTRL + O 然后按 ENTER 然后按 CTRL + X 退出来保存更改。

SOCKS 是一种互联网协议,它使用代理服务器在服务器和客户端之间路由数据包。

127.0.0.1 是环回 IP 地址。

9050 是默认情况下 TOR 侦听代理连接的端口。

最后,通过运行以下命令启动 tor 服务:

service tor start

进入全屏模式 退出全屏模式

要检查服务的状态,请运行

service tor status

进入全屏模式 退出全屏模式

启动TOR后,运行以下命令启动proxychains

proxychains firefox www.duckduckgo.com

进入全屏模式 退出全屏模式

并在浏览器选项卡中打开访问https://dnsleaktest.com/进行 DNS 泄漏测试。

代理链的好处是它可以动态更改您的 IP 地址而不会泄露您的 DNS

和繁荣!我在美国。

[dnsleak](https://res.cloudinary.com/practicaldev/image/fetch/s---GX0TMWw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to- uploads.s3.amazonaws.com/i/lt2e62blocvxwh08khyy.jpeg)

项目需要开发人员?联系我们DentriceDev 解决方案

快乐编码。

Logo

更多推荐