How To Monitor Network Activity From Within App?

后端 未结 3 408
猫巷女王i
猫巷女王i 2020-12-24 04:06

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

相关标签:
3条回答
  • 2020-12-24 04:23

    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.

    0 讨论(0)
  • 2020-12-24 04:23

    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", ...)
    
    0 讨论(0)
  • 2020-12-24 04:24

    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/

    0 讨论(0)
提交回复
热议问题