Skip to main content

SoftPerfect Network Protocol Analyzer – Network sniffer for Windows

Network Sniffer Capture
SoftPerfect Network Protocol Analyzer is an advanced, professional tool for analyzing, debugging, maintaining and monitoring local networks and Internet connections. It captures the data passing through your dial-up connection or network Ethernet card, analyzes this data and then represents it in an easily readable form. SoftPerfect Network Protocol Analyzer is a useful tool for network administrators, security specialists, network application developers and anyone who needs a comprehensive picture of the traffic passing through their network connection or segment of a local area network.

SoftPerfect Network Protocol Analyzer presents the results of its network analysis in a convenient and easily understandable format. It also allows you to defragment and reassemble network packets into streams. The program can easily analyze network traffic based on a number of different Internet protocols as listed below.
SoftPerfect Network Protocol Analyzer features full decoding of the following low level protocols: AH, ARP, ESP, ICMP, ICMPv6, IGMP, IP, IPv6, IPX, LLC, MSG, REVARP, RIP, SAP, SER, SNAP, SPX, TCP and UDP. It also performs full reconstruction of top-level protocols such as HTTP, SMTP, POP, IMAP, FTP, TELNET and others.
The flexible system of fully configurable filters can be used to discard all network traffic except the specific traffic patterns you wish to analyze. SoftPerfect Network Protocol Analyzer also features a packet builder. This tool allows you to build your own custom network packets and send them into the network. You could use this packet builder feature to check your network for protection against attacks and intruders.
The software requires Windows 98/ME/NT/2000/XP/2003/Vista/2008. Both 32-bit and 64-bit systems are supported. It also requires a network connection, which could be a wireless connection, or a modem that conforms to the NDIS standard.
Packets captured from a local area network. A captured and reconstructed mail session. Click to enlarge.
Network Sniffer Capture Network Sniffer Data Flow
A captured and reconstructed HTTP session displayed in hexadecimal mode. Built-in packet builder.
Network Sniffer Hex Mode Network Sniffer Packet Builder
A live network flow analysis. The most active network hosts on a switch port.
Network Sniifer Network Flow Network Sniffer Host Activity Monitor

Comments

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.