<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CISSP Fix &#187; hacking</title>
	<atom:link href="http://cisspfix.com/tag/hacking/feed" rel="self" type="application/rss+xml" />
	<link>http://cisspfix.com</link>
	<description>Here you can find every bit of information in an interactive way. Enjoy while learning, this will bring best out of you.</description>
	<lastBuildDate>Sat, 10 Dec 2011 05:07:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Live Features of Netcat tool.</title>
		<link>http://cisspfix.com/live-features-of-netcat-tool.html</link>
		<comments>http://cisspfix.com/live-features-of-netcat-tool.html#comments</comments>
		<pubDate>Wed, 28 Apr 2010 04:11:00 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[backdoor]]></category>
		<category><![CDATA[connect remote machine]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Netcat]]></category>
		<category><![CDATA[port scanning]]></category>
		<category><![CDATA[swiss army knife]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=296</guid>
		<description><![CDATA[It takes lots of patience and strength to use this swiss army knife. I have to test everything, put everything on acid test. Then I thought why others suffer the same. This post will help people who want to see &#8230; <a href="http://cisspfix.com/live-features-of-netcat-tool.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Flive-features-of-netcat-tool.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Flive-features-of-netcat-tool.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>It takes lots of patience and strength to use this swiss army knife. I have to test everything, put everything on acid test. Then I thought why others suffer the same. This post will help people who want to see the true picture of netcat. </p>
<p>Netcat is a computer networking service for reading from and writing network connections using TCP or UDP. Netcat is designed to be a dependable &#8220;back-end&#8221; device that can be used candidly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and investigation tool since it can produce almost any kind of correlation one would need and has a number of built-in capabilities.</p>
<p>The common Netcat switches are as follows: </p>
<table border="1">
<tr>
<td> <uc:hed>Command</uc:hed></td>
<td> <uc:hed>Description</uc:hed></td>
</tr>
<tr>
<td>nc -d</td>
<td>It is used to detach Netcat from the console.</td>
</tr>
<tr>
<td>nc -l -p [port]</td>
<td>It is used to create a simple listening TCP port; adding u will put it in UDP mode.</td>
</tr>
<tr>
<td>nc -e [program]</td>
<td>It is used to redirect stdin/stdout from a program.</td>
</tr>
<tr>
<td>nc -z</td>
<td>It is used for port scanning.</td>
</tr>
<tr>
<td>nc -g or nc -G</td>
<td>It is used to specify source routing flags.</td>
</tr>
<tr>
<td>nc -t</td>
<td>It is used for Telnet negotiation.</td>
</tr>
<tr>
<td>nc -w [timeout]</td>
<td>It is used to set a timeout before Netcat automatically quits.</td>
</tr>
<tr>
<td>nc -v</td>
<td>It is used to put Netcat into verbose mode.</td>
</tr>
</table>
<p><uc:hed>Features of Netcat</uc:hed>: NetCat has the following features:</p>
<ul>
<li>Outbound or inbound connections, TCP or UDP, to or from any ports</li>
<li>Full DNS forward/reverse checking, with appropriate warnings</li>
<li>Ability to use any local source port</li>
<li>Ability to use any locally-configured network source address</li>
<li>Built-in port-scanning capabilities, with randomization</li>
<li>Built-in loose source-routing capability</li>
<li>Can read command line arguments from standard input</li>
<li>Slow-send mode, one line every N seconds</li>
<li>Hex dump of transmitted and received data</li>
<li>Optional ability to let another program service established connections</li>
<li>Optional telnet-options responder</li>
<li>Featured tunneling mode which also allows special tunneling, such as UDP to TCP, with the possibility of specifying all network parameters (source port/interface, listening port/interface, and the remote host allowed to connect to the tunnel).</li>
</ul>
<p><uc:hed>Netcat Examples</uc:hed>:</p>
<ul>
<li><uc:hed>Opening a raw connection to port 25 is (like telnet) </uc:hed>:</p>
<p><uc:stx>nc mail.server.net 25</uc:stx></li>
<li><uc:hed>Setting up a one-shot webserver on port 8080 to present a file</uc:hed>:
<p><uc:stx> ( echo -e &#8220;HTTP/1.0 200 Ok\n\r&#8221;; cat some.file; ) | nc -q 1 -l -p 8080</uc:stx></p>
<p>The file can then be accessed via a webbrowser under http://servername:8080/. Netcat only serves the file once to the first client that connects and then exits.</li>
<li><uc:hed>Checking if UDP ports (-u) 80-90 are open on 192.168.0.1 using zero mode I/O (-z) </uc:hed>:
<p><uc:stx>nc -vzu 192.168.0.1 80-90</uc:stx></li>
<li><uc:hed>Pipe via UDP (-u) with a wait time (-w) of 1 second to &#8216;loggerhost&#8217; on port 514</uc:hed>:
<p><uc:stx>echo &#8216;<0>message&#8217; | nc -w 1 -u loggerhost 514</uc:stx></li>
<li><uc:hed>Portscanning</uc:hed>:
<p>An uncommon use of netcat is port scanning. Netcat is not considered the best tool for this job, but it can be sufficient (a more advanced tool is Nmap)</p>
<p><uc:stx>nc -v -n -z -w 1 192.168.1.2 1-1000</uc:stx></p>
<p>The &#8220;-n&#8221; parameter here prevents DNS lookup, &#8220;-z&#8221; makes nc not to receive any data from the server, and &#8220;-w 1? makes the connection timeout after 1 second of inactivity.</li>
<li><uc:hed>Proxying</uc:hed>
<p>Another useful behavior is using netcat as a proxy. Both ports and hosts can be redirected. Look at this example:</p>
<p><uc:stx>nc -l -p 12345 | nc www.google.com 80</uc:stx></p>
<p>Port 12345 represents the request. This starts a nc server on port 12345 and all the connections get redirected to google.com:80. If a web browser makes a request to nc, the request will be sent to google but the response will not be sent to the web browser. That is because pipes are unidirectional. This can be worked around with a named pipe to redirect the input and output.</p>
<p><uc:stx>mkfifo backpipe<br />
nc -l -p 12345  0<backpipe | nc www.google.com 80 1>backpipe</uc:stx></p>
<p>On the Linux computer, also can use &#8220;-c&#8221; option.</p>
<p><uc:stx>nc -l -p 12345 -c &#8216;nc www.google.com 80&#8242;</uc:stx></li>
<li><uc:hed>Making any process a server</uc:hed>:
<p>On a computer A with IP 192.168.1.2:</p>
<p><uc:stx>nc -l -p 1234 -e /bin/bash</uc:stx></p>
<p>Look these videos to get more idea..</p>
<p>The &#8220;-e&#8221; option spawns the executable with its input and output redirected via network socket. </li>
</ul>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Ts76Y5qsTRI&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ts76Y5qsTRI&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/iNxuoR4mZAY&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/iNxuoR4mZAY&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Flive-features-of-netcat-tool.html&amp;title=Live%20Features%20of%20Netcat%20tool."><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/live-features-of-netcat-tool.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Experience Google Android on Apple&#8217;s iPhone</title>
		<link>http://cisspfix.com/experience-google-android-on-apples-iphone.html</link>
		<comments>http://cisspfix.com/experience-google-android-on-apples-iphone.html#comments</comments>
		<pubDate>Tue, 27 Apr 2010 05:09:14 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jailbreaking]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=294</guid>
		<description><![CDATA[Hackers did it again. After jail breaking now they are running Android from Google on Apple&#8217;s iPhone. To add to the iDroid experience, the developers have also brought in the menu tab, meaning you can drag it across the screen &#8230; <a href="http://cisspfix.com/experience-google-android-on-apples-iphone.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fexperience-google-android-on-apples-iphone.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fexperience-google-android-on-apples-iphone.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hackers did it again. After jail breaking now they are running Android from Google on Apple&#8217;s iPhone. </p>
<p>To add to the iDroid experience, the developers have also brought in the menu tab, meaning you can drag it across the screen to access the iPhone menu.</p>
<p>And to take things even further, the dial pad has been re-jigged to use the Hero&#8217;s larger buttons, so fat-fingered iPhone users can now rejoice.</p>
<p>Admittedly you have to have a jailbroken iPhone to use it, but for everyone secretly wishing their Apple device has the superior functionality of the Android interface, this theme could be the one for you.&#8221;</p>
<p>Google’s Android Platform is hardware agnostic which means that in theory, Android should be able to run on Apple’s iPhone just like Windows Vista strolls casually on Apple Macbook hardware.</p>
<p>And there are plenty of reasons why this could/should happen: Android could soon have a wealth of developers coding feverishly for the platform and Apple’s iPhone is by far the most desirable smartphone available.</p>
<p>The iPhone uses a variant of the Mach Kernel found in the Mac OS X and runs with the help of a 3D accelerator from PowerVR. It is powered by a proper CPU, shouldered by 128MB memory and 16GB of hard disk space.</p>
<p>This video will show more&#8230;..</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/5yO2KQHkt4A&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5yO2KQHkt4A&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fexperience-google-android-on-apples-iphone.html&amp;title=Experience%20Google%20Android%20on%20Apple%26%238217%3Bs%20iPhone"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/experience-google-android-on-apples-iphone.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Topics on demand</title>
		<link>http://cisspfix.com/learn-hacking.html</link>
		<comments>http://cisspfix.com/learn-hacking.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:16:52 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[demand]]></category>
		<category><![CDATA[discovery]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[penetration testing]]></category>

		<guid isPermaLink="false">http://cisspfix.com/topics-on-demand.html</guid>
		<description><![CDATA[These days I am experimenting a lot and I am enjoying a lot with the new path of evolution. For the starter I tried Movie review and it is going fine, as more movie reviews are in pipeline. I wanted &#8230; <a href="http://cisspfix.com/learn-hacking.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Flearn-hacking.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Flearn-hacking.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>These days I am experimenting a lot and I am enjoying a lot with the new path of evolution. For the starter I tried Movie review and it is going fine, as more movie reviews are in pipeline. </p>
<p>I wanted to open a secret with my readers (or I say my Friends), so as to start new initiative in this blogging field. I am currently working on a Study Guide based on Hacking tools and Penetration testing. I thought i can help everyone out there with the knowledge and resources I have. </p>
<p>This post is meant to help my friends in there quest of knowledge. </p>
<p>If anyone wants any kind of information about any Hacking Tool, methods and process of Penetration testing, Intrusion or any stray topic related to information security. Kindly let me take the pain of providing you the valuable information about almost anything. What I can promise to my friends is that I will try my level best to keep the representation as simple as possible.</p>
<p>What you have to do is to leave the name of the topic as the comment of this post. Kindly keep it straight and simple, so I can explain it better.</p>
<p>Let me take this voyage to the next level to find out pearls and feathers on our way. </p>
<p>Happy reading.  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Flearn-hacking.html&amp;title=Topics%20on%20demand"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/learn-hacking.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hackin tools used in penetration testing. part-5 Metasploit Framework</title>
		<link>http://cisspfix.com/hacking-tools-penetration-tersting-metasploit-framework.html</link>
		<comments>http://cisspfix.com/hacking-tools-penetration-tersting-metasploit-framework.html#comments</comments>
		<pubDate>Wed, 31 Mar 2010 05:07:31 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[metasploit framework]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=244</guid>
		<description><![CDATA[Metasploit Framework is a tool for developing and executing exploit code against a remote target machine. Metasploit can be used to test the vulnerability of computer systems in order to protect them, and it can be used to break into &#8230; <a href="http://cisspfix.com/hacking-tools-penetration-tersting-metasploit-framework.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-tersting-metasploit-framework.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-tersting-metasploit-framework.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://enduser666.files.wordpress.com/2009/05/metasploit1.gif" alt="Metasploit" /></p>
<p>Metasploit Framework is a tool for developing and executing exploit code against a remote target machine. Metasploit can be used to test the vulnerability of computer systems in order to protect them, and it can be used to break into remote systems. Like many information security tools, Metasploit can be used for both legitimate and unauthorized activities. The basic steps for exploiting a system using the Framework include -</p>
<ol>
<li>Choosing and configuring an exploit (code that enters a target system by taking advantage of one of its bugs; about 300 different exploits for Windows, Unix/Linux and Mac OS X systems are included). </li>
<li>Checking whether the intended target system is susceptible to the chosen exploit. </li>
<li>Choosing and configuring a payload (code that will be executed on the target system upon successful entry, for instance a remote shell or a VNC server). </li>
<li>Choosing the encoding technique to encode the payload so that the Intrusion-prevention system will not catch the encoded payload.</li>
<li>Executing the exploit. This modularity of allowing to combine any exploit with any payload is the major advantage of the Framework: it facilitates the tasks of attackers, exploit writers, and payload writers. </li>
</ol>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/7N7KDJjfmsk&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7N7KDJjfmsk&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-tersting-metasploit-framework.html&amp;title=Hackin%20tools%20used%20in%20penetration%20testing.%20part-5%20Metasploit%20Framework"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/hacking-tools-penetration-tersting-metasploit-framework.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hacking tools used in penetration testing. part-4-Snort</title>
		<link>http://cisspfix.com/hacking-tools-penetration-testing-snort.html</link>
		<comments>http://cisspfix.com/hacking-tools-penetration-testing-snort.html#comments</comments>
		<pubDate>Sat, 27 Mar 2010 05:15:03 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Network security]]></category>
		<category><![CDATA[snort]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=233</guid>
		<description><![CDATA[Snort is an open source network intrusion prevention and detection system that operates as a network sniffer. It logs activities of the network that is matched with the predefined signatures. Signatures can be designed for a wide range of traffic, &#8230; <a href="http://cisspfix.com/hacking-tools-penetration-testing-snort.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-testing-snort.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-testing-snort.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://cisspfix.com/hacking-tools-penetration-testing-snort.html/2010-03-27_103159-2" rel="attachment wp-att-239"><img src="http://cisspfix.com/wp-content/uploads/2010/03/2010-03-27_1031591.gif" alt="2010-03-27_103159" title="2010-03-27_103159" width="379" height="185" class="aligncenter size-full wp-image-239" /></a></p>
<p>Snort is an open source network intrusion prevention and detection system that operates as a network sniffer. It logs activities of the network that is matched with the predefined signatures. Signatures can be designed for a wide range of traffic, including Internet Protocol (IP), Transmission Control Protocol (TCP), User Datagram Protocol (UDP), and Internet Control Message Protocol (ICMP). </p>
<p>The three main modes in which Snort can be configured are as follows:
<ul>
<li> <uc:hed> Sniffer mode:</uc:hed> It reads the packets of the network and displays them in a continuous stream on the console.
</li>
<li><uc:hed>Packet logger mode:</uc:hed> It logs the packets to the disk.
 </li>
<li><uc:hed> Network intrusion detection mode:</uc:hed> It is the most complex and configurable configuration, allowing Snort to analyze network traffic for matches against a user-defined rule set.
</li>
</ul>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/TZ0Hj0t5b5k&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TZ0Hj0t5b5k&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fhacking-tools-penetration-testing-snort.html&amp;title=Hacking%20tools%20used%20in%20penetration%20testing.%20part-4-Snort"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/hacking-tools-penetration-testing-snort.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banner grabbing with netcat.</title>
		<link>http://cisspfix.com/banner-grabbing-with-netcat.html</link>
		<comments>http://cisspfix.com/banner-grabbing-with-netcat.html#comments</comments>
		<pubDate>Fri, 26 Mar 2010 06:10:15 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[banner grabbing]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Netcat]]></category>
		<category><![CDATA[port 80]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=220</guid>
		<description><![CDATA[I find netcat the best tool for banner grabbing. If you have messed around with method than you must be aware that you can read and write data across a network very easily and you can also connect to servers &#8230; <a href="http://cisspfix.com/banner-grabbing-with-netcat.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fbanner-grabbing-with-netcat.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fbanner-grabbing-with-netcat.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I find netcat the best tool for banner grabbing. If you have messed around with method than you must be aware that you can read and write data across a network very easily and you can also connect to servers with a normal tcp stream and send strings for your own needs. we&#8217;re interested in knowing what&#8217;s running behind port 80 and 21. </p>
<p>We can use Netcat to grab port banners in the following way: </p>
<p><a href="http://cisspfix.com/banner-grabbing-with-netcat.html/2010-03-26_113246" rel="attachment wp-att-221"><img src="http://cisspfix.com/wp-content/uploads/2010/03/2010-03-26_113246.gif" alt="2010-03-26_113246" title="2010-03-26_113246" width="485" height="228" class="aligncenter size-full wp-image-221" /></a></p>
<p><a href="http://cisspfix.com/banner-grabbing-with-netcat.html/2010-03-26_113337" rel="attachment wp-att-224"><img src="http://cisspfix.com/wp-content/uploads/2010/03/2010-03-26_113337.gif" alt="2010-03-26_113337" title="2010-03-26_113337" width="459" height="144" class="aligncenter size-full wp-image-224" /></a></p>
<p>So we know it&#8217;s probably a Windows 2000 machine as it&#8217;s running IIS 5.0 and Microsoft FTP Service.</p>
<p>Let&#8217;s try to send a malformed URL which attempts to exploit the File Traversal vulnerability in unpatched IIS servers (Pre SP3). We will be using Netcat to Check for the vulnerability, and if found (and it will!), we will upload Netcat to the IIS server and demonstrate how we can use Netcat as a backdoor.</p>
<p>If you do not know what the Unicode File traversal exploit is, you can check the &#8220;IIS Unicode File Traversal&#8221; tutorial, or read it up on the net.</p>
<p>Basically this exploit allows us to &#8220;break out&#8221; of C:inetpubwwwroot and explore and execute programs anywhere on the attacked machine. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fbanner-grabbing-with-netcat.html&amp;title=Banner%20grabbing%20with%20netcat."><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/banner-grabbing-with-netcat.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Hacking Process un-leashed</title>
		<link>http://cisspfix.com/hacking-process-un-leashed.html</link>
		<comments>http://cisspfix.com/hacking-process-un-leashed.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 05:04:55 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hacking process]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=108</guid>
		<description><![CDATA[Hackers usually use social engineering to gain most of their knowledge. Social Engineering is the act of getting someone to tell you about sensitive information through trust. This unadulterated trust becomes a weakness for most companies. Brute Force, Exploit and &#8230; <a href="http://cisspfix.com/hacking-process-un-leashed.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fhacking-process-un-leashed.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fhacking-process-un-leashed.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hackers usually use social engineering to gain most of their knowledge. Social Engineering is the act of getting someone to tell you about sensitive information through trust. This unadulterated trust becomes a weakness for most companies.</p>
<p>Brute Force, Exploit and dictionary attacks are usually started through the use of software on the hacker&#8217;s computer. To avoid detection, the hacker&#8217;s may use proxies or zombie machines so that their location cannot be determined. This is just a small list of the different attacks hackers can use.</p>
<p>Hacking process consists of a fixed approach or methodology. Hacking refers to the act of penetrating or gaining unauthorized access to computer systems for creating or modifying computer software and hardware, including computer programming, administration, and security-related items. A Hacker is a person who breaks into computers, usually by gaining access of administrative level. Hackers use various methods to accomplish the task. These methods are sequentially followed by a malicious hacker to accomplish his objective. These methods are widely divided in the following six phases:</p>
<ol>
<li>Reconnaissance </li>
<li>Scanning </li>
<li>Gaining access </li>
<li>Escalation of privilege </li>
<li>Maintaining access </li>
<li>Covering tracks </li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fhacking-process-un-leashed.html&amp;title=Hacking%20Process%20un-leashed"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/hacking-process-un-leashed.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireshark&#8211;come shallow</title>
		<link>http://cisspfix.com/wireshark-come-shallow.html</link>
		<comments>http://cisspfix.com/wireshark-come-shallow.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 04:23:05 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[forensic]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Network security]]></category>
		<category><![CDATA[packet analyzer]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=89</guid>
		<description><![CDATA[Wireshark is an open source protocol analyzer that can capture traffic in real time. Wireshark is a free packet sniffer computer application. It is used for network troubleshooting, analysis, software and communications protocol development, and education. Wireshark is very similar &#8230; <a href="http://cisspfix.com/wireshark-come-shallow.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fwireshark-come-shallow.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fwireshark-come-shallow.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Wireshark is an open source protocol analyzer that can capture traffic in real time. Wireshark is a free packet sniffer computer application. It is used for network troubleshooting, analysis, software and communications protocol development, and education. Wireshark is very similar to tcpdump, but it has a graphical front-end, and many more information sorting and filtering options. It allows the user to see all traffic being passed over the network (usually an Ethernet network but support is being added for others) by putting the network interface into promiscuous mode.</p>
<p>Wireshark uses pcap to capture packets, so it can only capture the packets on the networks supported by pcap. It has the following features:</p>
<ul>
<li>Data can be captured &#8220;from the wire&#8221; from a live network connection or read from a file that records the already-captured packets. </li>
<li>Live data can be read from a number of types of network, including Ethernet, IEEE 802.11, PPP, and loopback. </li>
<li>Captured network data can be browsed via a GUI, or via the terminal (command line) version of the utility, tshark. </li>
<li>Captured files can be programmatically edited or converted via command-line switches to the &#8220;editcap&#8221; program. </li>
<li>Data display can be refined using a display filter. </li>
<li>Plugins can be created for dissecting new protocols.<br />
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fwireshark-come-shallow.html&amp;title=Wireshark%26%238211%3Bcome%20shallow"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/wireshark-come-shallow.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow the FootPrinting.</title>
		<link>http://cisspfix.com/follow-the-footprinting.html</link>
		<comments>http://cisspfix.com/follow-the-footprinting.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 04:17:25 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[footprinting]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://cisspfix.com/follow-the-footprinting.html</guid>
		<description><![CDATA[Footprinting in computer is actually the process of collecting data with regard to a specific network environment, usually for the purpose of finding ways to intrude into the environment. Footprinting can reveal system vulnerabilities and improve the ease with which &#8230; <a href="http://cisspfix.com/follow-the-footprinting.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Ffollow-the-footprinting.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Ffollow-the-footprinting.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Footprinting in computer is actually the process of collecting data with regard to a specific network environment, usually for the purpose of finding ways to intrude into the environment. Footprinting can reveal system vulnerabilities and improve the ease with which they can be exploited. Footprinting begins by determining the location and objective of an intrusion. Once this is known, specific information about the organization is gathered using non-intrusive methods. For example, the organization&#8217;s own Web page may provide a personnel directory or employee bios, which may prove useful if the hacker needs to use social engineering to reach the objective. Conducting a whois query on the Web provides the domain names and associated networks related to a specific organization. Other information obtained may include learning the Internet technologies being used; the operating system and hardware being used; IP addresses; e-mail addresses and phone numbers; and policies and procedures.</p>
<p>Open Source Footprinting is the easiest and safest way to go about finding information about a company. Information that is available to the public, such as phone numbers, addresses, etc. Performing <a href="http://cisspfix.com/what-is-whois.html">whois requests</a>, searching through DNS tables, and scanning certain IP addresses for open ports, are other forms of open source footprinting. Most of this information is fairly easy to get, and getting it is legal, legal is always good. Most companies post lots of information about themselves on their website. A lot of this information can be very useful to hackers and the companies don&#8217;t even realize it. It may also be helpful to skim through the webpage&#8217;s HTML source to look for comments.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Ffollow-the-footprinting.html&amp;title=Follow%20the%20FootPrinting."><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/follow-the-footprinting.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What on Earth is Email Spam?</title>
		<link>http://cisspfix.com/what-on-earth-is-email-spam.html</link>
		<comments>http://cisspfix.com/what-on-earth-is-email-spam.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 02:59:56 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[malicious]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spoofing]]></category>

		<guid isPermaLink="false">http://cisspfix.com/what-on-earth-is-email-spam.html</guid>
		<description><![CDATA[E-mail spam new name of irritation and congestion in IT centaury. It is also known as junk e-mail, which kind of spam that includes nearly identical messages commercial in nature and is sent to various recipients by e-mail. Spam is &#8230; <a href="http://cisspfix.com/what-on-earth-is-email-spam.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fwhat-on-earth-is-email-spam.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fwhat-on-earth-is-email-spam.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>E-mail spam new name of irritation and congestion in IT centaury. It is also known as junk e-mail, which kind of spam that includes nearly identical messages commercial in nature and is sent to various recipients by e-mail. Spam is commonly as unsolicited bulk e-mail (UBE). Description of spam usually includes the aspects that email is unsolicited and sent in bulk &#8220;UCE&#8221; refers specifically to unsolicited commercial e-mail. E-mail spam has exponential growth in last two decades to several billion messages a day. Spam has frustrated, confused, and annoyed e-mail users. The total quantity of spam has leveled off slightly in recent years, and is no longer growing exponentially. Receiving spam is a common complaint of many Internet users. In fact, spam email has become a troublesome problem as individuals spreading spam email find easier ways to invade users’ email accounts, leading to the necessity of such tools as spam filters and spam blocker features. Spam is a term that refers to the unsolicited e-mails sent to a large number of e-mail users. The number of such e-mails is increasing day by day, as most companies now prefer to use e-mails for promoting their products. Because of these unsolicited e-mails, legitimate e-mails take a much longer time to deliver to their destination. The attachments sent through spam may also contain viruses. However, spam can be stopped by implementing spam filters on servers and e-mail clients. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fwhat-on-earth-is-email-spam.html&amp;title=What%20on%20Earth%20is%20Email%20Spam%3F"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/what-on-earth-is-email-spam.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Computer Investigation Process&#8230;</title>
		<link>http://cisspfix.com/computer-investigation-process.html</link>
		<comments>http://cisspfix.com/computer-investigation-process.html#comments</comments>
		<pubDate>Fri, 18 Sep 2009 04:34:04 +0000</pubDate>
		<dc:creator>cisspfix</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[CISSP]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[forensic]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[investigation]]></category>

		<guid isPermaLink="false">http://cisspfix.com/?p=50</guid>
		<description><![CDATA[&#8220;Necessity is the Mother of all Inventions&#8221;, sophistication of digital environment lead to the discovery of Computer Forensics. Computer Forensics is an investigative process of collecting and examining of electronic evidence to form a structured report which can be produced &#8230; <a href="http://cisspfix.com/computer-investigation-process.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcisspfix.com%2Fcomputer-investigation-process.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcisspfix.com%2Fcomputer-investigation-process.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>&#8220;Necessity is the Mother of all Inventions&#8221;, sophistication of digital environment lead to the discovery of Computer Forensics. Computer Forensics is an investigative process of collecting and examining of electronic evidence to form a structured report which can be produced in a court as a evidence. Computer Forensic is introduced when crime is facilitated either by using computer or on Computer or Network itself. Computer Forensic also deals with the issue, such as Privacy, Copy Infringement, and Software ownership. For the collection of Electronic Evidence, it is required to follow certain pre-established procedure and steps, which ensures the identity of culprit. By following such methodologies, computer crime investigation can be done effectively and efficiently. </p>
<p><strong>Investigating Computer Crimes</strong></p>
<p>If any forensic investigation involves Computer in one way or another, then the investigation is coined as Computer Forensic Investigation. Development of technology from the last two decades is so rapid that it made lot easier for criminals to hide information about their crimes, one advantage enjoyed by investigators is that any type of Computer Crime results in some type of clue and evidence stored on computer but still there are number of Cyber Crimes which requires Computer Forensic investigation, some of them are:</p>
<ul>
<li>Unauthorized access</li>
<li>Property Theft (misuse of information) </li>
<li>Forgery</li>
<li>Privacy breach </li>
<li>Computer fraud.</li>
<li>Child pornography</li>
</ul>
<p><strong>Methodology of Forensic Investigation </strong><br />
First and Foremost step of Investigation process is Complaint. Investigation will never going to occur if it remain un-noticed, unless appropriate authorities are not aware of the crime being committed, criminal gets away with crime. There are some fundamental steps involved in forensic investigation, </p>
<p><strong>Preparation (of the investigator, not the data)</strong></p>
<p>Computer Forensic Investigators must be prepared with the tools and procedures used during investigation, these tools include Hardware as well as Software which are used to secure evidence and data.</p>
<p><strong>Collection (the data) </strong></p>
<p>Next important step is to collect damaged data as efficiently as possible, damaged data typically includes deleted files, formatted hard disk, deleted partitions or any other form of electronic storage medium like compact disk, USB drives etc. Special care must be taken when handling computer evidence: most digital information is easily changed, and once changed it is usually impossible to detect that a change has taken place (or to revert the data back to its original state) unless other measures have been taken.</p>
<p><strong>Analysis </strong></p>
<p>This step involves proper examination and evaluation of gathered information. During analysis it is very important that the collected data and information aren&#8217;t modified in any way, otherwise property of data will change. Therefore it is very necessary to use tools that won&#8217;t modify data. Chiefly Forensic Analysis consists of manual review of material on the media, reviewing the Windows registry for suspect information, discovering and cracking passwords, keyword searches for topics related to the crime, and extracting e-mail and images for review.</p>
<p><strong>Reporting </strong></p>
<p>After the completion of Analysis, a detailed report is generated enlisting all possible evidences and information. This Report is produced as a legal evidence before court whenever required.</p>
<p><strong>The Role of Evidence </strong></p>
<p>Collection of Evidence is the sole reason behind the Forensic Investigation; therefore Evidence plays a vital role in Computer Forensic Investigation. The Digital Evidence should be properly studied, preserved and presented. These Evidences are presented in court during legal process and questioning. Collection of Evidence is done in several steps, first of which is Identification of Evidence followed by the Recovery of Evidence, this is accomplished viewing log files, recovering data using different forensic tools. One more important point which should be kept in mind during Investigation is security of Data, Digital Evidence and Data must be secured throughout the investigation.</p>
<p><strong>Volatile Evidence </strong></p>
<p>Data stored in temporary storage media [Random Access Memory(RAM), Cache Memory, Onboard memory of different peripherals like Graphics and video card etc ) are termed as Volatile Memory because data stored in it depends on the electricity for their existence, as soon as the system is powered off, stored data will be permanently vanished. It is therefore very important to collect such data first. </p>
<p><strong>Acquiring Evidence </strong></p>
<p>This is the next step of processing evidence. Acquisition process involves in making exact copy of digital evidence. It is very important that the original data isn&#8217;t altered, damaged or destroyed in doing so. </p>
<p><strong>Disk Imaging</strong></p>
<p>This technique is used to preserve the original evidence as it was seized. Disk imaging is different from back up of a disk in a way that while creating backup, only active files of a system are copied. Whereas during disk imaging exact replica of original disk is formed. </p>
<p><strong>Retaining Data and Timestamp:</strong> </p>
<p>Retaining the Date and Time of creation and modification of Data is a vital factor to be kept in mind in criminal issues. Timestamp in a file are very important evidence, since the timestamp is according to the system clock which is in turn depends on the time zone. It should always investigated that which time zone is configured on the system, it may be possible that criminal deliberately change the time zone so that the data does not co-relate with the real time.</p>
<p><strong>Investigating Company Policy Violations</strong> </p>
<p>Investigation Process of Companies are totally different from the other types of Investigations. Normally when Cyber crime occurs on house computers, police are called for proper investigation. In a Corporate World a team of some specialized skilled peoples are formed which is known as Incident Response Team. This team is responsible for finding the type of Cyber crime occurred and eventually contact police for further investigation, depending upon the type of crime occurred and what is found in investigation. This Incident Response Team also deal with the internal matter of the company like security breach by company employee, unauthorized access to company&#8217;s computer etc. It is not always necessary to include police investigation when policies are violated, sometime it is dealt by company itself by taking disciplinary action against the accused employee. But still Forensic Investigations is important because these procedures create a tighter case, thus leaving no point to argue the facts. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fcisspfix.com%2Fcomputer-investigation-process.html&amp;title=Computer%20Investigation%20Process%26%238230%3B"><img src="http://cisspfix.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://cisspfix.com/computer-investigation-process.html/feed</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
	</channel>
</rss>

