ProxyChains-3.1 (http://proxychains.sf.net) |DNS-request| www.httpbin.org |S-chain|-<>-192.168.23.129:10808-<--timeout |S-chain|-<>-192.168.23.129:10808-<--timeout |S-chain|-<>-192.168.23.129:10808-<--timeout |DNS-response|: www.httpbin.org does not exist curl: (6) Could not resolve host: www.httpbin.org
时间: 2024-02-19 18:00:07 浏览: 311
从错误信息看,可能是由于 DNS 解析问题导致的无法连接到 `www.httpbin.org`。您可以尝试在 `proxychains.conf` 文件中设置其他的 DNS 解析服务器,如 Google 的 DNS 服务器:
```
# 在 proxychains.conf 文件中添加以下内容
[ProxyList]
# 添加以下行
dns_server = 8.8.8.8
```
然后再次尝试使用 ProxyChains 进行访问,看是否能够正常工作。
相关问题
比如说把所以域名的开头修改成https://chatbot-test-2.answeraiops.com/
如果你想通过ProxyMan批量修改所有域名的开头成`https://chatbot-test-2.answeraiops.com/`,你需要对代理配置进行如下设置:
1. **编辑代理配置**:打开ProxyMan的配置文件(默认可能是`/etc/proxychains4/proxychains4.conf`或`~/.proxychains4/proxychains4.conf`),这里假设是Linux环境下的文件。
2. **查找http(s)代理链**:在配置中找到处理HTTP(S)请求的部分,通常会有一个`http`或`https`的代理链。
3. **添加或修改规则**:添加一条新的代理规则,比如:
```plaintext
http GET|POST|PUT|DELETE * :80 -> https://chatbot-test-2.answeraiops.com/
```
这行命令的意思是,对于所有HTTP(S)的GET、POST、PUT和DELETE请求,不论原始URL是什么,都将其头部的Host字段替换成`chatbot-test-2.answeraiops.com`,并通过80端口转发到指定的HTTPS服务器。
4. **保存配置**:完成修改后,记得保存配置文件。
5. **重启ProxyMan**:为了应用新的配置,可能需要重启ProxyMan服务(例如在Linux上可以运行`systemctl restart proxyman`)。
# 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" socks5 192.168.23.15 10808 dns_server = 8.8.8.8
从您提供的 `proxychains.conf` 文件来看,您已经设置了 DNS 服务器为 Google 的 DNS 服务器 `8.8.8.8`。但是在执行命令时仍然提示无法解析域名。这种情况下,您可以尝试使用其他可用的 DNS 服务器地址,比如阿里云的 DNS 服务器地址 `223.5.5.5` 和 `223.6.6.6`,或者使用默认的 DNS 服务器。您可以在 `proxychains.conf` 文件中将 `dns_server` 设置为以下之一:
```
# 使用阿里云的 DNS 服务器
dns_server = 223.5.5.5
dns_server = 223.6.6.6
# 使用默认的 DNS 服务器
# dns_server =
```
然后重新执行命令,看是否能够正常工作。
阅读全文