如何从应用程序内监控网络活动?

发布于 2024-11-10 09:24:53 字数 92 浏览 6 评论 0原文

我正在尝试从我正在开发的应用程序中监控 iPhone 上的网络活动。 iOS 是否支持类似 netstat 的命令或类似的命令,可以告诉我哪些入站和出站连接处于活动状态?

I'm trying to monitor network activity on my iPhone from within an app I'm developing. Does iOS support a netstat-like command or something similar that can tell me what what inbound and outbound connections are active ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烂柯人 2024-11-17 09:24:53

经过一番搜索后,我发现 Apple 用于 netstat 的代码< /a>.

void protopr(uint32_t proto, char *name, int af) 函数中需要的一切。

我在设备上进行了测试,sysctlbyname("net.inet.tcp.pcblist_n",...) 有效。

这应该就是您所需要的。

After some searching I found Apple's code used for netstat.

Everything you need in the void protopr(uint32_t proto, char *name, int af) function.

I tested on the device and sysctlbyname("net.inet.tcp.pcblist_n",...) works.

That should be all you need.

差↓一点笑了 2024-11-17 09:24:53

我无法对此进行测试,但根据我收集的信息,您必须将 sysctlsysctlnametomib 结合使用,或者使用 sysctlbyname 为此:

sysctlbyname("net.inet.tcp.pcblist", ...)

和/或

sysctlbyname("net.inet.udp.pcblist", ...)

I can't test this but from what I gather you will have to use sysctl in combination with sysctlnametomib or alternatively sysctlbyname for this:

sysctlbyname("net.inet.tcp.pcblist", ...)

and/or

sysctlbyname("net.inet.udp.pcblist", ...)
云胡 2024-11-17 09:24:53

您可以使用 burp suite 来实现此目的,通过它您可以检查通过手机的所有 http 数据。
您必须在您的 mac/ubuntu/windows 机器上安装此工具,然后借助此工具创建一个代理服务器,然后修改 iphone/android 手机中的 wifi 设置以使用您的电脑作为代理,然后它将捕获所有输入/输出流量。

在此阅读完整说明 -
http: //www.engadget.com/2011/02/21/how-to-inspect-ioss-http-traffic-without-spending-a-dime/

You can use burp suite for this purpose , By this you can inspect all the http data going through your phone.
You have to install this in your mac/ubuntu/windows machine, and then create a proxy server with help of this tool and then modify your wifi setting in iphone/android phone to use your pc as proxy , and then it will capture all the input/output traffic.

Read full instruction here -
http://www.engadget.com/2011/02/21/how-to-inspect-ioss-http-traffic-without-spending-a-dime/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文