<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Wireshark and Wireshark Portable</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/</link>
	<description></description>
	<pubDate>Wed, 25 Nov 2009 10:36:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: N8dog89</title>
		<link>http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/#comment-3</link>
		<dc:creator>N8dog89</dc:creator>
		<pubDate>Fri, 14 Nov 2008 13:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/#comment-3</guid>
		<description>You are correct I could use TCPView, although this rogue person tries to login every couple hours, although they don't actually get into the PC as stated. So what I need is an app that logs connections, as I cannot be at the system and wait for it to happen. The girl at the PC will call me right after a connection is attempted at which point I would login, stop the logging and look for the IP, port, and any other relevant info. Great suggestion though, and thanks for the comment!

NS</description>
		<content:encoded><![CDATA[<p>You are correct I could use TCPView, although this rogue person tries to login every couple hours, although they don&#8217;t actually get into the PC as stated. So what I need is an app that logs connections, as I cannot be at the system and wait for it to happen. The girl at the PC will call me right after a connection is attempted at which point I would login, stop the logging and look for the IP, port, and any other relevant info. Great suggestion though, and thanks for the comment!</p>
<p>NS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Labnuke99</title>
		<link>http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/#comment-2</link>
		<dc:creator>Labnuke99</dc:creator>
		<pubDate>Fri, 14 Nov 2008 12:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/information-technology/wireshark-and-wireshark-portable/#comment-2</guid>
		<description>Be sure to have at least v4.1.2 of VNC installed. Some of the older versions have a vulnerability that can be exploited such that an attacker can connect without any authentication. 

The Sysinternals tool [A href="http://live.sysinternals.com/Tcpview.exe"]tcpview[/A] may be a quicker easier solution than using Wireshark. It will show the running applications/process, protocol, local address, remote address and port state. This may be an easier tool to use than looking through lots of Wireshark traces. I am using Wireshark though to track down a slow telnet login problem. 

netstat -an will also give you what ports have active and listening connections. The output is similar to this:
[I]
  TCP    127.0.0.1:1075         127.0.0.1:27015        ESTABLISHED
  TCP    127.0.0.1:1122         127.0.0.1:9051         ESTABLISHED
  TCP    127.0.0.1:1123         127.0.0.1:1124         ESTABLISHED
  TCP    127.0.0.1:1124         127.0.0.1:1123         ESTABLISHED
  TCP    127.0.0.1:5354         0.0.0.0:0              LISTENING
  TCP    127.0.0.1:8118         0.0.0.0:0              LISTENING
  TCP    127.0.0.1:9050         0.0.0.0:0              LISTENING
  TCP    127.0.0.1:9051         0.0.0.0:0              LISTENING
  TCP    127.0.0.1:9051         127.0.0.1:1122         ESTABLISHED
  TCP    127.0.0.1:11469        127.0.0.1:11470        ESTABLISHED
  TCP    127.0.0.1:11470        127.0.0.1:11469        ESTABLISHED
  TCP    127.0.0.1:11471        127.0.0.1:11472        ESTABLISHED
  TCP    127.0.0.1:11472        127.0.0.1:11471        ESTABLISHED
  TCP    127.0.0.1:27015        0.0.0.0:0              LISTENING
  TCP    127.0.0.1:27015        127.0.0.1:1075         ESTABLISHED
  TCP    192.168.37.1:139       0.0.0.0:0              LISTENING
  TCP    192.168.92.1:139       0.0.0.0:0              LISTENING
  UDP    0.0.0.0:445            *:*
  UDP    0.0.0.0:500            *:*
  UDP    0.0.0.0:1025           *:*
  UDP    0.0.0.0:1026           *:*
  UDP    0.0.0.0:1027           *:*
  UDP    0.0.0.0:1028           *:*
  UDP    0.0.0.0:1029           *:*
  UDP    0.0.0.0:1532           *:*
  UDP    0.0.0.0:1533           *:*
  UDP    0.0.0.0:1534           *:*
  UDP    0.0.0.0:1535           *:*
  UDP    0.0.0.0:4500           *:*
  UDP    0.0.0.0:8085           *:*
  UDP    0.0.0.0:8086           *:*[/I]</description>
		<content:encoded><![CDATA[<p>Be sure to have at least v4.1.2 of VNC installed. Some of the older versions have a vulnerability that can be exploited such that an attacker can connect without any authentication. </p>
<p>The Sysinternals tool <a href="http://live.sysinternals.com/Tcpview.exe">tcpview</a> may be a quicker easier solution than using Wireshark. It will show the running applications/process, protocol, local address, remote address and port state. This may be an easier tool to use than looking through lots of Wireshark traces. I am using Wireshark though to track down a slow telnet login problem. </p>
<p>netstat -an will also give you what ports have active and listening connections. The output is similar to this:<br />
<i><br />
  TCP    127.0.0.1:1075         127.0.0.1:27015        ESTABLISHED<br />
  TCP    127.0.0.1:1122         127.0.0.1:9051         ESTABLISHED<br />
  TCP    127.0.0.1:1123         127.0.0.1:1124         ESTABLISHED<br />
  TCP    127.0.0.1:1124         127.0.0.1:1123         ESTABLISHED<br />
  TCP    127.0.0.1:5354         0.0.0.0:0              LISTENING<br />
  TCP    127.0.0.1:8118         0.0.0.0:0              LISTENING<br />
  TCP    127.0.0.1:9050         0.0.0.0:0              LISTENING<br />
  TCP    127.0.0.1:9051         0.0.0.0:0              LISTENING<br />
  TCP    127.0.0.1:9051         127.0.0.1:1122         ESTABLISHED<br />
  TCP    127.0.0.1:11469        127.0.0.1:11470        ESTABLISHED<br />
  TCP    127.0.0.1:11470        127.0.0.1:11469        ESTABLISHED<br />
  TCP    127.0.0.1:11471        127.0.0.1:11472        ESTABLISHED<br />
  TCP    127.0.0.1:11472        127.0.0.1:11471        ESTABLISHED<br />
  TCP    127.0.0.1:27015        0.0.0.0:0              LISTENING<br />
  TCP    127.0.0.1:27015        127.0.0.1:1075         ESTABLISHED<br />
  TCP    192.168.37.1:139       0.0.0.0:0              LISTENING<br />
  TCP    192.168.92.1:139       0.0.0.0:0              LISTENING<br />
  UDP    0.0.0.0:445            *:*<br />
  UDP    0.0.0.0:500            *:*<br />
  UDP    0.0.0.0:1025           *:*<br />
  UDP    0.0.0.0:1026           *:*<br />
  UDP    0.0.0.0:1027           *:*<br />
  UDP    0.0.0.0:1028           *:*<br />
  UDP    0.0.0.0:1029           *:*<br />
  UDP    0.0.0.0:1532           *:*<br />
  UDP    0.0.0.0:1533           *:*<br />
  UDP    0.0.0.0:1534           *:*<br />
  UDP    0.0.0.0:1535           *:*<br />
  UDP    0.0.0.0:4500           *:*<br />
  UDP    0.0.0.0:8085           *:*<br />
  UDP    0.0.0.0:8086           *:*</i></p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->