Linux

如何防止魷魚被檢測到?

  • September 17, 2020

我在美國的 AWS 上設置了一個代理伺服器,以便允許我從英國瀏覽美國網際網路,但是我想隱藏它,以便後端無法檢測到我正在使用 squid。這可能嗎?如果可以,怎麼做?

您可以使用禁止 X-Forwarded-For

header_access X-Forwarded-For deny all

squid.conf

這就是我所需要的,但您可能希望拒絕的更多標題位於http://www.christianschenk.org/blog/enhancing-your-privacy-using-squid-and-privoxy/

這直接來自我的 squid.conf:

#Privacy Things
via off
forwarded_for off
follow_x_forwarded_for deny all

從 3.0 版開始,您需要從原始碼建構 squid,以使這些限制與 ‘./configure’ 的一些特殊標誌一起使用。這就是我建構我的方式:

./configure --enable-http-violations --prefix=/usr --includedir=/usr/include \
 --datadir=/usr/share --bindir=/usr/sbin --libexecdir=/usr/lib/squid        \
 --localstatedir=/var --sysconfdir=/etc/squid --enable-auth="ntlm,basic"    \
 --enable-follow-x-forwarded-for

(CentOS 5.5)

引用自:https://serverfault.com/questions/241918