<?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>Hak5 - Technolust since 2005 &#187; Windows</title>
	<atom:link href="http://Hak5.org/tag/windows/feed" rel="self" type="application/rss+xml" />
	<link>http://Hak5.org</link>
	<description>Trust Your Technolust</description>
	<lastBuildDate>Thu, 17 May 2012 20:49:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Hak 1113 &#8211; Persistent SSH tunnels for Windows and Linux, Local vs Remote forwards and more</title>
		<link>http://Hak5.org/episodes/hak5-1113</link>
		<comments>http://Hak5.org/episodes/hak5-1113#comments</comments>
		<pubDate>Thu, 17 May 2012 20:49:56 +0000</pubDate>
		<dc:creator>Darren Kitchen</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[apache over ssh]]></category>
		<category><![CDATA[autossh]]></category>
		<category><![CDATA[clientalivemaxcount]]></category>
		<category><![CDATA[keepalive]]></category>
		<category><![CDATA[key authentication]]></category>
		<category><![CDATA[key pair]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[local forward]]></category>
		<category><![CDATA[myentunnel]]></category>
		<category><![CDATA[persistent ssh]]></category>
		<category><![CDATA[persistent tunnel]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key crypto]]></category>
		<category><![CDATA[public key cryptography]]></category>
		<category><![CDATA[remote forward]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[socks5]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ssh key pair]]></category>
		<category><![CDATA[tunne]]></category>
		<category><![CDATA[vnc over ssh]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4793</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLD226EA9BF23748D1&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=transparent" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1113"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1113&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
This time on the show, Local and Remote forwarding with SSH, Persistent connections in Linux with AutoSSH, Windows tunnels that don't quit with a GUI front-end for Plink and a whole lot of technolust. All that and more, this time on Hak5!
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1113/hak5--1113--persistent-ssh-tunnels-for-windows-and-linux--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1113/hak5--1113--persistent-ssh-tunnels-for-windows-and-linux--large.h264.mp4">Download MP4</a><br />
<span id="more-4793"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLD226EA9BF23748D1&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
<p><b>SSH Remote Forwarding: Relay local apache server through tunnel</b></p>
<blockquote><pre>
# install apache server
darren@dk10$ sudo apt-get install apache2
# browse to http://localhost
# Relay port 8080 on remote host to 80 on local host
darren@dk10$ ssh -R 8080:localhost:80 aardwolf@relay.wifipineapple.com
# browse to http://relay.wifipineapple.com:8080
</pre>
</blockquote>
<p><b>SSH Local Forward: Relay remote VNC server through tunnel</b></p>
<blockquote><pre>
# install vnc client
darren@dk10$ sudo apt-get install vncviewer
# vnc to server without SSH (bad idea)
darren@dk10$ vncviewer rrs5204q6n.hak5.org:1
# setup SSH local forward
darren@dk10$ ssh -L 5901:localhost:5901 aardwolf@rrs5204q6n.hak5.org
# vnc to server through ssh tunnel
darren@dk10$ vncviewer localhost:1
</pre>
</blockquote>
<p><b>Maintaining Persistent SSH tunnels in Linux</b></p>
<p>AutoSSH is a simple and effective utility for monitoring and maintaining persistent SSH connections, restarting the session as necessary. It can be downloaded from  <a href="http://www.harding.motd.ca/autossh/" target="_blank">http://www.harding.motd.ca/autossh/</a> and is available for most *nix platforms. On Ubuntu:</p>
<blockquote><pre>
# Install autossh
darren@dk10$ sudo apt-get install -y autossh
# The autossh -M option specifies which port to monitor the connection from
# The -N option is a regular openssh parameter which is passed from autossh to ssh, specifying that there is no remote command to execute.
# The & tells the shell, bash in our example, to run the command in the background.
darren@dk10$ autossh -M 20000 -N aardwolf@relay.wifipineapple.com &
# To find the process ID where autossh is running
darren@dk10$ pidof autossh
# And finally to stop autossh
darren@dk10$ kill `pidof autossh`
</pre>
</blockquote>
<p><b>Maintaining Persistent SSH tunnels in Linux</b></p>
<ul>
<li>First of all we need to cover Plink. Short for Putty Link, the plink utility is the command-line equivalent to Putty on Windows. We'll be using this today along with another to in order to keep an SSH tunnel persistent.
<li>Here's an example of a plink SSH tunnel. We start by launching pageant and entering our passphrase. Now that our private key is in memory we can use plink to start an SSH tunnel from the command line.
<li>So open up CMD, navigate to where your plink utility is. For me that's by running "cd putty"
<li>Now run plink.exe -- you'll be greeted by a whole list of options for this command line utility.
<li>To start a simple Dynamic SOCKS proxy I'll enter:
<li>plink -D 8080 snubsie@peanut.hak5.org -agent
<li>The -D says make it a Dynamic SOCKS proxy on my local port 8080 and the -agent says to use pageant for the private key file.
<li>And there we go, a command to start our SOCKS proxy for all our tunneling enjoyment. Of course if the SSH connection is dropped we'll be all sad pants -- especially if we're using the tunnel to watch the BBC or something.
<li>And while autossh *is* available for Windows, sort of, it isn't exactly the easiest to setup. AutoSSH, the Linux program, can be run in Windows using Cygwin -- a Linux environment for Windows. If that suits your fancy, have at it. There's a decent <a href="http://www.matthanger.net/2008/04/creating-persistent-ssh-tunnels-in.html" target="_blank">tutorial for setting that up</a>.
<li>That said I'm more interested in using native Windows programs. Thankfully a similar setup to autossh can be achieved using plink with the help of a little utility called MyEnTunnel.
<li>Short for My Encrypted Tunnel, MyEnTunnel is a windows utility that lives in the system tray, or can be run as an NT service in the background, that quietly watches Plink sessions and restarts them as necessary.
<li>MyEnTunnel is available from http://nemesis2.qx.net/pages/MyEnTunnel as freeware.
</ul>

]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1113/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hak5 1112 &#8211; Relay two firewalled devices through a persistent SSH proxy</title>
		<link>http://Hak5.org/episodes/hak5-1112</link>
		<comments>http://Hak5.org/episodes/hak5-1112#comments</comments>
		<pubDate>Thu, 10 May 2012 09:12:58 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[autossh]]></category>
		<category><![CDATA[clientalivemaxcount]]></category>
		<category><![CDATA[keepalive]]></category>
		<category><![CDATA[key authentication]]></category>
		<category><![CDATA[key pair]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nat]]></category>
		<category><![CDATA[nat traversal]]></category>
		<category><![CDATA[network address translation]]></category>
		<category><![CDATA[persistent ssh]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key crypto]]></category>
		<category><![CDATA[public key cryptography]]></category>
		<category><![CDATA[relay proxy]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[socks5]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ssh key pair]]></category>
		<category><![CDATA[Wifi Pineapple]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4785</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLAC30AB8C5D17FCB5&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=transparent" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1112"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1112&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Traversing NAT firewalls couldn't be easier with a well crafted SSH proxy. This week Darren and Shannon break down reverse shells and persistence using a WiFi Pineapple and some autossh-fu. Plus, SSHFS GUIs for Linux, ClientAliveMaxCounts, Putty keys without Pageant and more!
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1112/hak5--1112--how-to-use-relay-proxies-with-ssh--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1112/hak5--1112--how-to-use-relay-proxies-with-ssh--large.h264.mp4">Download MP4</a><br />
<span id="more-4785"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLAC30AB8C5D17FCB5&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
<p>In this episode Darren and Shannon break down reverse shells via proxy. The network scenario is that of two devices on disparate networks who's firewalls won't allow inbound connections. Typically this is a NAT router that you haven't access to. Assuming both devices can create outbound connections, which is commonly the case, we'll configure an SSH server to act as a relay for our reverse shell.</p>
<p>In this scenario three hosts are involved. First is our <a href="http://www.hakshop.com" target="_blank">WiFi Pineapple</a>, which is the device we'll be getting the reverse shell from -- meaning we'll be able to login to a terminal on this machine. In our example it is connected to the Internet by way of a 3G/4G modem which our carrier firewalls. Using <a href="http://www.harding.motd.ca/autossh/">AutoSSH</a> -- a tool to maintain a persistent SSH connection -- we establish a connection back to our second host, relay.hak5.org. In turn our third host, my laptop (hostname: dk10) connects to relay.hak5.org as well.</p>
<blockquote><pre>
## browse to 172.16.42.1/ssh.php (WiFi Pineapple) and Generate Key
##SSH Into WiFi Pineapple
## Establish connection to relay adding key fingerprint to known_hosts on pineapple
root@pineapple# ssh user@relay.wifipineapple.com
## Refresh ssh.php showing known_hosts. Copy RSA key string from "rsa" to "root@pineapple"
## From new session on relay, paste RSA key into authorized_keys file
user@relay$ echo "<rsa_key>" >> ~/.ssh/authorized_keys
## Logout of the relay
user@relay$ exit
## Demonstrate how without the -i option ssh on the pineapple will still prompt for password
root@pineapple# ssh user@relay.wifipineapple.com #this will prompt for passwd
## Demo how to properly SSH into a host with a dropbear RSA key
root@pineapple# ssh user@relay.wifipineapple.com -i /etc/dropbear/id_rsa
user@relay$
## Configure SSHD to allow TCP Forwarding **Necessary for Server Admin Only**
## Become root
user@relay$ sudo -i
## Add settings to sshd config file
root@papaya# echo "AllowTcpForwarding yes" >> /etc/ssh/sshd_config
root@papaya# echo "GatewayPorts yes" >> /etc/ssh/sshd_config
## Restart SSH Daemon
root@papaya# /etc/init.d/ssh restart
## Logout of root
root@papaya# exit
## Logout of relay completely
user@relay$ exit
## Update SSH Connection Command from 172.16.42.1/ssh.php to reflect username and host
## Enable SSH on boot and SSH keepalive, then click Connect
## From localhost (your laptop) SSH into the newly configured WiFi Pineapple via the relay
## Demonstrate technique one: SSH from SSH (not as sexy)
darren@dk10$ ssh user@relay.wifipineapple.com
user@relay$ ssh root@localhost -p 4255
## Logout of both pineapple and relay
root@pineapple# exit
user@relay$ exit
## Demonstrate technique two: Single SSH session
darren@dk10$ ssh root@relay.wifipineapple.com -p 4255
</pre>
</blockquote>
<p><b>SSH and SOCKS5 Proxy Follow-up</b></p>
<p>MetalX1000 writes regarding SSHFS from the command line in Linux</p>
<blockquote><p>OK, I love that you showed how to do it this way. But,﻿ for the Shannon's of the world who need a GUI, you can always just open Nautilus and in the location bar type ""sftp://user@server"" and then make a short cut to that in the left side bar of Nautilus.</p></blockquote>
<p>Thanks for the tip MetalX1000. We demonstrated on the show one more technique. From Gnome2's "Places" menu click Connect to Server and select SSH.</p>
<p>Spectrakid writes regarding setting up an SSH Server on Linux and "apt-get install ssh"</p>
<blockquote><p>I﻿ thought you needed the ""openssh-server"" package to set up a ssh server in Debian based systems........ssh is a metapackage that simply depends on openssh-server & openssh-client</p></blockquote>
<p>There are about as many ways to skin a cat in Linux as there are dependency issues ;-)</p>
<p>wirerat1 writes regarding keeping connections alive</p>
<blockquote><p>ClientAliveCountMax 0 does not﻿ do what he thinks it does.</p></blockquote>
<p>True, it doesn't do what it claims to do. </p>
<p>From the MAN Page:</p>
<blockquote><p>ClientAliveCountMax sets the number of client alive messages (see below) which may be sent without sshd receiving any messages back from the client. If this threshold is reached while client alive messages are being sent, sshd will disconnect the client, terminating the session.  It is important to note that the use of client alive messages is very different from TCPKeepAlive (below). The client alive messages are sent through the encrypted channel and therefore will not be spoofable.  The TCP keepalive option enabled by TCPKeepAlive is spoofable.         The client alive mechanism is valuable when the client or server depend on knowing when a connection has become inactive.<br />
The default value is 3.  If ClientAliveInterval (see below) is set to 15, and ClientAliveCountMax is left at the default, unresponsive ssh clients will be disconnected after approximately 45 seconds.
</p></blockquote>
<p>Meaning a ClientAliveCountMax 0 should continue sending Keep Alive messages over the SSH connection for every ClientAliveInterval forever, but in practice, it doesn't. I've started using 99999 as my value of choice, however I'm sure there's a better way.</p>
<p>Steven writes regarding Pageant and Putty</p>
<blockquote><p>In Putty you don't need the pageant program to use the private key. Select your profile and hit load so that you can edit the profile. On the right go to SSH -> Auth. There you will find ""Private file for authentication"", hit browse and select your private key. Go back to Session. Select your profile and hit save. Next time you open a connection putty will automatically use the key. Note: The key will not be stored in memory so you'll need to enter the passphrase each time you connect to the server.</p></blockquote>

]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1112/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hak5 1111 &#8211; Roll your own Secure Cloud Storage with SSHFS &#8211; Secure Shell File System</title>
		<link>http://Hak5.org/episodes/hak5-1111</link>
		<comments>http://Hak5.org/episodes/hak5-1111#comments</comments>
		<pubDate>Wed, 02 May 2012 11:12:59 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[file system]]></category>
		<category><![CDATA[file system user space]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[fuse]]></category>
		<category><![CDATA[key authentication]]></category>
		<category><![CDATA[key pair]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[mount remote file system]]></category>
		<category><![CDATA[mount remote filesystem]]></category>
		<category><![CDATA[mount remote fs]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key crypto]]></category>
		<category><![CDATA[public key cryptography]]></category>
		<category><![CDATA[remote file system]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ssh key pair]]></category>
		<category><![CDATA[sshfs]]></category>
		<category><![CDATA[user space]]></category>
		<category><![CDATA[userland]]></category>
		<category><![CDATA[virtual file system]]></category>
		<category><![CDATA[virtual filesystem]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4770</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLAA2FA407036DED52&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=transparent" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1111"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1111&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Continuing with SOCKS5, SSH, Public Key Pairs and fingerprints, Darren and Shannon use SSH to create a secure remotely mounted network filesystem with implementations in both Windows and Linux.
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1111/hak5--1111--how-to-setup-sshfs--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1111/hak5--1111--how-to-setup-sshfs--large.h264.mp4">Download MP4</a><br />
<span id="more-4770"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PLAA2FA407036DED52&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
Using the SSHFS utility we're able to mount a remote filesystem. Since we already have a secure tunnel to our server over SSH, which we've been thus far using as a SOCKS5 proxy, we're now able to store files securely online with the same mechanism. Using FUSE, or File System in User Space, we're able to achieve this without the need to load kernel modules -- a process which would require superuser privileges.</p>
<p><b>SSHFS on Linux</b></p>
<p>As Darren demonstrates in Linux the setup is quite simple. Begin by installing SSHFS. From ubuntu that's "<i>sudo apt-get install sshfs</i>". Once installed your user will need to be added to the fuse group, so issue "<i>sudo gpasswd -a $USER fuse</i>". The $USER is an environment variable which will be replaced with your username on execution. Issue "<I>whoami</i>" if you're not sure of your username.</p>
<p>Once SSHFS has been installed and your user added to the fuse group you're nearly ready to mount the remote file system. Begin by making a directory. This directly will act as the mount point for the remote file system. Issue "<I>sudo mkdir ~/sshfs</i>" to make an sshfs directory in your user's home.</p>
<p>Finally we're ready to mount the remote file system. If you've been following along thus far and have setup authentication key pairs for your SSH server the following should be pretty seamless. Issue "<i>sshfs -o idmap=user username@host: ~/sshfs</i>". Replace username and host as appropriate. The colon (:) after the host specifies the location on the remote server to mount. For example, if permissions allowed, /var/www/ could be mounted. Leaving the location as colon (:) defaults to the user's home directory. Now navigate to ~/sshfs on your local system and behold the remote file system!</p>
<p><b>SSHFS on Windows</b></p>
<p>As Shannon demonstrates, <a href="http://www.expandrive.com/" target="_blank">ExpanDrive</a> offers SSHFS for Windows. In addition ExpanDrive will mount virtual drives from Amazon S3 and even FTP. The software is $40 with a 30-day trial. It supports SSH public keys directly or with pageant.</p>
<p>Youtube Description (No HTML):</p>
<p>Continuing with SOCKS5, SSH, Public Key Pairs and fingerprints, Darren and Shannon use SSH to create a secure remotely mounted network filesystem with implementations in both Windows and Linux.</p>
<p>Using the SSHFS utility we're able to mount a remote filesystem. Since we already have a secure tunnel to our server over SSH, which we've been thus far using as a SOCKS5 proxy, we're now able to store files securely online with the same mechanism. Using FUSE, or File System in User Space, we're able to achieve this without the need to load kernel modules -- a process which would require superuser privileges.</p>
<p>If you're into Hak5 you'll love our new show by hosts Darren Kitchen and Shannon Morse. Check out http://www.revision3.com/haktip</p>
<p>Whether you're a beginner or a pro, http://www.revision3.com/haktip is essential viewing for current and aspiring hackers, computer enthusiasts, and IT professionals. With a how-to approach to all things Information Technology, HakTip breaks down the core concepts, tools, and techniques of Linux, Wireless Networks, Systems Administration, and more.</p>
<p>And let's not forget to mention that you can follow us on http://www.twitter.com/hak5 and http://www.facebook.com/technolust, http://revision3.com/hak5/follow to the show and get all your Hak5 goodies, including the infamous wifi-pineapple over at http://hakshop.com . If you have any questions or suggestions please feel free to contact us at feedback@hak5.org.
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1111/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Hak5 1110 &#8211; SSH Public Key Fingerprints, Windows SSH Servers and Linux Key Pair Exchange</title>
		<link>http://Hak5.org/episodes/hak5-1110</link>
		<comments>http://Hak5.org/episodes/hak5-1110#comments</comments>
		<pubDate>Thu, 26 Apr 2012 22:09:10 +0000</pubDate>
		<dc:creator>Darren Kitchen</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[asymmetric key cryptography]]></category>
		<category><![CDATA[authorized_keys]]></category>
		<category><![CDATA[authorized_keys2]]></category>
		<category><![CDATA[fingerprint]]></category>
		<category><![CDATA[gpg]]></category>
		<category><![CDATA[key authentication]]></category>
		<category><![CDATA[key based authentication]]></category>
		<category><![CDATA[key fingerprint]]></category>
		<category><![CDATA[key pair]]></category>
		<category><![CDATA[known_hosts]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[pageant]]></category>
		<category><![CDATA[pgp]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[protocol layer]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key crypto]]></category>
		<category><![CDATA[public key cryptography]]></category>
		<category><![CDATA[putty key]]></category>
		<category><![CDATA[puttygen]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[socks5]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ssh key pair]]></category>
		<category><![CDATA[ssh protocol]]></category>
		<category><![CDATA[sshd_config]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4760</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL89CFD14144F45625&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=transparent" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1110"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1110&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Continuing with Proxies, SOCKS5 and SSH, Darren and Shannon cover SSH Public Key Fingerprints, then build a free Windows SSH Server and configure Key Pairs for a Linux client.
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1110/hak5--1110--how-to-do-the-win-ssh-dance--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1110/hak5--1110--how-to-do-the-win-ssh-dance--large.h264.mp4">Download MP4</a><br />
<span id="more-4760"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL89CFD14144F45625&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
<p><b>SSH Public Key Fingerprints and known_hosts</b></p>
<p>Typical SSH Servers user 128-bit MD5 hashes as <a href="http://en.wikipedia.org/wiki/Public_key_fingerprint" target="_blank">Public Key Fingerprints</a>. These are used to verify the authenticity of a server. These key fingerprints are short sequences of bytes used to authenticate a much longer public key. Like we discussed last week regarding key pairs for user authentication, SSH servers have key pairs for server authentication. </p>
<p>On a Linux OpenSSH server for example these key pairs will be found in /etc/ssh/*key*. The public keys will be world readable while the private keys can only be read by a superuser. </p>
<p>On a Linux client for example the key fingerprints of remembered servers are stored in ~/.ssh/known_hosts. Since SSH version 4 the username and hostnames associated with these servers are hashed.</p>
<p>To remotely verify the key fingerprint of an SSH server</p>
<blockquote><pre>
ssh-keyscan -t rsa,dsa REMOTEHOSTNAME > /tmp/ssh_host_rsa_dsa_key.pub
ssh-keygen -l -f /tmp/ssh_host_rsa_dsa_key.pub
</pre>
</blockquote>
<p>Alternatively, on the remote server the key fingerprints can be found by:</p>
<blockquote><pre>
cd /etc/ssh
ls *key*
cat ssh_host_key # this is the private key
# permission will be denied if not superuser
cat ssh_host_key.pub # this is the public key
ssh-keygen -lf ssh_host_rsa_key.pub
# field 1 = bit length of key
# field 2 = fingerprint of key
# field 3 = name of key
</pre>
</blockquote>
<p><b>Setting up a Windows SSH Server with Bitvise (+ A few other software recommendations)</b></p>
<p>Setting up the SSH Server Windows Using BitVise WinSSHd</p>
<ul>
<li>Download BitVise</p>
<li>Creating a server on laptop or pc at home...
<li>Auto config router (UPnP) - BAD!! No Universal Plug-n-Play
<li>Open Port to Any Computer
<li>Uncheck 'Allow Any Logon', Click add.
<li>Enter Username - Run 'whoami' from CMD to find out your username.
<li>Want to add account for a friend? Do a virtual account.</ul>
<p><b>SSH Servers for Windows</b></p>
<p>FreeSSHd - http://www.freesshd.com/</p>
<ul>
<li>Nice but lacks advanced security controls. The server starts<br />
sessions with security in the context of the service itself, meaning<br />
since it needs to be run as administrator or system those are the<br />
privileges available to the users.</p>
<li>Not open source so it can't be vetted, improved upon by the community
<li>Hasn't been updated since 2009
<li>Difficult to get working on Windows 7
<li>Free and easy to setup</ul>
<p>Bitvise WinSSHD - http://www.bitvise.com/winsshd</p>
<ul>
<li>Free for non-commercial / personal use</p>
<li>License costs $100, unlocks Active Directory feature for enterprises
<li>Easy to install and update, nice GUI
<li>Supports Active Directory, Kerberos or it's own user database
<li>Works fine in Windows 7
<li>Supports AES 128 and 256 bit encryption
<li>Not open source so it can't be vetted, improved upon by the community
<li>Can be configured to use Power Shell instead of CMD as the default<br />
shell for users</p>
<li>Supports OpenSSH public key files
<li>Configure account and group permissions per IP and DNS
<li>Automation API, logging</ul>
<p>OpenSSH for Windows - SSHWindows.sf.net</p>
<ul>
<li>Free, open source implementation of OpenSSH with Cygwin</p>
<li>Hasn't been updated since 2004
<li>Enough said</ul>
<p>Copssh - https://www.itefix.no/i2/copssh</p>
<ul>
<li>Package of portable OpenSSH for Cygwin</p>
<li>GUI for administartion</ul>
<p>KpyM SSH Server - http://www.kpym.com/2/kpym/index.htm</p>
<ul>
<li>Free, open source</p>
<li>Uses Windows identification (Windows user accounts)
<li>Automated install and setup
<li>Nag screen. Single license is $35</ul>
<p><b>Setting up Key Pair Authentication in Linux with OpenSSH</b></p>
<p>On the remote host:</p>
<blockquote><pre>
mkdir .ssh
chmod 700 .ssh
cd .ssh
</pre>
</blockquote>
<p>On the local host:</p>
<blockquote><pre>
ssh-keygen -t rsa
scp ~/.ssh/id_rsa.pub user@host:.ssh/authorized_keys2
</pre>
</blockquote>
<p>Back on the remote host:</p>
<blockquote><pre>
ls -la authorized_keys2
chmod 600 authorized_keys2
exit
</pre>
</blockquote>
<p>On the local host:</p>
<blockquote><pre>
ssh user@host
</pre>
</blockquote>
<p><b>Bonus: Transfer SSH public keys from one machine to another</b></p>
<p>Now that we've done it the long way, let's take a moment to appreciate a convenient shortcut -- ssh-copy-id.</p>
<pre>
<blockquote>
ssh-keygen; ssh-copy-id user@host; ssh user@host
</pre>
</blockquote>

]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1110/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Hak5 1109 &#8211;  Proxies, Linux SSH Servers, Windows Clients &amp; Public Keys</title>
		<link>http://Hak5.org/episodes/hak5-1109</link>
		<comments>http://Hak5.org/episodes/hak5-1109#comments</comments>
		<pubDate>Sat, 21 Apr 2012 20:29:00 +0000</pubDate>
		<dc:creator>Darren Kitchen</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[asymmetric key cryptography]]></category>
		<category><![CDATA[authorized_keys]]></category>
		<category><![CDATA[authorized_keys2]]></category>
		<category><![CDATA[gpg]]></category>
		<category><![CDATA[key authentication]]></category>
		<category><![CDATA[key based authentication]]></category>
		<category><![CDATA[key pair]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[pageant]]></category>
		<category><![CDATA[pgp]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[protocol layer]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[public key crypto]]></category>
		<category><![CDATA[public key cryptography]]></category>
		<category><![CDATA[putty key]]></category>
		<category><![CDATA[puttygen]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[socks5]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[ssh key pair]]></category>
		<category><![CDATA[ssh protocol]]></category>
		<category><![CDATA[sshd_config]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4745</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL75E623B81DFC9AFB&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=transparent" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1109"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1109&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Building on top of last week's episode on Proxies, SOCKS5 and SSH we're covering Authentication via Public Key Cryptography, setting up an SSH server in Linux and properly configuring a client in Windows.
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1109/hak5--1109--public-keys-proxies-ssh-servers--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1109/hak5--1109--public-keys-proxies-ssh-servers--large.h264.mp4">Download MP4</a><br />
<span id="more-4745"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL75E623B81DFC9AFB&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
<b>Breaking down SSH-2 Protocol Layers</b></p>
<p>Before getting into public key crypto we should first take a moment to gather a basic understanding of the SSH-2 protocol layers. In a nutshell the three layers of SSH-2 are:</p>
<p>The first is the Transport Layer. This layer is responsible for handling key exchanges, the servers authenticity (server authentication), compression, encryption and re-keying (typically after 1 GB of traffic or 1 Hour have elapsed). We'll get into more detail on this next week when we focus on key fingerprints.</p>
<p>Second is the User Authentication Layer, which handles client authentication, or authentication of the user trying to log-in. This process is client driven, meaning that the connecting client chooses which method they would like to authenticate with. Accepted methods vary by server but typically these include: </p>
<ul>
<li>Password Authentication - we used this last week by interactively typing in our password at the prompt when logging in</p>
<li>Public Key - this is the method we'll be using today and going forward
<li>Keyboard Interactive - a process that can be used for one-time-passwords.
<li>GSSAPI (Generic Security Services Application Programming Interface) - this is actually a library used by commercial vendors, usually to implement single-sign-on services in enterprises and integrating with existing security services such as NTLM or Kerberos.
</ul>
<p>Finally there is the Connection Layer. This layer defines the channels, or asymmetric communications supported by SSH, including:</p>
<ul>
<li>Shell Channel for Shells, SFTP, SCP</li>
<li>Direct-TCP/IP Channel for Client-to-Server forwards
<li>Forwarded-TCP/IP Channel for Server-to-Client forwards
</ul>
<p><b>Understanding Public Key Cryptography</b></p>
<p>Authentication via Asymmetric Key Cryptography (aka Public Key Crypto) is the method for generating a key pair -- both public and private (aka secret) -- and publishing one or the other in order to initiate secure communication. In our example we'll be protecting our private key on the client while publishing the public key on the SSH server. With this setup anything encrypted with the public key can be decrypted with our own private key. The oversimplification of this is that the key pairs are linked mathmatically allowing for encryption with the public key and decryption with the private key. The idea is that it's impractical to figure out the private key based on only knowledge of the public key. This is the basis for SSL, PGP, GPG, Bitcoin and many other protocols.</p>
<p>SSH-2 supports at least two methods for Public Key authentication</p>
<ul>
<li>RSA Key Pairs, which are named after creators Rivest, Shamir and Adleman and published in 1978 is an algorithm based on the difficulty of factoring large integers. Again the oversimplification is that the public key is based on the product of two large primes (along with an aux value) and the private key is derived from prime factors used to create the public key.</p>
<li>DSA Key Pairs, or Digital Signature Algorithm, have been a Federal Information Processing Standard since 1993. Originally pantented by former NSA employee David Kravitz this technology is now freely available for anyone to use worldwide.
</ul>
<p><b>Setting up a Linux OpenSSH Server</b><br />
On a Debian based Linux machine setting up ssh can be as simple as issuing "sudo apt-get install ssh". In this segment Darren goes over some of the configuration lines you would find useful to modify in /etc/ssh/sshd_config.</p>
<blockquote><pre>
AllowTcpForwarding yes
GatewayPorts       yes
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      %h/.ssh/authorized_keys
AllowUsers bob alice
PermitRootLogin no
Protocol 2
Port 222
LoginGraceTime 1m
ListenAddress
ClientAliveInterval 60
ClientAliveCountMax 0
</pre>
</blockquote>
<p>Be sure to restart the SSH deamon after editing the configuration. stop ssh;start ssh;service ssh restart;/etc/init.d/ssh restart #one of these should do it! :)</p>
<p><b>SSH Key Authentication On Windows with Putty for a Linux Server</b></p>
<p>This'll create key pair- an authorization to log on to server for authentication. Begin by downloading the Putty KeyGen tool. Click Generate and move mouse to generate key pair, and save both. Now open the server via Putty. </p>
<p>On the server go ahead and create a user if you haven't already done so. Typically this is achieved using the "adduser username" then "passwd username" commands.</p>
<p>Now, while logged in as your user, make a directory called .ssh in the your home. For example "mkdir ~/.ssh"</p>
<p>You'll want to change the mode to 700 so that only you have access to it. In the world of Unix there are 3 levels of permissions for files and directories. The Owner, Groups and World (everyone). The first 10 characters are the file's attributes. The first character represents what type of file it is. If it's a dash (-) it's a regular file. A (d) represents a directory, and there are a few others for special stuff like symbolic links. The next 9 characters specify the Read (r), Write (w) and Execute (x) permissions for the file's Owner, Groups and World (everyone). Change the mode of the directory with "chmod 700 .ssh/" The "chmod" command stands for Change Mode and allows you to easily modify a file or directory's permissions. Chmod will accept an octal representation of the modes. We're not going to get into them all but in this case 700 changes the file to be Readable, Writeable and Executable by the file's Owner, and nothing else for any Groups and the World.</p>
<p>Next change to the newly created directory with "cd .ssh" and create a file called authorized_keys2 with the public key on one line saved in file. Add ""ssh-rsa "" to the beginning.</p>
<p>Finally you'll want to again change the mode of the file so that only you can read and write to it. In this case the command would be "chmod 600 authorized_key2".</p>
<p>Now back on the Windows machine ppen pageant.exe and select 'add key'. Add the private key created in the initial setup. Pageant works as a passphrase keeper. With Pageant in memory and your private key loaded go ahead and test your connection. Just as before login with putty being sure to include "username@" before the hostname in the connection dialog.</p>
<p>You should now login without a password needed! Hooray!
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1109/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Hak5 1104 &#8211; IRC Bouncers and How to protect Windows from SAM attacks</title>
		<link>http://Hak5.org/episodes/hak5-1104</link>
		<comments>http://Hak5.org/episodes/hak5-1104#comments</comments>
		<pubDate>Thu, 15 Mar 2012 06:35:52 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 11]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[authenticator keys]]></category>
		<category><![CDATA[Bouncer]]></category>
		<category><![CDATA[Internet Relay Chat]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[sam]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Security Account Manager]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[Syskey]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[virtual private server]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[yubikey]]></category>
		<category><![CDATA[ZNC]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4598</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL6164DE8746582CD5&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#038;wmode=Opaque" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1104"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1104&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
This time on the show, maintaining persistence and privacy on IRC with your very own bouncer - Darren explains. Then setting up simple 2-factor authentication in Windows. Plus why VIM is better than VI, or was that Emacs? All that and much more this time on Hak5!
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1104/hak5--1104--nyanprotocal--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1104/hak5--1104--nyanprotocal--large.h264.mp4">Download MP4</a><br />
<span id="more-4598"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/videoseries?list=PL6164DE8746582CD5&#038;hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&amp;wmode=Opaque" frameborder="0" allowfullscreen></iframe></div>
If you're into Hak5 you'll love our new show by hosts Darren Kitchen and Shannon Morse. Check out <a href="http://www.revision3.com/haktip">HakTip</a>!</p>
<p>Whether you're a beginner or a pro, <a href="http://www.revision3.com/haktip">HakTip</a> is essential viewing for current and aspiring hackers, computer enthusiasts, and IT professionals. With a how-to approach to all things Information Technology, HakTip breaks down the core concepts, tools, and techniques of Linux, Wireless Networks, Systems Administration, and more</p>
<p>And let's not forget to mention that you can follow us on <a href="http://www.twitter.com/hak5/" target="_blank">Twitter</a> and <a href="http://www.facebook.com/technolust/" target="_blank">Facebook</a>, <a href="http://revision3.com/hak5/subscribe" target="_blank">Subscribe</a> to the show and get all your Hak5 goodies, including the infamous <a href="http://hakshop.com/collections/frontpage/products/wifi-pineapple" target="_blank">WiFi Pineapple</a> over at <a href="http://hakshop.com/" target="_blank">HakShop.com</a>. If you have any questions or suggestions please feel free to contact us at <a href="mailto:feedback@hak5.org">feedback@hak5.org</a>.
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1104/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>HakTip 52 &#8211; How to Get Linux with Get Linux</title>
		<link>http://Hak5.org/episodes/haktip-52</link>
		<comments>http://Hak5.org/episodes/haktip-52#comments</comments>
		<pubDate>Thu, 01 Mar 2012 15:46:37 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[HakTip]]></category>
		<category><![CDATA[dev-fire]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[getlinux]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[sourceforge]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4608</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube.com/embed/VZQo1La4M1w" frameborder="0" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhaktip-52"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhaktip-52&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
On today's episode of HakTip we're checking out Get Linux, an ISO downloader for Windows.
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0052/hak5--haktip--0052--linuxgetlinux--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0052/hak5--haktip--0052--linuxgetlinux--large.h264.mp4">Download MP4</a><br />
<span id="more-4608"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube.com/embed/VZQo1La4M1w" frameborder="0" allowfullscreen></iframe>/div></p>
<a href="http://getlinux.sourceforge.net/" target="_blank">Get Linux</a> is a free and open source portable tool made by Dev-Fire used to obtain the newest and coolest in the Linux distro world. It compiles over 100 different Linux distros into one handy list so you don't have to go searching all over the internets every time you want to find an ISO file for a certain OS. I know there are a lot of tools out there for ISO downloads and portable distros but what I like about this one is the fact that it's updated monthly with new OS's and upgrades, the GUI is customizable and easy to use, and duh - it's portable. This is a simple program to make your life a little easier, and it's specifically for Windows machines. </p>
<p>The program seems to run pretty fast, and the list of Linux distros is super long- there are a ton in here that I've never heard of (great way to delve into new distros!). In my test, I downloaded Caine which is about 1/2 a Gig. It took about 5 minutes on my ISP. ISO's download into the Get Linux Download folder. Once done, you can take your newly downloaded ISO and fire up Unetbootin or another program similar to that and start up your new OS!</p>
<p>Do you have a different tool for Linux distros? Hit us up -- <a href="mailto:tips@hak5.org">tips@hak5.org</a>, or simply leave a comment below.</p>
<p>And be sure to check out our sister show, <a href="http://www.hak5.org" target="_blank">Hak5</a> for more great stuff just like this.</p>
<p>http://getlinux.sourceforge.net/ is a free and open source portable tool made by Dev-Fire used to obtain the newest and coolest in the Linux distro world. It compiles over 100 different Linux distros into one handy list so you don't have to go searching all over the internets every time you want to find an ISO file for a certain OS. I know there are a lot of tools out there for ISO downloads and portable distros but what I like about this one is the fact that it's updated monthly with new OS's and upgrades, the GUI is customizable and easy to use, and duh - it's portable. This is a simple program to make your life a little easier, and it's specifically for Windows machines. </p>
<p>The program seems to run pretty fast, and the list of Linux distros is super long- there are a ton in here that I've never heard of (great way to delve into new distros!). In my test, I downloaded Caine which is about 1/2 a Gig. It took about 5 minutes on my ISP. ISO's download into the Get Linux Download folder. Once done, you can take your newly downloaded ISO and fire up Unetbootin or another program similar to that and start up your new OS!</p>
<p>Do you have a different tool for Linux distros? Hit us up -- tips@hak5.org, or simply leave a comment below.<br />
And be sure to check out our sister show, http://www.hak5.org for more great stuff just like this.
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/haktip-52/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HakTip 50 &#8211; Update All of Your Programs at Once With AppUpdater!</title>
		<link>http://Hak5.org/episodes/haktip-50</link>
		<comments>http://Hak5.org/episodes/haktip-50#comments</comments>
		<pubDate>Fri, 03 Feb 2012 20:00:45 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[HakTip]]></category>
		<category><![CDATA[appupdater]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[nabber]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4509</guid>
		<description><![CDATA[<iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/BTOgQA5X-WQ?hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&#38;wmode=Opaque" frameborder="0" wmode="transparent" allowfullscreen></iframe>]]></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%2FHak5.org%2Fepisodes%2Fhaktip-50"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhaktip-50&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Ever wish you could just update all of your programs at once instead of when they give you a popup to do so? You can with this Windows program similar to apt-get upgrade in Linux, called AppUpdater.
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0050/hak5--haktip--0050--autoupdateapps--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0050/hak5--haktip--0050--autoupdateapps--large.h264.mp4">Download MP4</a><br />
<span id="more-4509"></span> </p>
<div align="center"><iframe width="640" height="360" src="http://www.youtube-nocookie.com/embed/BTOgQA5X-WQ?hl=en_US&#038;hd=1&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0&amp;wmode=Opaque" frameborder="0" wmode="transparent" allowfullscreen></iframe></div>
I hate it when I want to open a program and move on with my life only to be hit with a popup saying the program needs to be updated... And then I put it off for two months and see the popup every time. It's annoying! <a href="http://www.nabber.org/projects/appupdater/" target="_blank">AppUpdater</a> was made for problems like this. It gives a user the same functionality you'd get with apt-get upgrade in Linux.</p>
<p><b>Some features include:</p>
<p><b>Automatic upgrades, USB support, cross platform functionality, proxy support, ability to create your own repositories, a command line interface or GUI, etc.</p>
<p><b>It's also free and open source :)</p>
<p><b>Now I've got it installed on my netbook and if I click "New (Not Installed)", it'll give me a list of supported programs that work with AppUpdater. I can download and install programs from this list or I can click on "Scan" to scan my computer for known programs. It will open a list under "Installed" and give me the name and version number of each program. Now, I can choose to "Download all Updates" then "Install all Updates" or I can click on one of the programs highlighted in red and just install that one. Hey, that's cool! I don't have to wait til every frakkin' program gives me a popup, I can just do all my updates on the fly like once a month. </p>
<p><b>I did notice when testing the program I had to restart it to make it acknowledge my new versions that I'd updated. I also tried to update Python, but it wouldn't work through AppUpdater... All in all? A decent program with a few minor glitches, but it works non-the-less.</p>
<p>How do you keep your programs and Apps updated? Tell me about it in the comments or email us -- <a href="mailto:tips@hak5.org">tips@hak5.org</a>.</p>
<p>And be sure to check out our sister show, <a href="http://www.hak5.org" target="_blank">Hak5</a> for more great stuff just like this.
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/haktip-50/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Hak5 1005 &#8211; Airfoil Design, Install Ubuntu from Windows and Battery Powered PCs</title>
		<link>http://Hak5.org/episodes/hak5-1005</link>
		<comments>http://Hak5.org/episodes/hak5-1005#comments</comments>
		<pubDate>Thu, 22 Sep 2011 09:44:44 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[Season 10]]></category>
		<category><![CDATA[airfoil]]></category>
		<category><![CDATA[Battery]]></category>
		<category><![CDATA[battery powered computer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[power supply]]></category>
		<category><![CDATA[psu]]></category>
		<category><![CDATA[quadshot]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[wubi]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4130</guid>
		<description><![CDATA[<object width="640" height="360"><param name="movie" value="http://www.youtube.com/p/DFF0E8EC060692C6?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/p/DFF0E8EC060692C6?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>]]></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%2FHak5.org%2Fepisodes%2Fhak5-1005"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhak5-1005&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This time on the show, Open Source Airfoil Designs, Installing Ubuntu from within Windows and DC power supplies.</p>
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1005/hak5--1005--airframe_wubi_dcpower--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/1005/hak5--1005--airframe_wubi_dcpower--large.h264.mp4">Download MP4</a></p>
<p><span id="more-4130"></span></p>
<div align="center">
<object width="640" height="360"><param name="movie" value="http://www.youtube.com/p/DFF0E8EC060692C6?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/p/DFF0E8EC060692C6?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>
</div>
<p><b>Open Source Airfoil Design</b></p>
<p>Pranay Sinha from the <a href="http://www.flyquadshot.com">Quadshot</a> project joins us to discuss open source airfoil design.</p>
<p><b>Install Ubuntu from Windows</b></p>
<p>Interested in Ubuntu but don&#8217;t want to commit to partitioning your drive or turning your PC into a Linux machine? There is a really easy way to run it alongside Windows and still get the full OS for both. </p>
<p>Wubi (Windows-based UBuntu Installer) is an official Windows-based free software installer for Ubuntu. Wubi&#8217;s goal is to assist a Windows user who isn&#8217;t too knowledgeable in Linux in trying Ubuntu without risking any loss of information due to disk formatting or partitioning. Wubi can also uninstall Ubuntu from within Windows kind of like an application or program.</p>
<p>Now you may be thinking that sounds kind of like a virtual machine inside Windows, but it&#8217;s not. Wubi creates a disk image that can be run directly from the hardware, no virtual machine needed. It adds a new entry to the boot menu, so a user has the option to run Linux Ubuntu or Windows. In this way, it is a little different from my usual portable apps because you won&#8217;t be using GRUB to boot onto the Linux Distro Ubuntu will be installed on the actual Windows file system and Linux will think it&#8217;s a real hard disk, giving you the option to boot from it.</p>
<p>It does sound very epic win and super easy, but there are some limitations. Hibernation isn&#8217;t supported and hard reboots happen. Also, if you get a BSOD in Windows, you have to reboot Windows, shut it off, then boot your computer again to access the Linux distro as Ubuntu won&#8217;t be able to mount the drive successfully until your machine has cleanly rebooted. Performance will be a little slower than a normal Ubuntu install, but not by much. This is because you&#8217;re going through the Windows file system to access the Ubuntu distro instead of just booting directly off Ubuntu.</p>
<p>I also wanted to mention that you can have Wubi on a USB drive. There are a couple of other versions of it too- Lubi for Linux, and Mubi for MAC (which is still in the works).</p>
<p>If all this sounds really weird to you, I&#8217;m going to do a little step by step of how Wubi works and what it looks like to dual boot into Ubuntu using this program.</p>
<p>From using Wubi, I can tell that this is a really good way for someone to get their feet wet in the world of Ubuntu without having to do the full install. It does make it super easy to get into Linux and it feels like an actual install, specially when you get the option to boot Windows or Ubuntu on the boot up screen. It makes it feel like you&#8217;ve installed Ubuntu completely separate from Windows even though from it&#8217;s limitations you know thats not the case.</p>
<p>I think this is a really good tool for beginners or just to make life easier for anyone. You can always email me your thoughts at <a href="mailto:feedback@hak5.org">feedback@hak5.org</a>.</p>
<p><b>Feedback</b></p>
<p>Brandon writes:</p>
<blockquote><p>The open source screen recorder you couldn&#8217;t think of for windows is probably CamStudio Open Source. It is one of the most popular and free recording software. Otherwise you have to pay like $300 for TechSmith&#8217;s Camtasia Studio. You can find CamStudio at http://camstudio.org/</p></blockquote>
<p>John writes</p>
<blockquote><p>hey i&#8217;m a long time fan of the show and on episode 1003 Darren ran the motherboard off of a non standard connector was it put together by Darren or is there somewhere i can get one as i really need this for a mobile game server im working on was there any drawbacks to using a battery instead of a standard psu?</p></blockquote>
<p>swehunter2000 on Youtube:</p>
<blockquote><p>Hey, i﻿ need to run a pc from a 12 volt battery, just like you did, can you please make a more in depth tutorial on how you did that?</p></blockquote>
<p>Mike writes:</p>
<blockquote><p>came across this service on my travels outside the UK for access to iPlayer<br />
freeukvpn.com It&#8217;s great with 2mbps bandwidth which is just enough for streaming but they change the password every 12 hours which is a minor inconvenience for such a great service.</p></blockquote>
<p>jackclark1981</p>
<blockquote><p>does anyone know﻿ a good alternative to vdownloader for ubuntu?</p></blockquote>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/easy-youtube-video-downl-10137/" target="_blank"></p>
<p>If you&#8217;re into Hak5 you&#8217;ll love our new show by hosts Darren Kitchen and Shannon Morse. Check out <a href="http://www.revision3.com/haktip">HakTip</a>!</p>
<p>Whether you&#8217;re a beginner or a pro, <a href="http://www.revision3.com/haktip">HakTip</a> is essential viewing for current and aspiring hackers, computer enthusiasts, and IT professionals. With a how-to approach to all things Information Technology, HakTip breaks down the core concepts, tools, and techniques of Linux, Wireless Networks, Systems Administration, and more</p>
<p>And let&#8217;s not forget to mention that you can follow us on <a href="http://www.twitter.com/hak5/" target="_blank">Twitter</a> and <a href="http://www.facebook.com/technolust/" target="_blank">Facebook</a>, <a href="http://revision3.com/hak5/subscribe" target="_blank">Subscribe</a> to the show and get all your Hak5 goodies, including the infamous <a href="http://hakshop.com/collections/frontpage/products/wifi-pineapple" target="_blank">WiFi Pineapple</a> over at <a href="http://hakshop.com/" target="_blank">HakShop.com</a>. If you have any questions or suggestions please feel free to contact us at <a href="mailto:feedback@hak5.org">feedback@hak5.org</a>.</p>
<p>No matter what your project is <a href="http://www.domain.com" target="_blank">Domain.com</a> has what you need to register, host and promote your next big idea&#8230;even if it&#8217;s ffffggggggggggggggghjk.com. Domain.com is owning the competition with cheap domain names and hassle-free service. Their easy checkout process and domain discovery system makes it easy to select the domain that&#8217;s right for you and setup your website without hassle. <a href="http://www.domain.com" target="_blank">Domain.com</a> will even transfer your domain from another registrar and hook you up with another year of service for under $6.50 when you use coupon code <b>HAK5</b> at checkout. That&#8217;s right, our code <b>HAK5</b> will score you 15% off. Don&#8217;t forget, when you think domain names, think <a href="http://www.domain.com" target="_blank">Domain.com</a></p>
<p>If you love alternative apparel brands like Kidrobot, Hurley, and Stussy but hate wasting all your cash on them, listen up! You can score these premium brands at UP TO 80% OFF every day at JackThreads &#8212; the invite-only shopping club just for guys. They&#8217;re serving up street, skate and surfwear brands at brain-melting prices. Get instant access to their deals for free and bypass the normal wait-list to join when you head over to <a href="http://www.jackthreads.com/hak5" target="_blank">JackThreads.com/hak5</a>. Start saving instantly without leaving the house.</p>
<p>With Netflix, the world&#8217;s largest subscription stream service, you can instantly watch thousands of TV episodes and movies on your Microsoft Xbox 360, Sony PS3, Nintendo Wii and computer for one low monthly price. No late fees. No due dates. For a limited time Hak5 viewers can get a FREE 30 day trial membership at <a href="http://www.netflix.com/hak5" target="_blank">netflix.com/hak5</a>. Sign up now and be sure to use this URL so they know we sent you.</p>
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/hak5-1005/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
<enclosure url="http://videos.revision3.com/revision3/web/hak5/1005/hak5--1005--airframe_wubi_dcpower--hd720p30.h264.mp4" length="585478859" type="video/mp4" />
<enclosure url="http://videos.revision3.com/revision3/web/hak5/1005/hak5--1005--airframe_wubi_dcpower--large.h264.mp4" length="323522075" type="video/mp4" />
		</item>
		<item>
		<title>HakTip 32 &#8211; Windows Optimization Tools Pt 2</title>
		<link>http://Hak5.org/episodes/haktip-32</link>
		<comments>http://Hak5.org/episodes/haktip-32#comments</comments>
		<pubDate>Fri, 09 Sep 2011 21:16:08 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[HakTip]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[defrag]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[diskmax]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[fcleaner]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[iobit]]></category>
		<category><![CDATA[msconfig]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[revo]]></category>
		<category><![CDATA[saluto]]></category>
		<category><![CDATA[Shareware]]></category>
		<category><![CDATA[smartdefrag]]></category>
		<category><![CDATA[systemcare 4]]></category>
		<category><![CDATA[temp]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[uninstall]]></category>
		<category><![CDATA[uninstaller]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[utilize]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=4102</guid>
		<description><![CDATA[<object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/UvXuv-EpUl8?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/UvXuv-EpUl8?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>]]></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%2FHak5.org%2Fepisodes%2Fhaktip-32"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhaktip-32&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>You guys sent in a ton of ideas for Windows optimization tools after one of my earlier HakTips. I&#8217;ve listed some of my favorites!</p>
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--large.h264.mp4">Download MP4</a> <a class="wmv" href="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--large.wmv9.wmv">Download WMV</a></p>
<p><span id="more-4102"></span></p>
<div align="center">
<object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/UvXuv-EpUl8?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/UvXuv-EpUl8?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>
</div>
<p>#1 is <a href="http://www.revouninstaller.com/revo_uninstaller_free_download.html" target="_blank">Revo Uninstaller</a>. Matt says, like the name says, it’s a program that uninstalls programs, but it goes beyond that too.  Before you uninstall anything, it creates a restore point, scans for files and registry entries that the program uses and launches the program’s uninstaller.  When it’s all done uninstalling, Revo checks again for files and registry entries.  If it finds them, it asks you if you want to delete them. This program also comes in a portable version.</p>
<p>#2 is <a href="http://www.koshyjohn.com/software/diskmax/" target="_blank">DiskMax</a>. Andre says, one thing that killed a lot more useless files and somehow speeded up more than the others, I think is &#8220;&#8221;DiskMax&#8221;" by Koshy John, which I use on every pc in the family, because they are getting ugly slow.</p>
<p>#3 is <a href="http://www.iobit.com/iobitsmartdefrag.html" target="_blank">SmartDefrag</a>. Francisco writes in with this one and says, I would like to recommend SmartDefrag as another utility to keep your computer optimized for optimum performance. That was redundant.</p>
<p>#4 is sent in by Bryan and also comes from the iobit.com website. He says, another great free utility is <a href="http://www.iobit.com/advancedsystemcarepro.html" target="_blank">Advanced SystemCare 4</a> (which was also sent in by Alex). Iobit has free Malware Remover, Free Defrag, Free File Shredder, etc. All are great and free. Or you can go old school with <a href="http://disk-cleaner.m.en.softonic.com/" target="_blank">Diskcleaner</a> for a quick and easy clean.</p>
<p>#5 is another cleaner sent in by Pete. He states I think I found a few tools that can belly up to the competition the first is a cleaning tool called <a href="http://www.fcleaner.com/" target="_blank">Fcleaner</a>. I found it to be a better tool so far compared to CCleaner. It seemed to speed up my computer a considerable amount.</p>
<p>#6 was sent in by Nick. He says, just wanted to recommend <a href="https://www.soluto.com/" target="_blank">Soluto</a> to speed up start up, it&#8217;s a time brilliant program. Sean also sent this in, stating:  This is an optimization software which gives you insight on the internal processes of your windows PC. With this program you are notified of which programs, plugins, and services that are slowing your PC&#8217;s boot time and your browser. It has a fresh interface and shows promise in future releases.</p>
<p>BenjaminD says use msconfig! Personally, I find msconfig to be one of the best (and only) good tools that Windows has built into their machines for as long as I can remember. With it, you can choose what programs can startup on boot, and you can control the programs that are running in the background.</p>
<p>Another simple tip sent in by William is Open a DOS prompt and delete the temp files. Type cd\ del *.tmp /s &#8211; It is a great way to clean out the junk, or you can create a scheduled task to do it for you.</p>
<p>A lot more were sent in by you guys, like Auslogics boostspeed, Ultimate Windows Tweaker, Tweak Now Power Pack 2011, and Network Utilization just to name a few! But alas, my time is up and I must bid you farewell.</p>
<p>Until the next HakTip I want to hear your feedback. What program or command is giving your PC a boost? Let me know what you think or what program you use by emailing me &#8212; <a href="mailto:tips@hak5.org">tips@hak5.org</a> or send me a note in the comments below.</p>
<p>And be sure to check out our sister show, <a href="http://www.hak5.org" target="_blank">Hak5</a> for more great stuff just like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/haktip-32/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--hd720p30.h264.mp4" length="78521996" type="video/mp4" />
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--large.h264.mp4" length="43794922" type="video/mp4" />
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0032/hak5--haktip--0032--windowsoptlist--large.wmv9.wmv" length="0" type="video/asf" />
		</item>
		<item>
		<title>Haktip 24 &#8211; An Easy To Use Alternative Local Backup Tool!</title>
		<link>http://Hak5.org/episodes/haktip-24</link>
		<comments>http://Hak5.org/episodes/haktip-24#comments</comments>
		<pubDate>Fri, 12 Aug 2011 20:25:13 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Episodes]]></category>
		<category><![CDATA[HakTip]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[bootable]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[easeUS]]></category>
		<category><![CDATA[erase]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[partition]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[wipe]]></category>

		<guid isPermaLink="false">http://Hak5.org/?p=3987</guid>
		<description><![CDATA[<object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/DoAgzK2tZ2s?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/DoAgzK2tZ2s?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>]]></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%2FHak5.org%2Fepisodes%2Fhaktip-24"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2FHak5.org%2Fepisodes%2Fhaktip-24&amp;source=Hak5&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This time on the show I&#8217;m checking out EaseUS&#8217;s ToDo Backup Utility.</p>
<div style="clear:both;"></div>
<p><a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--hd720p30.h264.mp4">Download HD</a> <a class="mov" href="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--large.h264.mp4">Download MP4</a> <a class="wmv" href="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--large.wmv9.wmv">Download WMV</a></p>
<p><span id="more-3987"></span></p>
<div align="center">
<object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/DoAgzK2tZ2s?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.youtube.com/v/DoAgzK2tZ2s?version=3&#038;hl=en_US&#038;fs=1&#038;hd=1&#038;autohide=1&#038;showinfo=0&#038;rel=0&#038;showsearch=0" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>
</div>
<p>My whole life is on my computer, and if I lost my photos to a dead hard drive or PC meltdown, I&#8217;d be at a complete loss. You can pay loads for online storage and cloud service backups, but you can also use tools to backup to your network, a server, or another hard drive. This one is called <a href="http://todo-backup.com/" target="_blank">EaseUS&#8217;s ToDo Backup Utility</a>.</p>
<p>This program features backup scheduling, full system backup and recovery, file and folder selection, and incremental backup- which is something I love as it only backs up when files have been changed or added since the last backup. It is supported on all newer versions of Windows.</p>
<p>Install this program like normal and restart your computer. After opening it for the first time, you&#8217;re greeted with some options- Backup, Recover, Schedule a Backup, or Clone. Under the Backup tab at the top you can create a disk or partition backup, file backup, or manage how backups are processed. The recover tab lets you recover files, disks, or partitions. Under Tools, you can check images of files, make a bootable USB, use tools for your hard drive like erasing and wiping data, or mount an image. </p>
<p>I&#8217;m going to start by backing up some files. I&#8217;ll choose File Backup, and I&#8217;ll create a new backup. Since I don&#8217;t have another hard drive plugged into this computer, I&#8217;m just going to back this folder up into my photos folder. </p>
<p>Wait for the backup to finish.</p>
<p>Once finished, you can recover all the files you&#8217;ve backed up by choosing the name of the backup. Under schedule backup, I can choose a folder, choose to back it up incrementally, and I can choose when I want it to happen. You will need your Windows UN and PW to schedule backups. If you need to cancel a backup or delete backups, go to the Backup tab under Backup Management and choose delete backup. </p>
<p>Now, to recover your backups, they make it really easy. Go to the recover tab, and choose File Recovery. Choose your files you want to recover, and click next. Choose the destination and the recover will begin.</p>
<p>I have to say, EaseUS&#8217;s ToDo Backup Tool is really easy, hence the name! It&#8217;s built a LOT better than the backup program that came with my Western Digital external hard drive, so I&#8217;m definitely replacing the built in tool with this one.&#8221;</p>
<p>Ok, so I want to hear your feedback. What local backup tool is your fav? Let me know what you think or what program you use by emailing me &#8212; <a href="mailto:tips@hak5.org">tips@hak5.org</a> or send me a note in the comments below.</p>
<p>And be sure to check out our sister show, <a href="http://www.hak5.org" target="_blank">Hak5</a> for more great stuff just like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://Hak5.org/episodes/haktip-24/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--hd720p30.h264.mp4" length="82585228" type="video/mp4" />
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--large.h264.mp4" length="45727129" type="video/mp4" />
<enclosure url="http://videos.revision3.com/revision3/web/hak5/haktip/0024/hak5--haktip--0024--easeus--large.wmv9.wmv" length="61804965" type="video/asf" />
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  hak5.org/tag/windows/feed ) in 1.11643 seconds, on May 23rd, 2012 at 10:47 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 23rd, 2012 at 11:47 pm UTC -->
