你能在接收者不可见的情况下发送数据包吗?

Can you send a packet without being visible to the receiver?

您能否将数据发送到 UDP 接收器,而接收器看不到您的 IP 地址或位置?

是的。可以使用 raw socket.

创建和发送带有欺骗性 IP 地址的 UDP 数据包

原始套接字允许应用程序创建自己的 IP headers,包括源地址字段。看看你用什么语言写的例子。

但是,创建和发送这样的数据包并不意味着沿途的网络会真正传送到接收方。一些网络采用 Reverse path forwarding to protect against IP spoofing. There's CAIDA a research project that tests for IP spoofing in networks around the world, you can find an up to date report here.

等防御措施