REQUIRES WinPcap:

Run As ADMIN: Required for using conquer memory for trial & error when solving for the key after DH key exchange.
THIS IS NOT A BOT, ITS A EDUCATIONAL TOOL, PLEASE DON'T ASK ME HOW TO MAKE IT HUNT!!!
Hello Guys and Girls, made a nice little tool for assisting developers out there in finding packets and learning how they work.
Heres a little screenshot
This tool will always be 100% free. No advertising links like sharecash, just direct links.
The expressions are similar to wireshark.
Here are some of the variables / functions
DstEther - The destination mac address. (for network interface or router)
SrcEther - The source mac address. (for network interface or router)
DstIP - The destination IP address (for network interface, remote login server, or game server)
SrcIP - The source IP address (for network interface, remote login server, or game server)
DstPort - The destination port (goes with DstIP)
SrcPort - The source port (goes with SrcIP)
Data.StartsWith("AA BB CC DD") - Finds packets that start with AA BB CC DD
Data.Contains("AA BB CC DD") - Finds packets that contain AA BB CC DD
&& - Logical AND, Example: SrcPort==5816 && Data.StartsWith("25 00 1A 27");
|| - Logical OR, Example: SrcIP == "10.1.1.2" || SrcIP == "10.1.1.3"
! - Logical NOT, Example: !Data.Contains("1A 27")
== - EQUAL test, Example: DstPort == 5816
!= - NOT EQUAL test, Example: DstPort != 5816
Downloads:




Tips
- Login spams a lot of packets, and sometimes packets are dropped due to the time it takes to draw them on the screen. If you uncheck the "Enable" checkbox during login and re-check it, then there will be less chance of packets appearing as random data.
ChangeLog
CoPacketSniffer-v1.2.zip
- Fixed a bug when copying packets in filtered mode. (It was copying the wrong packet before)
CoPacketSniffer-v1.1.zip
- Made the Filter Expression TextBox coloured. (green means valid expression, red means invalid expression)
- Made the Font inside the packet list monospaced
CoPacketSniffer-v1.0.zip
- Added C/C++, C#, VB.Net, and Detailed Copy styles (from right click on packets)
- Added IP checksum check. (Ignores errored packets which needs to be resent due to poor network connection)
CoPacketSniffer.zip
- Initial Import







