sniffing

iPhone and WireShark [closed]

老子叫甜甜 提交于 2019-12-17 17:28:20
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . How can I sniff packets from my iPhone on my network? can someone give me some instructions? I tried Googling, but nothing teaches how to sniff iPhone packets、 I am on windows. 回答1: You can use Paros to sniff the network traffic from your iPhone. See this excellent step by step post

Packet sniffing in Python (Windows)

谁说我不能喝 提交于 2019-12-17 08:53:36
问题 What is the best way to sniff network packets using Python? I've heard from several places that the best module for this is a module called Scapy, unfortunately, it makes python.exe crash on my system. I would assume that it's just a problem with how I installed it, except that many other people have told me that it doesn't work particularly well on Windows. (If anyone is interested, I'm running Windows Vista, which might affect things). Does anyone know of a better solution? UPD: After

Sniffing https traffic of an android app

ぃ、小莉子 提交于 2019-12-13 18:12:04
问题 I want to do a challenge: automise some tasks that I do in a game so I can get the max of points. To do that, I need to know the url called and the parameters that are used in the Game. After setting a genymotion station and made a proxy, I've discovered that the game won't start if the certificate doesn't match with the one that is set in the app. So my question is how I can go further? 回答1: you can use 2 application 1.charles 2.fiddler 来源: https://stackoverflow.com/questions/45369844

Sniffing network requests

半城伤御伤魂 提交于 2019-12-12 11:26:38
问题 I am looking for a way to sniff the network traffic my Android app is generating. The reason is I want to check and send statistics of the traffic generated by a third party tracking library I am using in my app. Because of this, I cannot use any tPacketCapture or similars. I have no access to the http client of this tracking library, so I cannot intercept any request. I already took a look to VpnService , but I cannot force the user to connect to a VPN every time he is using my app of course

How do i send an ARP request in C# and which library to use

╄→尐↘猪︶ㄣ 提交于 2019-12-11 18:19:52
问题 I'm trying to develop a software that perform a "man in the middle" attack, and for that I need to send false ARP requests. 回答1: I'm assuming you want to spoof ARP replies. ARP is a Link Layer (L2) protocol. To spoof packets at this layer from user mode requires using Raw Sockets (as it is usually the TCP/IP stack in the kernel who takes care of this). In other words, you're not going to do it on Windows in C# with any sort of common / sane mechanism. The SendARP Win32 API call is available,

How to link directly to an FAQ option expanded

一世执手 提交于 2019-12-11 10:36:32
问题 I was wondering if you could give me some ideas on how I can do this. What we are looking to do is link directly to a question in our FAQ page. Currently our FAQ questions are being hidden via jQuery like so: $(document).ready(function() { $('.answer').each(function() { $(this).css("display", "none"); }); $('.question').click(function() { $(this).next('.answer').slideToggle("fast") return false; }); }); We would like to link to a specific question but have that question expanded. 回答1: I would

SSL: can the secret key be sniffed before the actual encryption begins?

烈酒焚心 提交于 2019-12-11 02:09:10
问题 I was looking into SSL and some of the steps that are involved to set up an encrypted connection between a server and a client computer. I understand that a server key and certificate is sent to the browser, and that a secret code is being calculated, like they say in the following video: http://www.youtube.com/watch?v=iQsKdtjwtYI around 5:22, they talk about a master secret code that is being calculated to start talking in an encrypted way. My question now is: before the connection is

usbmon for Android

跟風遠走 提交于 2019-12-10 19:23:14
问题 I want to analyze usb communication out of my device: SGS4. I see everywhere that the usbmon is needed to be configured and compiled into the kernel. Afaik, this module is not built in the android linux system. I don't have much experience in compiling a kernel but if this is necessary I would do it. Can you tell what are the steps of doing so? i.e. how to compile the linux kernel for android such that it would include the usbmon module. 回答1: I suppose you have access to: the sources of the

pcap_loop and pcap_dispatch Difference

我怕爱的太早我们不能终老 提交于 2019-12-09 15:08:21
问题 What exactly is the difference between pcap_loop and pcap_dispatch? 回答1: The manual describes this amazingly well (I'm saying that with a straight face, promise). From man pcap_loop : pcap_loop() processes packets from a live capture or ``savefile'' until cnt packets are processed, the end of the ``savefile'' is reached when reading from a ``savefile'', pcap_breakloop() is called, or an error occurs. It does not return when live read timeouts occur. A value of -1 or 0 for cnt is equivalent to

Could anyone suggest a good packet sniffer class for c++? [closed]

对着背影说爱祢 提交于 2019-12-09 07:04:43
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 months ago . Could anyone suggest a good packet sniffer class for c++? Looking for a easy insertable class I can use in my c++ program, nothing complicated. 回答1: You will never be able to intercept network traffic just by inserting a class into your project. Packet capture functionality requires kernel mode support, hence