是否可以从 swf 发送 ICMP 回显请求?
ActionScript 3 可以通过 flash 发送 UDP 数据包。 net.DatagramSocket。他们有什么办法发送 ICMP 数据包吗?我还想设置 TTL 标志,以便可以在 SWF 中实现 traceroute。
ActionScript 3 can send UDP packets via flash.net.DatagramSocket. Is their any way to send an ICMP packet? I'd also like to set the TTL flag so I can implement traceroute in an SWF.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UDP 在 Flash Player 上不可用,仅在 Adobe AIR 运行时可用。因此,如果您的目标不是浏览器,则可以使用它。我不知道您是否可以使用 DatagramSocket 发送 ICMP 数据包 - 但您可以尝试设置 TTL,如下例所示: http://blog.debit.nl/2010/06/mdns-daap-announce-air-2-0/
您可能有兴趣查看 flash.net.dns 包:http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/dns/package-detail.html
UDP is not available on Flash Player, only on Adobe AIR runtime. So if you are not targeting a browser, you can use it. I don't know if you can send an ICMP packet with DatagramSocket - but you could try to set the TTL like this example: http://blog.debit.nl/2010/06/mdns-daap-announce-air-2-0/
And you might be interested to see the flash.net.dns package: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/dns/package-detail.html