I want to use wireshark to check which network users is using Port 59666 for downloads. Is it possible to use wireshark? and how would I begin to do this?
Wireshare Check for Torrentz
315 Views Asked by Henry Aspden At
1
There are 1 best solutions below
Related Questions in WIRESHARK
- Mock an Entity Framework class with JustMock inside another class
- Sitecore Unit Testing is not a success?
- The following setups were not matched - converting JustMock to Moq
- TestFixtureSetUpAttribute not found in JustMock?
- First Unit Tests! ASP.NET MVC with Repositories causing errors
- How to Mock Asynchronous Methods in JustMock?
- What is equivalent of moq.As in JustMock?
- JustMock - How to mock a method for all instances by returning the result of the equivalent method of another class (sharing a common interface
- How to properly unit test a class that takes a dependency using JustMock
- Using ReturnsAsync When Automocking in JustMock
Related Questions in BITTORRENT
- Mock an Entity Framework class with JustMock inside another class
- Sitecore Unit Testing is not a success?
- The following setups were not matched - converting JustMock to Moq
- TestFixtureSetUpAttribute not found in JustMock?
- First Unit Tests! ASP.NET MVC with Repositories causing errors
- How to Mock Asynchronous Methods in JustMock?
- What is equivalent of moq.As in JustMock?
- JustMock - How to mock a method for all instances by returning the result of the equivalent method of another class (sharing a common interface
- How to properly unit test a class that takes a dependency using JustMock
- Using ReturnsAsync When Automocking in JustMock
Related Questions in UTORRENT
- Mock an Entity Framework class with JustMock inside another class
- Sitecore Unit Testing is not a success?
- The following setups were not matched - converting JustMock to Moq
- TestFixtureSetUpAttribute not found in JustMock?
- First Unit Tests! ASP.NET MVC with Repositories causing errors
- How to Mock Asynchronous Methods in JustMock?
- What is equivalent of moq.As in JustMock?
- JustMock - How to mock a method for all instances by returning the result of the equivalent method of another class (sharing a common interface
- How to properly unit test a class that takes a dependency using JustMock
- Using ReturnsAsync When Automocking in JustMock
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It may be possible to do this with wireshark, but it may require you to adjust your network topology to achieve this.
Firstly you need to decide where to run wireshark.
Wireshark can only tell you about network packets that it can see. To assist, wireshark can put the network card into promiscuous mode, but if the network card is connected to a switch, the switch will not send other network packets to you - so wireshark cannot report on them.
If your users are connected using wifi, then you can run wireshark on a wifi addapter and inspect all wifi network packets from all users on that wifi network. You may also install wireshark on a computer operating as the router / firewall, and inspect all the packets there.
The final option depends on your switch hardware. On managed switches it is usually possible to duplicate all network traffic to an additional port. That would allow you to connect your computer to this port, and then run wireshark on this network connection.
When you are receiving the wireshark trace, set up a filter for the ports you are interested in, and wait for your users to send packets. Inspect the packets, and you will see the source IP address. You now need to translate this IP address to a physical computer (DNS / DHCP servers may help with this).
Depending on your computer environment, tracking it down to a single computer may not identify an individual responsible. Someone could have left a torrent running in the background and someone else could have logged onto and used the machine.