<?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>Tuts4Tech &#187; proxy</title>
	<atom:link href="http://tuts4tech.net/tag/proxy/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Sun, 18 Jul 2010 01:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Stopping SSH brute force attacks using iptables</title>
		<link>http://tuts4tech.net/2009/04/09/stopping-ssh-brute-force-attacks-using-iptables/</link>
		<comments>http://tuts4tech.net/2009/04/09/stopping-ssh-brute-force-attacks-using-iptables/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 11:08:52 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[asia]]></category>
		<category><![CDATA[brute]]></category>
		<category><![CDATA[force]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[wordlist]]></category>

		<guid isPermaLink="false">http://duffys-place.co.cc/?p=130</guid>
		<description><![CDATA[If your running a SSH server on the default port(22) you've probably noticed a lot of failed login attempts cause due to brute force attacks Adding the following to your IP tables will only allow 3 connections at once from any IP if it goes above 3 then that IP is locked out for 3minutes. [...]]]></description>
			<content:encoded><![CDATA[<p>If your running a SSH server on the default port(22) you've probably noticed a lot of failed login attempts cause due to brute force attacks</p>
<p>Adding the following to your IP tables will only allow 3 connections at once from any IP if it goes above 3 then that IP is locked out for 3minutes. At this stage the bot running the attack will either give up as its getting no reply from the SSH server or it will keep trying until it finishes its wordlist</p>
<pre class="brush: plain;">iptables -I INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set --name DEFAULT --rsource

iptables -I INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --update --seconds 180 --hitcount 4 --name DEFAULT --rsource -j DROP</pre>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/04/09/stopping-ssh-brute-force-attacks-using-iptables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Tunnel</title>
		<link>http://tuts4tech.net/2009/04/05/ssh-tunnel/</link>
		<comments>http://tuts4tech.net/2009/04/05/ssh-tunnel/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 00:27:02 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[socks]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[tunneling]]></category>

		<guid isPermaLink="false">http://duffys-place.co.cc/?p=62</guid>
		<description><![CDATA[Download Putty From Here Run Putty and insert your servers host name Expand ssh on the sidebar and select tunnels Check the Dynamic Box and in Source port enter a port e.g 3000 and then Press Add Press open and login to your ssh account. Open the event log if you want by holding down [...]]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="465" data="http://www.youtube.com/v/Fm1Nvj-yfPQ&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Fm1Nvj-yfPQ&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<ol>
<li>Download Putty From <a href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">Here</a></li>
<li>Run Putty and insert your servers host name</li>
<li>Expand ssh on the sidebar and select tunnels</li>
<li>Check the Dynamic Box and in Source port enter a port e.g 3000 and then Press Add</li>
<li>Press open and login to your ssh account. Open the event log if you want by holding down ctrl right clicking and then selecting event log</li>
<li>Open firefox and click on tools > Options</li>
<li>Click On Advanced and then select the networking tab</li>
<li>Click on the Setting button under connection</li>
<li>check the manual proxy configuration box</li>
<li>Across from socks host type in localhost and in the Port box type in the port you set for source port on the tunnel page in putty</li>
<li>Press Ok and exit options and you should be good to go</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/04/05/ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
