简体   繁体   English

使用 CURL 隐藏 IP 地址

[英]Hiding IP address using CURL

Similar : Possible to assign a new IP address on every http request?类似可以在每个 http 请求上分配一个新的 IP 地址吗?


Is it possible to display a different/spoofed IP address using CURL when you make requests to a server?当您向服务器发出请求时,是否可以使用 CURL 显示不同/欺骗的 IP 地址? If not, is there any alternative way of spoofing your IP address using PHP?如果没有,有没有其他方法可以使用 PHP 欺骗您的 IP 地址?

No. Unless of course you use proxies and route your traffic through them.不。当然,除非您使用代理并通过它们路由您的流量。

If you make a TCP/IP request, the other end needs to know your real address or you'll never receive a response back.如果您发出 TCP/IP 请求,另一端需要知道您的真实地址,否则您将永远不会收到回复。

If you're using TCP, then no - the TCP handshake is used at the beginning of each connection to ensure that both parties are who they say they are, so unless you're capable of intercepting network traffic between the server and the spoofed host, it's not possible.如果您使用的是 TCP,那么不 - 在每个连接开始时使用 TCP 握手以确保双方都是他们所说的,所以除非您能够拦截服务器和欺骗主机之间的网络流量, 这是不可能的。

See TCP sequence prediction for more information.有关详细信息,请参阅TCP 序列预测

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM