프록시 체인을 올바르게 구성하는 방법은 무엇입니까?

프록시 체인을 올바르게 구성하는 방법은 무엇입니까?

프록시 체인을 구성하기 위해 온라인에서 여러 튜토리얼을 따랐는데, 튜토리얼은 Tor 서비스를 사용한 구성을 보여준다는 점에서 거의 모두 동일합니다. 내가 겪은 문제는 내 DNS와 실제 IP 주소가 유출되었다는 것입니다. 프록시 체인을 사용하여 Firefox를 실행하면 Google은 때때로 내가 지구 반대편에 있다는 것을 표시하지만 인증 코드를 입력하라는 메시지가 표시되면 여전히 내 실제 IP 주소를 표시하며 때로는 내가 살고 있는 도시를 표시합니다. . 내가 하나 만들었어DNS 누출 테스트 또한 내 위치나 네트워크 제공업체가 전혀 표시되지 않지만내 IP 주소는 무엇입니까나의 모든 정보를 보여줍니다. 저는 Firefox를 사용하고 있으며 브라우저에 추가 프록시 설정이 없습니다. 무료 프록시를 사용해 보았지만 HTTP, SOCKS4-5 여부에 관계없이 모든 프록시가 시간 초과되었습니다. 저는 정말로 무료 프록시를 사용하고 싶지 않고 Tor 서비스를 사용하고 싶지만 제대로 작동할 수 없습니다. 제가 사용하고 있는 배포판은 Mint 20.3(Una)입니다.

Proxychains.conf 파일:

# 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

답변1

저는 여기에 처음 왔지만 오타를 발견했습니다. 양말5 127.0.0.1 9050을 쓸 때, 양말5와 127.0.0.1 9050 사이의 스페이스바를 누르는 대신 탭 키를 누르세요. 또한 "프록시 DNS 요청 - DNS 데이터가 유출되지 않습니다"라고 설명하고 "proxy_dns"는 주석 처리하지 않은 상태로 둡니다.

이것이 도움이 될지는 모르겠지만, 저는 얼마 전에 같은 실수를 했습니다. 이 점을 알아차리고 바꾸자 도움이 되었습니다!

관련 정보