<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>WonderHowTo</title>
    <link>http://www.wonderhowto.com/news/</link>
    <description>Newest and coolest how-to videos and articles on WonderHowTo.</description>
    <language>en-us</language>
    <pubDate>Sat, 25 Feb 2012 07:58:42 GMT</pubDate>
    <lastBuildDate>Sat, 25 Feb 2012 07:58:42 GMT</lastBuildDate>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>WonderHowTo.com FeedBuilder v1.1</generator>
    <managingEditor>contact@wonderhowto.com (Contact WonderHowTo)</managingEditor>
    <image>
      <link>http://www.wonderhowto.com/news/</link>
      <title>WonderHowTo</title>
      <description>Newest and coolest how-to videos and articles on WonderHowTo.</description>
      <url>http://img.wonderhowto.com/images/wonderhowto_feed_logo.gif</url>
      <width>144</width>
      <height>36</height>
    </image>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WonderHowTo/NewInHowTo" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wonderhowto/newinhowto" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">WonderHowTo/NewInHowTo</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
      <title>Learn to Code in Python, Part One: Variables, Input and Output</title>
      <link>http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/" title="Learn to Code in Python, Part One: Variables, Input and Output"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658202985919854.jpg" alt="Learn to Code in Python, Part One: Variables, Input and Output" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2flearn-code-python-part-one-variables-input-and-output-0133579%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2flearn-code-python-part-one-variables-input-and-output-0133579%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id49006226"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In this article, I'll be exploring the basics of Python, i.e. variables, input and output. You'll need Python (2.7+), a computer, and some free time. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Variables&lt;/h2&gt;&lt;p&gt;Simply put, variables are like envelopes. They are empty and meaningless until we place objects and meaning into them and give the envelope a name. When you call up a variable in Python, you "give" or "associate" data with a labeled container. For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red=1&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This simple program associates the integer '1' with the container 'red'. '1' can be replaced with any integer, so long as it is a number. However, say you wanted to write a program that asked a user his/her name. This can be done by associating 'red' with a string. Strings are basically a series of characters-letters, numbers, special symbols like (_) and (.) etc., enclosed in single quotes ('), double quotes ("), or triple quotes ('''). For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red='Hi, my name is robot, what is yours?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This program will associate that string of text enclosed in single quotes with the container 'red'. A more complicated rendition of strings involves the percentage symbol (%), however I will cover that in the second part of this introductory series.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Input and Output&lt;/h2&gt;&lt;p&gt;We've covered how to store data in variables/containers, but how do we access it? When a program runs, the basic I/O (input/output) functions are &lt;em&gt;print&lt;/em&gt;, &lt;em&gt;raw_input()&lt;/em&gt;, and &lt;em&gt;input()&lt;/em&gt;. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;print&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One of the most useful tools available in Python is the print function. This simply allows the program to display or print data for the user to read. For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red='Hi, how are you?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print red&lt;/em&gt;&lt;/p&gt;&lt;p&gt;When run, this simple program will associate the string in single quotes with the container 'red', then print the data associated with 'red'. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657300105592450.jpg" class="imgCenter imgCenterFull " height="56" width="475" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;raw_input()&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is also a very useful tool. It basically allows the program to accept characters (like strings) into the program. The two brackets at the end of the function can be used to display a string, or variable data. For example:&lt;/p&gt;&lt;p&gt;&lt;em&gt;print "Hi, my name is Robot. What's your name?"&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Notice how I used double quotes to enclose this string. This is because there is an apostrophe in the sentence (what's). &lt;/p&gt;&lt;p&gt;&lt;em&gt;answer=raw_input()&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'Hi '+answer+', how are you?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This simple program will first print Robot's introduction and question, wait for a response, then greet the user with his name and another question.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657310761191166.jpg" class="imgCenter imgCenterFull " height="88" width="460" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;input()&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This function will only work for integers. It's useful when dealing with numerical user input, like in a calculator. If a user inputs characters that are not numerical, Python will display an error message stating that the entered data is not defined, which simply means Python understood the input as a request for a variable, but couldn't find the variable in the program. &lt;/p&gt;&lt;p&gt;Here's an example of a simple program that adds two integers together using the &lt;em&gt;input()&lt;/em&gt; function:&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'Please enter two integers:'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;integer1=input('Integer one: ')&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;integer2=input('Integer two: ')&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;finaladd=integer1+integer2&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'The numbers added together are: ', finaladd&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Notice how I use a comma (,) in place of an addition symbol (+) when "adding" integers into strings. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657316095152534.jpg" class="imgCenter imgCenterFull " height="98" width="467" /&gt;&lt;/p&gt;&lt;p&gt;Stay tuned for part two, which will cover more on strings, as well as an introduction to definitions.&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://i.kapook.com/photofolder/webboard/webboard1/Green-Tree-Python-06.jpg" rel="nofollow" target="_blank" &gt;kapook&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/"&gt;Learn to Code in Python, Part One: Variables, Input and Output&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/make-gmail-notifier-python-0132845/"&gt;How to Make a Gmail Notifier in Python&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/make-change-ip-notifier-python-0133168/"&gt;How to Make a Change-of-IP Notifier in Python&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/generate-word-lists-with-python-for-dictionary-attacks-0132761/"&gt;How to Generate Word-Lists with Python for Dictionary Attacks&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/build-simple-redstone-adding-machine-minecraft-0131892/"&gt;How to Build a Simple Redstone Adding Machine in Minecraft&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/send-sms-messages-with-python-0132938/"&gt;How to Send SMS Messages with Python&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QmFqvxGGiG0:s8CPFoiG5Hk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QmFqvxGGiG0:s8CPFoiG5Hk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QmFqvxGGiG0:s8CPFoiG5Hk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QmFqvxGGiG0:s8CPFoiG5Hk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/QmFqvxGGiG0" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/#comments</comments>
      <pubDate>Sat, 25 Feb 2012 07:58:42 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/</guid>
      <dc:creator>ChristopherVoute</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Learn to Code in Python, Part One: Variables, Input and Output</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/" title="Learn to Code in Python, Part One: Variables, Input and Output"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658202985919854.jpg" alt="Learn to Code in Python, Part One: Variables, Input and Output" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2flearn-code-python-part-one-variables-input-and-output-0133579%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2flearn-code-python-part-one-variables-input-and-output-0133579%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id49006226"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In this article, I'll be exploring the basics of Python, i.e. variables, input and output. You'll need Python (2.7+), a computer, and some free time. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Variables&lt;/h2&gt;&lt;p&gt;Simply put, variables are like envelopes. They are empty and meaningless until we place objects and meaning into them and give the envelope a name. When you call up a variable in Python, you "give" or "associate" data with a labeled container. For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red=1&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This simple program associates the integer '1' with the container 'red'. '1' can be replaced with any integer, so long as it is a number. However, say you wanted to write a program that asked a user his/her name. This can be done by associating 'red' with a string. Strings are basically a series of characters-letters, numbers, special symbols like (_) and (.) etc., enclosed in single quotes ('), double quotes ("), or triple quotes ('''). For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red='Hi, my name is robot, what is yours?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This program will associate that string of text enclosed in single quotes with the container 'red'. A more complicated rendition of strings involves the percentage symbol (%), however I will cover that in the second part of this introductory series.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Input and Output&lt;/h2&gt;&lt;p&gt;We've covered how to store data in variables/containers, but how do we access it? When a program runs, the basic I/O (input/output) functions are &lt;em&gt;print&lt;/em&gt;, &lt;em&gt;raw_input()&lt;/em&gt;, and &lt;em&gt;input()&lt;/em&gt;. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;print&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One of the most useful tools available in Python is the print function. This simply allows the program to display or print data for the user to read. For example: &lt;/p&gt;&lt;p&gt;&lt;em&gt;red='Hi, how are you?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print red&lt;/em&gt;&lt;/p&gt;&lt;p&gt;When run, this simple program will associate the string in single quotes with the container 'red', then print the data associated with 'red'. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657300105592450.jpg" class="imgCenter imgCenterFull " height="56" width="475" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;raw_input()&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is also a very useful tool. It basically allows the program to accept characters (like strings) into the program. The two brackets at the end of the function can be used to display a string, or variable data. For example:&lt;/p&gt;&lt;p&gt;&lt;em&gt;print "Hi, my name is Robot. What's your name?"&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Notice how I used double quotes to enclose this string. This is because there is an apostrophe in the sentence (what's). &lt;/p&gt;&lt;p&gt;&lt;em&gt;answer=raw_input()&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'Hi '+answer+', how are you?'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;This simple program will first print Robot's introduction and question, wait for a response, then greet the user with his name and another question.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657310761191166.jpg" class="imgCenter imgCenterFull " height="88" width="460" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span class="ulText"&gt;input()&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This function will only work for integers. It's useful when dealing with numerical user input, like in a calculator. If a user inputs characters that are not numerical, Python will display an error message stating that the entered data is not defined, which simply means Python understood the input as a request for a variable, but couldn't find the variable in the program. &lt;/p&gt;&lt;p&gt;Here's an example of a simple program that adds two integers together using the &lt;em&gt;input()&lt;/em&gt; function:&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'Please enter two integers:'&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;integer1=input('Integer one: ')&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;integer2=input('Integer two: ')&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;finaladd=integer1+integer2&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;print 'The numbers added together are: ', finaladd&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Notice how I use a comma (,) in place of an addition symbol (+) when "adding" integers into strings. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657316095152534.jpg" class="imgCenter imgCenterFull " height="98" width="467" /&gt;&lt;/p&gt;&lt;p&gt;Stay tuned for part two, which will cover more on strings, as well as an introduction to definitions.&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://i.kapook.com/photofolder/webboard/webboard1/Green-Tree-Python-06.jpg" rel="nofollow" target="_blank" &gt;kapook&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/learn-code-python-part-one-variables-input-and-output-0133579/"&gt;Learn to Code in Python, Part One: Variables, Input and Output&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/make-gmail-notifier-python-0132845/"&gt;How to Make a Gmail Notifier in Python&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/make-change-ip-notifier-python-0133168/"&gt;How to Make a Change-of-IP Notifier in Python&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/generate-word-lists-with-python-for-dictionary-attacks-0132761/"&gt;How to Generate Word-Lists with Python for Dictionary Attacks&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/build-simple-redstone-adding-machine-minecraft-0131892/"&gt;How to Build a Simple Redstone Adding Machine in Minecraft&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/send-sms-messages-with-python-0132938/"&gt;How to Send SMS Messages with Python&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634658202985919854.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Give Your Jacob's Ladder More Spark with High-Voltage Capacitors</title>
      <link>http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/" title="Give Your Jacob's Ladder More Spark with High-Voltage Capacitors"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657121375298527.jpg" alt="Give Your Jacob's Ladder More Spark with High-Voltage Capacitors" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fgive-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fgive-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id2966639"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Here's a simple and easy addition to your own Jacob's Ladder. If you don't have one, here's &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-jacobs-ladder-chained-lightning-0133142/"&gt;&lt;strong&gt;how to make a Jacob's ladder&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;All you need is a couple &lt;a href="http://hvstuff.com/15kv-2200pf-high-voltage-ceramic-disc-capacitor-y5u" rel="nofollow" target="_blank" &gt;high-voltage 15KV capacitors&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;connected in series to each of the ladder's prongs. Basically, rather than arcing right away, the high voltage transformer charges up the capacitors. Then, once they reach the "arc threshold", the capacitors discharge across the Jacob's ladder arc-guides, creating a loud, violent spark. This process happens several times a second, creating bright flashes of light.&lt;/p&gt;&lt;p&gt;Here's a video of it in action (the two gray "blobs" at the bottom of the ladder are the capacitors attached in series with the transformer output and ladder prongs):&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=epSUCzLf50k"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;High voltage is dangerous! Be careful.&lt;/li&gt;&lt;li&gt;Always make sure to discharge capacitors after use! They can hold a charge and shock you.&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://en.wikipedia.org/wiki/High_voltage_traveling_arc#Visual_entertainment" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt; &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/"&gt;Give Your Jacob's Ladder More Spark with High-Voltage Capacitors&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/butane-combustion-high-voltage-capacitor-launcher-0132835/"&gt;Butane Combustion High Voltage Capacitor Launcher&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/making-electromagnetic-weapons-emp-generator-part-one-0133056/"&gt;Making Electromagnetic Weapons: EMP Generator, Part One&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/protect-your-door-with-high-voltage-0132834/"&gt;How to Protect Your Door with High Voltage&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-jacobs-ladder-chained-lightning-0133142/"&gt;How to Make a Jacob's Ladder: Chained Lightning&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-coil-gun-turning-electricity-into-velocity-0132718/"&gt;How To Make A Coil Gun: Turning Electricity Into Velocity&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=AcdM6_Ggs78:egSGO3VUVDI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=AcdM6_Ggs78:egSGO3VUVDI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=AcdM6_Ggs78:egSGO3VUVDI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=AcdM6_Ggs78:egSGO3VUVDI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/AcdM6_Ggs78" height="1" width="1"/&gt;</description>
      <comments>http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 02:07:26 GMT</pubDate>
      <guid isPermaLink="true">http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/</guid>
      <dc:creator>ChristopherVoute</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Give Your Jacob's Ladder More Spark with High-Voltage Capacitors</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/" title="Give Your Jacob's Ladder More Spark with High-Voltage Capacitors"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657121375298527.jpg" alt="Give Your Jacob's Ladder More Spark with High-Voltage Capacitors" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fgive-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fgive-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id2966639"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Here's a simple and easy addition to your own Jacob's Ladder. If you don't have one, here's &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-jacobs-ladder-chained-lightning-0133142/"&gt;&lt;strong&gt;how to make a Jacob's ladder&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;All you need is a couple &lt;a href="http://hvstuff.com/15kv-2200pf-high-voltage-ceramic-disc-capacitor-y5u" rel="nofollow" target="_blank" &gt;high-voltage 15KV capacitors&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;connected in series to each of the ladder's prongs. Basically, rather than arcing right away, the high voltage transformer charges up the capacitors. Then, once they reach the "arc threshold", the capacitors discharge across the Jacob's ladder arc-guides, creating a loud, violent spark. This process happens several times a second, creating bright flashes of light.&lt;/p&gt;&lt;p&gt;Here's a video of it in action (the two gray "blobs" at the bottom of the ladder are the capacitors attached in series with the transformer output and ladder prongs):&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=epSUCzLf50k"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;High voltage is dangerous! Be careful.&lt;/li&gt;&lt;li&gt;Always make sure to discharge capacitors after use! They can hold a charge and shock you.&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://en.wikipedia.org/wiki/High_voltage_traveling_arc#Visual_entertainment" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt; &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/give-your-jacobs-ladder-more-spark-with-high-voltage-capacitors-0133527/"&gt;Give Your Jacob's Ladder More Spark with High-Voltage Capacitors&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/butane-combustion-high-voltage-capacitor-launcher-0132835/"&gt;Butane Combustion High Voltage Capacitor Launcher&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/making-electromagnetic-weapons-emp-generator-part-one-0133056/"&gt;Making Electromagnetic Weapons: EMP Generator, Part One&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/protect-your-door-with-high-voltage-0132834/"&gt;How to Protect Your Door with High Voltage&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-jacobs-ladder-chained-lightning-0133142/"&gt;How to Make a Jacob's Ladder: Chained Lightning&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-coil-gun-turning-electricity-into-velocity-0132718/"&gt;How To Make A Coil Gun: Turning Electricity Into Velocity&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657121375298527.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Electronics/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software</title>
      <link>http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/" title="Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658225793783913.jpg" alt="Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fws-technologies.wonderhowto.com%2fblog%2fhide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fws-technologies.wonderhowto.com%2fblog%2fhide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id3776369"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Today's guide is on creating a password protected folder on Windows 7 &lt;span class="ulText"&gt;without&lt;/span&gt; any additional software. Yes, you heard that right. No extra software at all! This guide is intended for beginners. But please note, this method should not be used to store financial or otherwise highly confidential material. It might be a good place to hide a planning document for a family member's birthday party or similar occasion where you need to keep something secret temporarily.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;How to Create the Password Protected Folder&lt;/h2&gt;&lt;p&gt;The first thing you should do is go into "Documents" and create a new folder. Name it whatever you like.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 446px; height: 337px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657273106974338.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;When you have done that, double-click on the folder and create a text document. This can be achieved by going into the contextual menu (right-click anywhere inside the folder -&amp;gt; New -&amp;gt; Text Document). Double-click on the text document and paste the following code into it: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;cls &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;@ECHO OFF&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; title Folder Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if EXIST "HTG Locker" goto UNLOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if NOT EXIST Private goto MDLOCKER&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :CONFIRM&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Are you sure you want to lock the folder(Y/N)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; set/p "cho=&amp;gt;"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==Y goto LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==y goto LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==n goto END&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==N goto END&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Invalid choice.&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto CONFIRM&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; ren Private "HTG Locker"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; attrib +h +s "HTG Locker"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Folder locked&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :UNLOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Enter password to unlock folder&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; set/p "pass=&amp;gt;"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if NOT %pass%== PASSWORD_GOES_HERE goto FAIL&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; attrib -h -s "HTG Locker" &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;ren "HTG Locker" Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Folder Unlocked successfully&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;:FAIL&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Invalid password&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto end&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :MDLOCKER&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;md Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Private created successfully&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :End&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The next step is to change the PASSWORD_GOES_HERE text to whatever you'd like your password to be. Don't use an easy-to-guess password.&lt;/p&gt;&lt;p&gt;Now we need to save the text document.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657285646120362.jpg" class="imgCenter imgCenterFull " height="386" width="554" /&gt;&lt;/p&gt;&lt;p&gt;NOTE: The text file must use the .bat extension. Therefore, I have named it &lt;strong&gt;locker.bat&lt;/strong&gt; and saved it as a &lt;strong&gt;batch file&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657287920448356.jpg" class="imgCenter imgCenterFull " height="373" width="524" /&gt;&lt;/p&gt;&lt;p&gt;When you have saved your batch file, you will need to delete the text document (&lt;strong&gt;.txt&lt;/strong&gt;). &lt;/p&gt;&lt;p&gt;When you have deleted it, you may now double-click on your batch file. The first time you run the program, it will add a folder titled "Private". This is where you can store your documents to keep away from praying eyes. Go ahead and put some stuff in it now.  &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657291457598569.jpg" class="imgCenter imgCenterFull " height="396" width="494" /&gt;&lt;/p&gt;&lt;p&gt;Above is a picture of the "Private" folder and "locker.bat".  &lt;/p&gt;&lt;p&gt;When you have finished adding your documents to the Private folder, double-click on locker.bat.  You will now be prompted whether you wish to lock the document or not. Select "Y" to lock it. When you do this, you will notice that the Private folder quickly disappears.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657296008906563.jpg" class="hasLarge imgCenter imgCenterFull " height="239" width="592" /&gt;&lt;/p&gt;&lt;p&gt;When you double-click locker again, it will ask you to enter the password.&lt;/p&gt;&lt;h4 class="articleWarning"&gt; Warning!&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;This is NOT the place to store confidential information, such as medical records, financial information or passwords. This is not the best place to hide things from an IT professional, but it should work against newbies or people with intermediate computer skills.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="sectionHeadline"&gt;How Do You Bypass It?&lt;/h2&gt;&lt;p&gt;Go into Folder Options -&amp;gt; View -&amp;gt; and uncheck "Hide protected operating system files".&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657300453666370.jpg" class="imgCenter imgCenterFull " height="475" width="390" /&gt;&lt;/p&gt;&lt;p&gt;However, when they attempt to un-check, it they will get this warning which may make them think twice before disabling it.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657301229767733.jpg" class="imgCenter imgCenterFull " height="194" width="566" /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Credit: We found this script on many different websites going back years and years and have no idea who made it. If you have proof that you originally wrote the script, please get in contact with us and we will amend the article accordingly.&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.instablogsimages.com/images/2010/11/30/create-windows7-locked-folder_XcrXj_25552.jpg" rel="nofollow" target="_blank" &gt;gizmowatch&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/"&gt;Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software&lt;/a&gt; on &lt;a href="http://ws-technologies.wonderhowto.com/"&gt;ws-technologies.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/secure-your-computer-part-2-password-protect-grub-bootloader-dual-booted-pcs-0131188/"&gt;Secure Your Computer, Part 2: Password-Protect the GRUB Bootloader on Dual-Booted PCs&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-password-protect-and-hide-files-and-folders-windows-165901/"&gt;How to password protect and hide files and folders in Windows&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/secure-your-computer-part-1-password-protect-your-bios-boot-screen-0131184/"&gt;Secure Your Computer, Part 1: Password-Protect your BIOS Boot Screen&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://tech-pr0n.wonderhowto.com/blog/8-tips-for-creating-strong-unbreakable-passwords-0132803/"&gt;8 Tips for Creating Strong, Unbreakable Passwords&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/bypass-windows-and-linux-passwords-0130012/"&gt;How to Bypass Windows and Linux Passwords&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iHQDzLvV5KY:ZxLEK1oQHE8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iHQDzLvV5KY:ZxLEK1oQHE8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iHQDzLvV5KY:ZxLEK1oQHE8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iHQDzLvV5KY:ZxLEK1oQHE8:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/iHQDzLvV5KY" height="1" width="1"/&gt;</description>
      <comments>http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/#comments</comments>
      <pubDate>Sat, 25 Feb 2012 07:55:40 GMT</pubDate>
      <guid isPermaLink="true">http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/</guid>
      <dc:creator>Mr Unknown</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/" title="Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658225793783913.jpg" alt="Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fws-technologies.wonderhowto.com%2fblog%2fhide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fws-technologies.wonderhowto.com%2fblog%2fhide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id3776369"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Today's guide is on creating a password protected folder on Windows 7 &lt;span class="ulText"&gt;without&lt;/span&gt; any additional software. Yes, you heard that right. No extra software at all! This guide is intended for beginners. But please note, this method should not be used to store financial or otherwise highly confidential material. It might be a good place to hide a planning document for a family member's birthday party or similar occasion where you need to keep something secret temporarily.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;How to Create the Password Protected Folder&lt;/h2&gt;&lt;p&gt;The first thing you should do is go into "Documents" and create a new folder. Name it whatever you like.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 446px; height: 337px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657273106974338.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;When you have done that, double-click on the folder and create a text document. This can be achieved by going into the contextual menu (right-click anywhere inside the folder -&amp;gt; New -&amp;gt; Text Document). Double-click on the text document and paste the following code into it: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;cls &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;@ECHO OFF&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; title Folder Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if EXIST "HTG Locker" goto UNLOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if NOT EXIST Private goto MDLOCKER&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :CONFIRM&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Are you sure you want to lock the folder(Y/N)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; set/p "cho=&amp;gt;"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==Y goto LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==y goto LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==n goto END&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if %cho%==N goto END&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Invalid choice.&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto CONFIRM&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :LOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; ren Private "HTG Locker"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; attrib +h +s "HTG Locker"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Folder locked&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :UNLOCK&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Enter password to unlock folder&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; set/p "pass=&amp;gt;"&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; if NOT %pass%== PASSWORD_GOES_HERE goto FAIL&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; attrib -h -s "HTG Locker" &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;ren "HTG Locker" Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Folder Unlocked successfully&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;:FAIL&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;echo Invalid password&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto end&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :MDLOCKER&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;md Private&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; echo Private created successfully&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; goto End&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; :End&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The next step is to change the PASSWORD_GOES_HERE text to whatever you'd like your password to be. Don't use an easy-to-guess password.&lt;/p&gt;&lt;p&gt;Now we need to save the text document.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657285646120362.jpg" class="imgCenter imgCenterFull " height="386" width="554" /&gt;&lt;/p&gt;&lt;p&gt;NOTE: The text file must use the .bat extension. Therefore, I have named it &lt;strong&gt;locker.bat&lt;/strong&gt; and saved it as a &lt;strong&gt;batch file&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657287920448356.jpg" class="imgCenter imgCenterFull " height="373" width="524" /&gt;&lt;/p&gt;&lt;p&gt;When you have saved your batch file, you will need to delete the text document (&lt;strong&gt;.txt&lt;/strong&gt;). &lt;/p&gt;&lt;p&gt;When you have deleted it, you may now double-click on your batch file. The first time you run the program, it will add a folder titled "Private". This is where you can store your documents to keep away from praying eyes. Go ahead and put some stuff in it now.  &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657291457598569.jpg" class="imgCenter imgCenterFull " height="396" width="494" /&gt;&lt;/p&gt;&lt;p&gt;Above is a picture of the "Private" folder and "locker.bat".  &lt;/p&gt;&lt;p&gt;When you have finished adding your documents to the Private folder, double-click on locker.bat.  You will now be prompted whether you wish to lock the document or not. Select "Y" to lock it. When you do this, you will notice that the Private folder quickly disappears.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657296008906563.jpg" class="hasLarge imgCenter imgCenterFull " height="239" width="592" /&gt;&lt;/p&gt;&lt;p&gt;When you double-click locker again, it will ask you to enter the password.&lt;/p&gt;&lt;h4 class="articleWarning"&gt; Warning!&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;This is NOT the place to store confidential information, such as medical records, financial information or passwords. This is not the best place to hide things from an IT professional, but it should work against newbies or people with intermediate computer skills.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="sectionHeadline"&gt;How Do You Bypass It?&lt;/h2&gt;&lt;p&gt;Go into Folder Options -&amp;gt; View -&amp;gt; and uncheck "Hide protected operating system files".&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657300453666370.jpg" class="imgCenter imgCenterFull " height="475" width="390" /&gt;&lt;/p&gt;&lt;p&gt;However, when they attempt to un-check, it they will get this warning which may make them think twice before disabling it.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657301229767733.jpg" class="imgCenter imgCenterFull " height="194" width="566" /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Credit: We found this script on many different websites going back years and years and have no idea who made it. If you have proof that you originally wrote the script, please get in contact with us and we will amend the article accordingly.&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.instablogsimages.com/images/2010/11/30/create-windows7-locked-folder_XcrXj_25552.jpg" rel="nofollow" target="_blank" &gt;gizmowatch&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://ws-technologies.wonderhowto.com/blog/hide-your-secrets-password-lock-folder-windows-7-with-no-additional-software-0133578/"&gt;Hide Your Secrets: How to Password-Lock a Folder in Windows 7 with No Additional Software&lt;/a&gt; on &lt;a href="http://ws-technologies.wonderhowto.com/"&gt;ws-technologies.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/secure-your-computer-part-2-password-protect-grub-bootloader-dual-booted-pcs-0131188/"&gt;Secure Your Computer, Part 2: Password-Protect the GRUB Bootloader on Dual-Booted PCs&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-password-protect-and-hide-files-and-folders-windows-165901/"&gt;How to password protect and hide files and folders in Windows&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/secure-your-computer-part-1-password-protect-your-bios-boot-screen-0131184/"&gt;Secure Your Computer, Part 1: Password-Protect your BIOS Boot Screen&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://tech-pr0n.wonderhowto.com/blog/8-tips-for-creating-strong-unbreakable-passwords-0132803/"&gt;8 Tips for Creating Strong, Unbreakable Passwords&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/bypass-windows-and-linux-passwords-0130012/"&gt;How to Bypass Windows and Linux Passwords&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634658225793783913.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet</title>
      <link>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658211204482289.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id47600603"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;last article&lt;/a&gt;, we left off with the &lt;a title="Tor" href="https://www.torproject.org/" rel="nofollow" target="_blank" &gt;Tor&lt;/a&gt; network and its hidden services. As I mentioned, Tor is not the only option in the game, and I want to offer a general introduction to &lt;a title="www.i2p2.de" href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;I2P&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;For a web browsing &lt;a title="Proxy Server" href="http://en.wikipedia.org/wiki/Proxy_server" rel="nofollow" target="_blank" &gt;proxy&lt;/a&gt; and hidden services host, Tor gets the job done well. But if you are looking to expand your options for secure communication, then enter I2P! This article will show you how to obtain and set up I2P, and in the process, we will also configure an IRC client to access the IRC2P network and get you up and running. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Invisible Internet and Onion Routing&lt;/h2&gt;&lt;p&gt;I2P initially began in 2003 as a proposed modification to &lt;a title="freenetproject.org" href="http://freenetproject.org/" rel="nofollow" target="_blank" &gt;Freenet&lt;/a&gt;. To deal with a wide range of attacks, I2P is fully distributed with no centralized resources— hence there are no directory servers keeping statistics regarding the performance and reliability of routers within the network. I2P is not 100% secure, as nothing is 100% secure, but using it will provide you with meaningful security nonetheless. &lt;/p&gt;&lt;p&gt;Content sent over I2P is encrypted through three-layer &lt;a  href="http://en.wikipedia.org/wiki/Garlic_routing" rel="nofollow" target="_blank" &gt;garlic encryption&lt;/a&gt;, used to verify the delivery of the message to the recipient. All messages passing through a tunnel are encrypted by the tunnel gateway to the tunnel endpoint, and undergo inter-router transport layer encryption along the way. You also have the ability to tunnel &lt;a title="TCP/IP" href="http://www.w3schools.com/tcpip/tcpip_intro.asp" rel="nofollow" target="_blank" &gt;TCP/IP&lt;/a&gt; based applications (IRC, Jabber, steaming music, etc.) through the network. In fact, you can even tunnel your torrent downloads!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt; Download I2P&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Let's start with a visit to the &lt;a title="I2P Download" href="http://www.i2p2.de/download.html" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; page to grab the Windows binary or source code, if needed. If you are using Debian/Ubuntu or Mint, we can add the repositories by simply typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo apt-add-repository ppa:i2p-maintainers/i2p&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get update&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get install i2p&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This downloads and installs the I2P router on your computer.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt; Start the I2P Router&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now that we have the packages downloaded and installed, we must start the service. We do this by simply typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ i2prouter start&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655766071007369.jpg" class="imgCenter imgCenterFull " height="122" width="254" /&gt;&lt;/p&gt;&lt;p&gt;After we type that command, the I2P router will begin to bootstrap itself into the network. It is recommended to give this process some time as it seeks out and adds other nodes for you to route traffic through. After a few seconds, I2P will open a browser with the router console as seen below. You may close this.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 469px; height: 294px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655764984933461.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Invisible Internet Relay Chat&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Some of you might have a preferred IRC client already. I use &lt;a title="irssi" href="http://irssi.org/" rel="nofollow" target="_blank" &gt;Irssi&lt;/a&gt; myself, but &lt;a title="Xchat" href="http://xchat.org/" rel="nofollow" target="_blank" &gt;Xchat&lt;/a&gt; will work for most people. Normally, when you open the client you have the chance to connect to a server and port number. Because I2P runs as a service connected to your loopback address, we need to connect to it to access the IRC2P network by typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;/server localhost 6668&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655774486598150.jpg" class="hasLarge imgCenter imgCenterFull " height="600" width="592" /&gt;&lt;/p&gt;&lt;p&gt;That's it! You are now connected  to the IRC2P network. You can use normal IRC commands such as &lt;em&gt;/list&lt;/em&gt; to locate channels. Also please feel free to &lt;em&gt;/join&lt;/em&gt; #nullbyte and #i2p and say hello!&lt;/p&gt;&lt;h4 class="articleTip"&gt; tl;dr&lt;/h4&gt;&lt;p&gt;Just want the commands to get up and running? Look no further.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo apt-add-repository ppa:i2p-maintainers/i2p&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get update&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get install i2p&lt;br /&gt;$ i2prouter start&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Then start your IRC client and type:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;/server localhost 6668&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;/join #nullbyte&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;See you in the Deep Web!&lt;/p&gt;&lt;p&gt;Image by &lt;a title="Innovata" href="http://www.innovata-llc.com/documents/images/Global%20Data.jpg" rel="nofollow" target="_blank" &gt;Innovat&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://achievement-arcade.wonderhowto.com/blog/find-invisible-chest-elder-scrolls-v-skyrim-0132142/"&gt;How to Find an Invisible Chest in The Elder Scrolls V: Skyrim&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=vzyX8gTRXjE:aOIyPXgkTBs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=vzyX8gTRXjE:aOIyPXgkTBs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=vzyX8gTRXjE:aOIyPXgkTBs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=vzyX8gTRXjE:aOIyPXgkTBs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/vzyX8gTRXjE" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/#comments</comments>
      <pubDate>Sun, 26 Feb 2012 08:44:48 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/</guid>
      <dc:creator>Allen Freeman</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658211204482289.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id47600603"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;last article&lt;/a&gt;, we left off with the &lt;a title="Tor" href="https://www.torproject.org/" rel="nofollow" target="_blank" &gt;Tor&lt;/a&gt; network and its hidden services. As I mentioned, Tor is not the only option in the game, and I want to offer a general introduction to &lt;a title="www.i2p2.de" href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;I2P&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;For a web browsing &lt;a title="Proxy Server" href="http://en.wikipedia.org/wiki/Proxy_server" rel="nofollow" target="_blank" &gt;proxy&lt;/a&gt; and hidden services host, Tor gets the job done well. But if you are looking to expand your options for secure communication, then enter I2P! This article will show you how to obtain and set up I2P, and in the process, we will also configure an IRC client to access the IRC2P network and get you up and running. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Invisible Internet and Onion Routing&lt;/h2&gt;&lt;p&gt;I2P initially began in 2003 as a proposed modification to &lt;a title="freenetproject.org" href="http://freenetproject.org/" rel="nofollow" target="_blank" &gt;Freenet&lt;/a&gt;. To deal with a wide range of attacks, I2P is fully distributed with no centralized resources— hence there are no directory servers keeping statistics regarding the performance and reliability of routers within the network. I2P is not 100% secure, as nothing is 100% secure, but using it will provide you with meaningful security nonetheless. &lt;/p&gt;&lt;p&gt;Content sent over I2P is encrypted through three-layer &lt;a  href="http://en.wikipedia.org/wiki/Garlic_routing" rel="nofollow" target="_blank" &gt;garlic encryption&lt;/a&gt;, used to verify the delivery of the message to the recipient. All messages passing through a tunnel are encrypted by the tunnel gateway to the tunnel endpoint, and undergo inter-router transport layer encryption along the way. You also have the ability to tunnel &lt;a title="TCP/IP" href="http://www.w3schools.com/tcpip/tcpip_intro.asp" rel="nofollow" target="_blank" &gt;TCP/IP&lt;/a&gt; based applications (IRC, Jabber, steaming music, etc.) through the network. In fact, you can even tunnel your torrent downloads!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt; Download I2P&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Let's start with a visit to the &lt;a title="I2P Download" href="http://www.i2p2.de/download.html" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; page to grab the Windows binary or source code, if needed. If you are using Debian/Ubuntu or Mint, we can add the repositories by simply typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo apt-add-repository ppa:i2p-maintainers/i2p&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get update&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get install i2p&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This downloads and installs the I2P router on your computer.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt; Start the I2P Router&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now that we have the packages downloaded and installed, we must start the service. We do this by simply typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ i2prouter start&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655766071007369.jpg" class="imgCenter imgCenterFull " height="122" width="254" /&gt;&lt;/p&gt;&lt;p&gt;After we type that command, the I2P router will begin to bootstrap itself into the network. It is recommended to give this process some time as it seeks out and adds other nodes for you to route traffic through. After a few seconds, I2P will open a browser with the router console as seen below. You may close this.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 469px; height: 294px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655764984933461.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Invisible Internet Relay Chat&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Some of you might have a preferred IRC client already. I use &lt;a title="irssi" href="http://irssi.org/" rel="nofollow" target="_blank" &gt;Irssi&lt;/a&gt; myself, but &lt;a title="Xchat" href="http://xchat.org/" rel="nofollow" target="_blank" &gt;Xchat&lt;/a&gt; will work for most people. Normally, when you open the client you have the chance to connect to a server and port number. Because I2P runs as a service connected to your loopback address, we need to connect to it to access the IRC2P network by typing:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;/server localhost 6668&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655774486598150.jpg" class="hasLarge imgCenter imgCenterFull " height="600" width="592" /&gt;&lt;/p&gt;&lt;p&gt;That's it! You are now connected  to the IRC2P network. You can use normal IRC commands such as &lt;em&gt;/list&lt;/em&gt; to locate channels. Also please feel free to &lt;em&gt;/join&lt;/em&gt; #nullbyte and #i2p and say hello!&lt;/p&gt;&lt;h4 class="articleTip"&gt; tl;dr&lt;/h4&gt;&lt;p&gt;Just want the commands to get up and running? Look no further.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo apt-add-repository ppa:i2p-maintainers/i2p&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get update&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ sudo apt-get install i2p&lt;br /&gt;$ i2prouter start&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Then start your IRC client and type:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;/server localhost 6668&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;/join #nullbyte&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;See you in the Deep Web!&lt;/p&gt;&lt;p&gt;Image by &lt;a title="Innovata" href="http://www.innovata-llc.com/documents/images/Global%20Data.jpg" rel="nofollow" target="_blank" &gt;Innovat&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Four: The Invisible Internet&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://achievement-arcade.wonderhowto.com/blog/find-invisible-chest-elder-scrolls-v-skyrim-0132142/"&gt;How to Find an Invisible Chest in The Elder Scrolls V: Skyrim&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634658211204482289.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Important Astronomers: Galileo Galilei</title>
      <link>http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/" title="Important Astronomers: Galileo Galilei"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658204439218406.jpg" alt="Important Astronomers: Galileo Galilei" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fastronomy.wonderhowto.com%2fblog%2fimportant-astronomers-galileo-galilei-0133484%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fastronomy.wonderhowto.com%2fblog%2fimportant-astronomers-galileo-galilei-0133484%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11722869"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I'm starting a series on the top astronomers, with probably about eleven astronomers that I will be covering overall. So, let's start out from the top, with the top most important astronomer. In my opinion, &lt;a  href="http://en.wikipedia.org/wiki/Galileo_Galilei" rel="nofollow" target="_blank" &gt;Galileo Galilei&lt;/a&gt; is the top astronomer.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Galileo Galilei (February 15, 1564 - January 8, 1642)&lt;/h2&gt;&lt;p&gt;Galileo was born to a poor family in Pisa, Italy in 1564 to Vincenzo Galilei and Giulia Ammannati. He had six other siblings. Galileo wanted to be priest, but his father forced him to go to the University of Pisa with a medical degree (which turned out to be a good idea).&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654525155090507.jpg" class="hasLarge imgCenter imgCenterFull " height="752" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo talked his father into letting him go into mathematics instead of science. His first big accomplishment was creating a thermometer, called the Galileo Thermometer, which can be seen below. It is truly beautiful and is used mostly as decoration now.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654510865465409.jpg" class="hasLarge imgCenter imgCenterFull " height="1399" width="592" /&gt;&lt;/p&gt;&lt;p&gt;By 1589, Galileo was the top mathematics professor in Pisa. In 1592, Galileo moved to the University of Padua, and taught mathematics and astronomy. He made major accomplishments in the field of physics and astrology during this time period.&lt;/p&gt;&lt;p&gt;Around 1608, Galileo created a telescope with 3x magnification. Over the next few years, he created many other versions of his telescope, eventually boosting the magnification up to about 28x. He demonstrated his telescope to a range of different audiences, too.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634658196389448268.jpg" class="hasLarge imgCenter imgCenterFull " height="642" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo used these telescopes to make a ton of scientific discoveries:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Neptune&lt;/strong&gt;: All Galileo really did was observe Neptune. He followed it for a while and noticed it moved differently than the stars around it. He then lost track of it.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Venus&lt;/strong&gt;: After observing Venus for a while, Galileo discovered that it had phases just like the moon. Not only was this an interesting discovery, but it also supported the theory of &lt;a  href="http://en.wikipedia.org/wiki/Heliocentrism" rel="nofollow" target="_blank" &gt;heliocentrism&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Saturn: &lt;/strong&gt;Galileo also observed Saturn for a long time. Its rings confused Galileo, making him believe there were three planets. After Saturn lined up with Earth, he thought the rings disappeared. When they appeared again, he was even more confused.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Moon&lt;/strong&gt;: Basically, Galileo observed the moon for a while, and linked the moon's dark side with topological markers. He pretty much understood what the shadows on the moon where.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Jupiter and its moons: &lt;/strong&gt;After observing Jupiter for a while, in 1610, Galileo discovered three 'stars' around it. He observed them for a few days, and saw that the way they were moving couldn't be that of a star. He concluded that they must be orbiting around Jupiter. The moons he discovered were Ganymede, Europa, and Io. He later discovered a fourth moon, Callisto. This also proved an important point. Aristotelian Cosmology, which said that all astronomical bodies rotate around Earth, was obviously proved wrong by the discoveries of Galileo.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sunspots: &lt;/strong&gt;Galileo was one of the first people to observe sunspots on the sun. He actually grew blind at age 72 due to not using proper equipment while observing the sun.&lt;/p&gt;&lt;p&gt;Galileo, in the early 1630s, defended his theory of heliocentrism. This basically said that Earth rotates around the Sun, not that the Sun rotates around it. In a brief summary, Galileo was put on trial for defending heliocentrism, and although he lost the trial, he afterwards said that he never supported heliocentrism and pretty much walked away with only a house arrest. He would have been sentenced to death, otherwise.&lt;/p&gt;&lt;p&gt;Galileo eventually died on January 8, 1642, at age 77. He died from a high fever and irregular heartbeat. He was buried in a small room close to main body of the Basilica of Santa Croce. In 1737, he was located to the main body of the Basilica of Santa Croce. This is his tomb:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656973856135423.jpg" class="hasLarge imgCenter imgCenterFull " height="789" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo Galilei was an amazing person and deserves to be remembered for everything he's done for astronomy and beyond.&lt;/p&gt;&lt;p&gt;Photos by &lt;a  href="http://www.pbs.org/wgbh/nova/assets/img/posters/galileo-battle-for-the-heavens-vi.jpg" rel="nofollow" target="_blank" &gt;PBS&lt;/a&gt;, &lt;a  href="http://en.wikipedia.org/wiki/Galileo_Galilei" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/"&gt;Important Astronomers: Galileo Galilei&lt;/a&gt; on &lt;a href="http://astronomy.wonderhowto.com/"&gt;astronomy.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://astronomy.wonderhowto.com/blog/welcome-astronomy-world-0131965/"&gt;Welcome to Astronomy World!&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/draw-caricatures-part-1-3-0127786/"&gt;How To Draw Caricatures (Part 1 of 3)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://polymer-and-oil-clay.wonderhowto.com/blog/does-contemporary-art-mean-now-art-0124507/"&gt;Does &amp;quot;Contemporary Art&amp;quot; Mean &amp;quot;Now Art&amp;quot;??&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-planisphere-and-binoculars-for-stargazing-192356/"&gt;How to use a planisphere and binoculars for stargazing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://camping.wonderhowto.com/blog/howto-plan-camping-trip-for-large-group-near-los-angeles-0117950/"&gt;HowTo: Plan a Camping Trip for a Large Group near Los Angeles&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=6Iddr5Kz9QA:qbTceHDn14w:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=6Iddr5Kz9QA:qbTceHDn14w:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=6Iddr5Kz9QA:qbTceHDn14w:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=6Iddr5Kz9QA:qbTceHDn14w:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/6Iddr5Kz9QA" height="1" width="1"/&gt;</description>
      <comments>http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/#comments</comments>
      <pubDate>Sat, 25 Feb 2012 02:36:28 GMT</pubDate>
      <guid isPermaLink="true">http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/</guid>
      <dc:creator>Cerek Tunca</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Important Astronomers: Galileo Galilei</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/" title="Important Astronomers: Galileo Galilei"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634658204439218406.jpg" alt="Important Astronomers: Galileo Galilei" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fastronomy.wonderhowto.com%2fblog%2fimportant-astronomers-galileo-galilei-0133484%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fastronomy.wonderhowto.com%2fblog%2fimportant-astronomers-galileo-galilei-0133484%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11722869"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I'm starting a series on the top astronomers, with probably about eleven astronomers that I will be covering overall. So, let's start out from the top, with the top most important astronomer. In my opinion, &lt;a  href="http://en.wikipedia.org/wiki/Galileo_Galilei" rel="nofollow" target="_blank" &gt;Galileo Galilei&lt;/a&gt; is the top astronomer.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Galileo Galilei (February 15, 1564 - January 8, 1642)&lt;/h2&gt;&lt;p&gt;Galileo was born to a poor family in Pisa, Italy in 1564 to Vincenzo Galilei and Giulia Ammannati. He had six other siblings. Galileo wanted to be priest, but his father forced him to go to the University of Pisa with a medical degree (which turned out to be a good idea).&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654525155090507.jpg" class="hasLarge imgCenter imgCenterFull " height="752" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo talked his father into letting him go into mathematics instead of science. His first big accomplishment was creating a thermometer, called the Galileo Thermometer, which can be seen below. It is truly beautiful and is used mostly as decoration now.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654510865465409.jpg" class="hasLarge imgCenter imgCenterFull " height="1399" width="592" /&gt;&lt;/p&gt;&lt;p&gt;By 1589, Galileo was the top mathematics professor in Pisa. In 1592, Galileo moved to the University of Padua, and taught mathematics and astronomy. He made major accomplishments in the field of physics and astrology during this time period.&lt;/p&gt;&lt;p&gt;Around 1608, Galileo created a telescope with 3x magnification. Over the next few years, he created many other versions of his telescope, eventually boosting the magnification up to about 28x. He demonstrated his telescope to a range of different audiences, too.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634658196389448268.jpg" class="hasLarge imgCenter imgCenterFull " height="642" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo used these telescopes to make a ton of scientific discoveries:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Neptune&lt;/strong&gt;: All Galileo really did was observe Neptune. He followed it for a while and noticed it moved differently than the stars around it. He then lost track of it.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Venus&lt;/strong&gt;: After observing Venus for a while, Galileo discovered that it had phases just like the moon. Not only was this an interesting discovery, but it also supported the theory of &lt;a  href="http://en.wikipedia.org/wiki/Heliocentrism" rel="nofollow" target="_blank" &gt;heliocentrism&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Saturn: &lt;/strong&gt;Galileo also observed Saturn for a long time. Its rings confused Galileo, making him believe there were three planets. After Saturn lined up with Earth, he thought the rings disappeared. When they appeared again, he was even more confused.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Moon&lt;/strong&gt;: Basically, Galileo observed the moon for a while, and linked the moon's dark side with topological markers. He pretty much understood what the shadows on the moon where.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Jupiter and its moons: &lt;/strong&gt;After observing Jupiter for a while, in 1610, Galileo discovered three 'stars' around it. He observed them for a few days, and saw that the way they were moving couldn't be that of a star. He concluded that they must be orbiting around Jupiter. The moons he discovered were Ganymede, Europa, and Io. He later discovered a fourth moon, Callisto. This also proved an important point. Aristotelian Cosmology, which said that all astronomical bodies rotate around Earth, was obviously proved wrong by the discoveries of Galileo.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sunspots: &lt;/strong&gt;Galileo was one of the first people to observe sunspots on the sun. He actually grew blind at age 72 due to not using proper equipment while observing the sun.&lt;/p&gt;&lt;p&gt;Galileo, in the early 1630s, defended his theory of heliocentrism. This basically said that Earth rotates around the Sun, not that the Sun rotates around it. In a brief summary, Galileo was put on trial for defending heliocentrism, and although he lost the trial, he afterwards said that he never supported heliocentrism and pretty much walked away with only a house arrest. He would have been sentenced to death, otherwise.&lt;/p&gt;&lt;p&gt;Galileo eventually died on January 8, 1642, at age 77. He died from a high fever and irregular heartbeat. He was buried in a small room close to main body of the Basilica of Santa Croce. In 1737, he was located to the main body of the Basilica of Santa Croce. This is his tomb:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656973856135423.jpg" class="hasLarge imgCenter imgCenterFull " height="789" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Galileo Galilei was an amazing person and deserves to be remembered for everything he's done for astronomy and beyond.&lt;/p&gt;&lt;p&gt;Photos by &lt;a  href="http://www.pbs.org/wgbh/nova/assets/img/posters/galileo-battle-for-the-heavens-vi.jpg" rel="nofollow" target="_blank" &gt;PBS&lt;/a&gt;, &lt;a  href="http://en.wikipedia.org/wiki/Galileo_Galilei" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://astronomy.wonderhowto.com/blog/important-astronomers-galileo-galilei-0133484/"&gt;Important Astronomers: Galileo Galilei&lt;/a&gt; on &lt;a href="http://astronomy.wonderhowto.com/"&gt;astronomy.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://astronomy.wonderhowto.com/blog/welcome-astronomy-world-0131965/"&gt;Welcome to Astronomy World!&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/draw-caricatures-part-1-3-0127786/"&gt;How To Draw Caricatures (Part 1 of 3)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://polymer-and-oil-clay.wonderhowto.com/blog/does-contemporary-art-mean-now-art-0124507/"&gt;Does &amp;quot;Contemporary Art&amp;quot; Mean &amp;quot;Now Art&amp;quot;??&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-planisphere-and-binoculars-for-stargazing-192356/"&gt;How to use a planisphere and binoculars for stargazing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://camping.wonderhowto.com/blog/howto-plan-camping-trip-for-large-group-near-los-angeles-0117950/"&gt;HowTo: Plan a Camping Trip for a Large Group near Los Angeles&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634658204439218406.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Education/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions</title>
      <link>http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/" title="Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657818394818777.jpg" alt="Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwinspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwinspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id62529232"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;So far, there have been some excellent entries to our &lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-stock-photo-challenge-find-funniest-wtf-stock-image-ever-0133457/"&gt;WTFoto Stock Photo Challenge&lt;/a&gt;, but the battle is not over yet. You still have a couple days left to submit your best find to the &lt;a href="http://wtfoto.wonderhowto.com/corkboard/"&gt;WTFoto community corkboard&lt;/a&gt; for a chance to take the crown. Remember, we're looking for an absurd stock photo image that nobody's ever seen before. Entries are due Monday, February 27th, 11:59:59pm PST. One second later and, well... I'll probably just let it slide. But 2 seconds later and you're out!&lt;/p&gt;&lt;p&gt;To help get your creative juices flowing, here are some examples of what holds stock in a stock-off from my personal collection:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657104949093676.jpg?v=1&amp;amp;c=IWSAsset&amp;amp;k=2&amp;amp;d=A5C9C13351D9C3B798FA5B87E341C3AE9912AFE4B8BB38F503B3A9F35A37763D00123AA3B5A18ED0" class="imgCenter imgCenterFull " height="416" width="410" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a href="http://www.gettyimages.com/detail/photo/two-stuffed-chipmunks-in-mating-position-on-high-res-stock-photography/200125744-001" rel="nofollow" target="_blank" title="Getty Images"&gt;Getty Images&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657111772233660.jpg" class="hasLarge imgCenter imgCenterFull " height="883" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.123rf.com/photo_4083860_portrait-of-a-terrified-long-haired-and-extremely-skinny-bare-chested-asian-teen-boy-with-his-eyes-a.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657105440806539.jpg?v=1&amp;amp;c=IWSAsset&amp;amp;k=2&amp;amp;d=91F5CCEF208281FD0A6294BD404A109A045EC5737E3D5EB86B713C96D9EFE1E6" class="imgCenter imgCenterFull " height="338" width="506" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.thinkstockphotos.com/image/stock-photo-woman-on-segway-riding-past-two-men-and-woman/75627884/" rel="nofollow" target="_blank" title="Thinkstock"&gt;Thinkstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657106544820479.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-10533974-two-men-at-the-bathroom-urinals.php" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657107668022451.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-6427347-punk-businessman-starting-a-fight.php?st=02c41d4" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657250345405051.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-14797427-to-have-a-pineapple.php?st=714d951" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657254908725066.jpg" class="hasLarge imgCenter imgCenterFull " height="449" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.123rf.com/photo_8833509_family-together-at-home-having-meal-with-a-child.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657255609010296.jpg" class="imgCenter imgCenterFull " height="366" width="380" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.istockphoto.com/stock-photo-18181027-beautiful-zebra-centaur.php?st=8d1556e" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657256245335414.jpg" class="imgCenter imgCenterFull " height="400" width="267" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.123rf.com/photo_3944432_caucasian-man-captured-young-beautiful-native-woman-chokes-female-and-holds-brass-knuckle-push-knife.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657257124084957.jpg" class="imgCenter imgCenterFull " height="380" width="339" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.istockphoto.com/stock-photo-2559585-newborn-baby-s-face-on-cracked-broken-egg.php?st=316f746" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657260791183398.jpg" class="imgCenter imgCenterFull " height="318" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.bigstockphoto.com/image-8913346/stock-photo-surreal-mutant-back" rel="nofollow" target="_blank" title="Bigstock"&gt;Bigstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657261590684802.jpg" class="imgCenter imgCenterFull " height="320" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.shutterstock.com/cat.mhtml?searchterm=fat+asian&amp;amp;x=0&amp;amp;y=0&amp;amp;search_group=&amp;amp;lang=en&amp;amp;search_source=search_form#id=69535579" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657262830262979.jpg" class="imgCenter imgCenterFull " height="442" width="450" /&gt;Photo by &lt;a  href="http://www.shutterstock.com/cat.mhtml?lang=en&amp;amp;search_source=search_form&amp;amp;version=llv1&amp;amp;anyorall=all&amp;amp;safesearch=1&amp;amp;searchterm=amputate&amp;amp;search_group=&amp;amp;orient=&amp;amp;search_cat=&amp;amp;searchtermx=&amp;amp;photographer_name=&amp;amp;people_gender=&amp;amp;people_age=&amp;amp;people_ethnicity=&amp;amp;people_number=&amp;amp;commercial_ok=&amp;amp;color=&amp;amp;show_color_wheel=1#id=85661512" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657263428836031.jpg" class="imgCenter imgCenterFull " height="344" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.shutterstock.com/pic-52876711/stock-photo-ethnic-adult-man-having-fun-sharing-photo-on-chat-internet-with-laptop.html" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657268191680396.jpg" class="imgCenter imgCenterFull " height="450" width="299" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.dreamstime.com/stock-photography-girl-biting-a-hammer-image7789842" rel="nofollow" target="_blank" title="Dreamstime"&gt;Dreamstime&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657268594941105.jpg" class="imgCenter imgCenterFull " height="450" width="300" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.dreamstime.com/royalty-free-stock-photography-saving-for-the-sex-change-image18729747" rel="nofollow" target="_blank" title="Dreamstime"&gt;Dreamstime&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Just a reminder—photos of Stockard Channing will not be accepted. Nor will photos of beef stock, Pippi Longstocking, or the New York Stock exchange.&lt;/p&gt;&lt;p&gt;DON'T FORGET TO CITE YOUR SOURCES, EVEN IF YOU ARE THE MODEL IN THE PHOTO (that's me in the last one.)&lt;/p&gt;&lt;p&gt;Can't wait to see what you all find.&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/"&gt;Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions&lt;/a&gt; on &lt;a href="http://wtfoto.wonderhowto.com/"&gt;wtfoto.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-stock-photo-challenge-find-funniest-wtf-stock-image-ever-0133457/"&gt;WTFoto Stock Photo Challenge! Find the Funniest WTF Stock Image Ever&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-euryoky-0129848/"&gt;Scrabble Bingo of the Day: EURYOKY&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anyone-can-retire-early-wealthy-part-3-stock-market-0132841/"&gt;How Anyone Can Retire Early &amp;amp; Wealthy, Part 3: The Stock Market&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/if-cats-could-play-scrabble-0130048/"&gt;If Cats Could Play Scrabble...&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://tech-pr0n.wonderhowto.com/blog/best-apps-for-customized-cover-photos-your-facebook-timeline-0132575/"&gt;The Best Apps for Customized Cover Photos on Your Facebook Timeline&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iJIurEpkGw0:NYYElDzmxUI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iJIurEpkGw0:NYYElDzmxUI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=iJIurEpkGw0:NYYElDzmxUI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=iJIurEpkGw0:NYYElDzmxUI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/iJIurEpkGw0" height="1" width="1"/&gt;</description>
      <comments>http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/#comments</comments>
      <pubDate>Sat, 25 Feb 2012 21:50:22 GMT</pubDate>
      <guid isPermaLink="true">http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/</guid>
      <dc:creator>James Carr</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/" title="Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657818394818777.jpg" alt="Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwinspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwinspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id62529232"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;So far, there have been some excellent entries to our &lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-stock-photo-challenge-find-funniest-wtf-stock-image-ever-0133457/"&gt;WTFoto Stock Photo Challenge&lt;/a&gt;, but the battle is not over yet. You still have a couple days left to submit your best find to the &lt;a href="http://wtfoto.wonderhowto.com/corkboard/"&gt;WTFoto community corkboard&lt;/a&gt; for a chance to take the crown. Remember, we're looking for an absurd stock photo image that nobody's ever seen before. Entries are due Monday, February 27th, 11:59:59pm PST. One second later and, well... I'll probably just let it slide. But 2 seconds later and you're out!&lt;/p&gt;&lt;p&gt;To help get your creative juices flowing, here are some examples of what holds stock in a stock-off from my personal collection:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657104949093676.jpg?v=1&amp;amp;c=IWSAsset&amp;amp;k=2&amp;amp;d=A5C9C13351D9C3B798FA5B87E341C3AE9912AFE4B8BB38F503B3A9F35A37763D00123AA3B5A18ED0" class="imgCenter imgCenterFull " height="416" width="410" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a href="http://www.gettyimages.com/detail/photo/two-stuffed-chipmunks-in-mating-position-on-high-res-stock-photography/200125744-001" rel="nofollow" target="_blank" title="Getty Images"&gt;Getty Images&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657111772233660.jpg" class="hasLarge imgCenter imgCenterFull " height="883" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.123rf.com/photo_4083860_portrait-of-a-terrified-long-haired-and-extremely-skinny-bare-chested-asian-teen-boy-with-his-eyes-a.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657105440806539.jpg?v=1&amp;amp;c=IWSAsset&amp;amp;k=2&amp;amp;d=91F5CCEF208281FD0A6294BD404A109A045EC5737E3D5EB86B713C96D9EFE1E6" class="imgCenter imgCenterFull " height="338" width="506" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.thinkstockphotos.com/image/stock-photo-woman-on-segway-riding-past-two-men-and-woman/75627884/" rel="nofollow" target="_blank" title="Thinkstock"&gt;Thinkstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657106544820479.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-10533974-two-men-at-the-bathroom-urinals.php" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657107668022451.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-6427347-punk-businessman-starting-a-fight.php?st=02c41d4" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657250345405051.jpg" class="imgCenter imgCenterFull " height="380" width="253" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.istockphoto.com/stock-photo-14797427-to-have-a-pineapple.php?st=714d951" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657254908725066.jpg" class="hasLarge imgCenter imgCenterFull " height="449" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Image by &lt;a  href="http://www.123rf.com/photo_8833509_family-together-at-home-having-meal-with-a-child.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657255609010296.jpg" class="imgCenter imgCenterFull " height="366" width="380" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.istockphoto.com/stock-photo-18181027-beautiful-zebra-centaur.php?st=8d1556e" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657256245335414.jpg" class="imgCenter imgCenterFull " height="400" width="267" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.123rf.com/photo_3944432_caucasian-man-captured-young-beautiful-native-woman-chokes-female-and-holds-brass-knuckle-push-knife.html" rel="nofollow" target="_blank" title="123rf"&gt;123rf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657257124084957.jpg" class="imgCenter imgCenterFull " height="380" width="339" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.istockphoto.com/stock-photo-2559585-newborn-baby-s-face-on-cracked-broken-egg.php?st=316f746" rel="nofollow" target="_blank" title="iStock"&gt;iStock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657260791183398.jpg" class="imgCenter imgCenterFull " height="318" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.bigstockphoto.com/image-8913346/stock-photo-surreal-mutant-back" rel="nofollow" target="_blank" title="Bigstock"&gt;Bigstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657261590684802.jpg" class="imgCenter imgCenterFull " height="320" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.shutterstock.com/cat.mhtml?searchterm=fat+asian&amp;amp;x=0&amp;amp;y=0&amp;amp;search_group=&amp;amp;lang=en&amp;amp;search_source=search_form#id=69535579" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657262830262979.jpg" class="imgCenter imgCenterFull " height="442" width="450" /&gt;Photo by &lt;a  href="http://www.shutterstock.com/cat.mhtml?lang=en&amp;amp;search_source=search_form&amp;amp;version=llv1&amp;amp;anyorall=all&amp;amp;safesearch=1&amp;amp;searchterm=amputate&amp;amp;search_group=&amp;amp;orient=&amp;amp;search_cat=&amp;amp;searchtermx=&amp;amp;photographer_name=&amp;amp;people_gender=&amp;amp;people_age=&amp;amp;people_ethnicity=&amp;amp;people_number=&amp;amp;commercial_ok=&amp;amp;color=&amp;amp;show_color_wheel=1#id=85661512" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657263428836031.jpg" class="imgCenter imgCenterFull " height="344" width="450" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.shutterstock.com/pic-52876711/stock-photo-ethnic-adult-man-having-fun-sharing-photo-on-chat-internet-with-laptop.html" rel="nofollow" target="_blank" title="Shutterstock"&gt;Shutterstock&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657268191680396.jpg" class="imgCenter imgCenterFull " height="450" width="299" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.dreamstime.com/stock-photography-girl-biting-a-hammer-image7789842" rel="nofollow" target="_blank" title="Dreamstime"&gt;Dreamstime&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634657268594941105.jpg" class="imgCenter imgCenterFull " height="450" width="300" /&gt;&lt;/p&gt;&lt;p&gt;Photo by &lt;a  href="http://www.dreamstime.com/royalty-free-stock-photography-saving-for-the-sex-change-image18729747" rel="nofollow" target="_blank" title="Dreamstime"&gt;Dreamstime&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Just a reminder—photos of Stockard Channing will not be accepted. Nor will photos of beef stock, Pippi Longstocking, or the New York Stock exchange.&lt;/p&gt;&lt;p&gt;DON'T FORGET TO CITE YOUR SOURCES, EVEN IF YOU ARE THE MODEL IN THE PHOTO (that's me in the last one.)&lt;/p&gt;&lt;p&gt;Can't wait to see what you all find.&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://wtfoto.wonderhowto.com/blog/winspiration-16-crazy-stock-photos-inspire-your-wtfoto-contest-submissions-0133565/"&gt;Winspiration: 16 Crazy Stock Photos to Inspire Your WTFoto Contest Submissions&lt;/a&gt; on &lt;a href="http://wtfoto.wonderhowto.com/"&gt;wtfoto.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-stock-photo-challenge-find-funniest-wtf-stock-image-ever-0133457/"&gt;WTFoto Stock Photo Challenge! Find the Funniest WTF Stock Image Ever&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-euryoky-0129848/"&gt;Scrabble Bingo of the Day: EURYOKY&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anyone-can-retire-early-wealthy-part-3-stock-market-0132841/"&gt;How Anyone Can Retire Early &amp;amp; Wealthy, Part 3: The Stock Market&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/if-cats-could-play-scrabble-0130048/"&gt;If Cats Could Play Scrabble...&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://tech-pr0n.wonderhowto.com/blog/best-apps-for-customized-cover-photos-your-facebook-timeline-0132575/"&gt;The Best Apps for Customized Cover Photos on Your Facebook Timeline&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657818394818777.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Games/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services</title>
      <link>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657110012394569.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id43679109"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;For a moment, picture a situation where you want to host some files or images, but you do not want it traced back to you. Perhaps you're working on a project with others and need secure data storage. Anonymity is the new shield of the 21st century—and you best protect yourself. As always here at Null Byte, we are trying to make that happen. Before someone can learn how to root a box, they need to learn how &lt;em&gt;not&lt;/em&gt; to be found. I can not stress that point enough.&lt;/p&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;last article&lt;/a&gt;, we spent some time going over the concepts of onion routing and how it can be useful to you. Before that, we covered the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;concept of deep web&lt;/a&gt;. In this article I will talk about Tor hidden services, what they are, and what they can be used for. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Tor Hidden Services&lt;/h2&gt;&lt;p&gt;A Tor hidden service is simply a web server that runs locally and only takes requests from inside the Tor network. It is bound to &lt;a title="127.0.0.1" href="http://en.wikipedia.org/wiki/Localhost" rel="nofollow" target="_blank" &gt;localhost&lt;/a&gt;, so it is not visible or accessible to the outside Internet. Hidden services do not require registration or processing because they are anonymous, so there is no domain name to purchase and use. You may simply set up a web server, and point it to your loopback address. The network will then generate a Tor host name to be located by. Knowing this also explains the sometimes varied uptime of hidden services in general. &lt;/p&gt;&lt;p&gt;Due to the nature of hidden services being anonymous to a degree, the content can be extreme. Like anything in life, please exercise caution, but enjoy yourself. You will find hackers,  crackers, porn and political discontent. You will find places to have your hashes cracked and places that sell drugs. It is the wild west of the modern day Internet. Viewer discretion is advised.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Setting Up Your Own Hidden Service&lt;/h2&gt;&lt;p&gt;If you have gotten this far in my series, you are probably interested in setting up your own service. This can be for your friends or even to share things with random people across the world. You could even &lt;a title="using GPG to encrypt" href="http://null-byte.wonderhowto.com/blog/uncrackable-secure-your-secrets-with-4096-bit-encryption-0133456/"&gt;encrypt&lt;/a&gt; files and place them on your hidden service to be picked up by others, adding extra security. &lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Get the Tor Client&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;In the previous article, we downloaded and used the Tor browser bundle. This works great for simple web browsing, but if we want to operate a hidden service, we need to &lt;a title="Download" href="https://www.torproject.org/download/download-unix.html.en" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; and install the actual Tor client. The installation is a simple matter in most cases, but might require a few &lt;a title="Ubuntu/Debian Install" href="https://www.torproject.org/docs/debian.html.en#ubuntu" rel="nofollow" target="_blank" &gt;extra steps&lt;/a&gt; for Ubuntu/Debian users.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655136963242400.jpg" class="hasLarge imgCenter imgCenterFull " height="280" width="592" /&gt;&lt;/p&gt;&lt;p&gt;After we're finished, we have the Tor client running on a default port of 9050 and are ready to go!&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655142869100773.jpg" class="hasLarge imgCenter imgCenterFull " height="187" width="592" /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Set Up Your Web Server&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;If you are using Linux, your absolute best choice for a web server is &lt;a title="ThttpD" href="http://www.acme.com/software/thttpd/" rel="nofollow" target="_blank" &gt;ThttpD&lt;/a&gt;. You may use more mainstream servers like Apache. Windows users will find a good home there, but in this tutorial, we will focus on ThttpD.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ wget http://www.acme.com/software/thttpd/thttpd-2.25b.tar.gz&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ tar zxvf thttpd-2.25b.tar.gz&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Move into the new directory to configure and compile from source:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo ./configure &amp;amp;&amp;amp; make&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ mkdir hidserv; cd hidserv&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ cd ..&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ ./thttpd -p 5222 -h localhost&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Tip&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Adding a semi colon to a command allows us to follow it up with another command!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The last command started the web server and told it to use port 5222 and localhost as its host. You can click this &lt;a title="Localhost:5222" href="http://localhost:5222/"&gt;link&lt;/a&gt; to see if it worked. If you see the page below, you are on the right track.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655158308135890.jpg" class="hasLarge imgCenter imgCenterFull " height="353" width="592" /&gt;&lt;/p&gt;&lt;p&gt;That's it! We are now ready to finish up and connect with Tor!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt; Turning Your Web Server into a Hidden Service&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Navigate to your /etc/tor directory and open the file named &lt;em&gt;torrc&lt;/em&gt; with your favorite editor (I use &lt;a title="vim" href="http://www.vim.org/" rel="nofollow" target="_blank" &gt;vim&lt;/a&gt;). This is a configuration file for letting Tor know you are running a hidden service. Scroll down about halfway until you see the title:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;### This section is just for location-hidden services ###&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;And add the following lines under that:&lt;/p&gt;&lt;p&gt; &lt;strong&gt;HiddenServiceDir /home/username/hidden_service/ &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;HiddenServicePort 80 127.0.0.1:5222&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Username&lt;/em&gt; is the name you log into on your Linux box with and &lt;em&gt;hidden&lt;/em&gt;_&lt;em&gt;service&lt;/em&gt; is whatever name you wish to give it. &lt;/p&gt;&lt;p&gt;Now restart Tor. When it starts back up, it reads the file &lt;em&gt;torrc&lt;/em&gt;, follows the instructions, and bootstraps your service into the Tor network. It will then automatically create the 'hidden_service' directory that you specified (if necessary), and it will create two files there, &lt;em&gt;private_key&lt;/em&gt; and &lt;em&gt;hostname&lt;/em&gt;. &lt;/p&gt;&lt;p&gt;The private key is identical to the idea we discussed in our &lt;a title="GPG" href="http://null-byte.wonderhowto.com/blog/uncrackable-secure-your-secrets-with-4096-bit-encryption-0133456/"&gt;GPG article&lt;/a&gt;. Keep this key secret! Anyone who obtains it can impersonate your hidden service!&lt;/p&gt;&lt;p&gt;The hostname is a URL created by the network used to identify you from other services, it should look something like &lt;em&gt;uy4htf7ssvv3gfh8g.onion&lt;/em&gt;. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Conclusion&lt;/h2&gt;&lt;p&gt;This was just a taste of what's out there. From here you can branch out to configure your service however you need it. I implore you to spend some time on the Tor network and see what is all there. However, for the more savvy and security minded, Tor is not the best choice. In my &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;next and final article&lt;/a&gt; in this series, I will go over the &lt;a title="i2p" href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;Invisible Internet Project&lt;/a&gt; known as i2p. The development of i2p started where Tor left off, improving upon its base and adding more features for the security minded.  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;&lt;strong&gt;Continue to Part Four to Learn About the Invisible Internet Project (I2P)&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Questions? Concerns? Leave me a comment or drop by our &lt;a href="https://darchoods.net:9090/?channels=nullbyte" rel="nofollow" target="_blank" &gt;IRC channel &lt;/a&gt;and say hello.&lt;/p&gt;&lt;p&gt;Photo by &lt;a title="Myhosting" href="http://myhosting.com/blog/wp-content/uploads/2011/06/fbi-agent-badge.jpg" rel="nofollow" target="_blank" &gt;MyHosting&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/create-free-ssh-account-shellmix-use-as-webhost-more-0131822/"&gt;How to Create a Free SSH Account on Shellmix to Use as a Webhost &amp;amp; More&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QSlf5GCcdF4:E50dFUFNKT4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QSlf5GCcdF4:E50dFUFNKT4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QSlf5GCcdF4:E50dFUFNKT4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QSlf5GCcdF4:E50dFUFNKT4:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/QSlf5GCcdF4" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/#comments</comments>
      <pubDate>Sat, 25 Feb 2012 02:10:00 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/</guid>
      <dc:creator>Allen Freeman</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657110012394569.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id43679109"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;For a moment, picture a situation where you want to host some files or images, but you do not want it traced back to you. Perhaps you're working on a project with others and need secure data storage. Anonymity is the new shield of the 21st century—and you best protect yourself. As always here at Null Byte, we are trying to make that happen. Before someone can learn how to root a box, they need to learn how &lt;em&gt;not&lt;/em&gt; to be found. I can not stress that point enough.&lt;/p&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;last article&lt;/a&gt;, we spent some time going over the concepts of onion routing and how it can be useful to you. Before that, we covered the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;concept of deep web&lt;/a&gt;. In this article I will talk about Tor hidden services, what they are, and what they can be used for. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Tor Hidden Services&lt;/h2&gt;&lt;p&gt;A Tor hidden service is simply a web server that runs locally and only takes requests from inside the Tor network. It is bound to &lt;a title="127.0.0.1" href="http://en.wikipedia.org/wiki/Localhost" rel="nofollow" target="_blank" &gt;localhost&lt;/a&gt;, so it is not visible or accessible to the outside Internet. Hidden services do not require registration or processing because they are anonymous, so there is no domain name to purchase and use. You may simply set up a web server, and point it to your loopback address. The network will then generate a Tor host name to be located by. Knowing this also explains the sometimes varied uptime of hidden services in general. &lt;/p&gt;&lt;p&gt;Due to the nature of hidden services being anonymous to a degree, the content can be extreme. Like anything in life, please exercise caution, but enjoy yourself. You will find hackers,  crackers, porn and political discontent. You will find places to have your hashes cracked and places that sell drugs. It is the wild west of the modern day Internet. Viewer discretion is advised.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Setting Up Your Own Hidden Service&lt;/h2&gt;&lt;p&gt;If you have gotten this far in my series, you are probably interested in setting up your own service. This can be for your friends or even to share things with random people across the world. You could even &lt;a title="using GPG to encrypt" href="http://null-byte.wonderhowto.com/blog/uncrackable-secure-your-secrets-with-4096-bit-encryption-0133456/"&gt;encrypt&lt;/a&gt; files and place them on your hidden service to be picked up by others, adding extra security. &lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Get the Tor Client&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;In the previous article, we downloaded and used the Tor browser bundle. This works great for simple web browsing, but if we want to operate a hidden service, we need to &lt;a title="Download" href="https://www.torproject.org/download/download-unix.html.en" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; and install the actual Tor client. The installation is a simple matter in most cases, but might require a few &lt;a title="Ubuntu/Debian Install" href="https://www.torproject.org/docs/debian.html.en#ubuntu" rel="nofollow" target="_blank" &gt;extra steps&lt;/a&gt; for Ubuntu/Debian users.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655136963242400.jpg" class="hasLarge imgCenter imgCenterFull " height="280" width="592" /&gt;&lt;/p&gt;&lt;p&gt;After we're finished, we have the Tor client running on a default port of 9050 and are ready to go!&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655142869100773.jpg" class="hasLarge imgCenter imgCenterFull " height="187" width="592" /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Set Up Your Web Server&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;If you are using Linux, your absolute best choice for a web server is &lt;a title="ThttpD" href="http://www.acme.com/software/thttpd/" rel="nofollow" target="_blank" &gt;ThttpD&lt;/a&gt;. You may use more mainstream servers like Apache. Windows users will find a good home there, but in this tutorial, we will focus on ThttpD.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ wget http://www.acme.com/software/thttpd/thttpd-2.25b.tar.gz&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ tar zxvf thttpd-2.25b.tar.gz&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Move into the new directory to configure and compile from source:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ sudo ./configure &amp;amp;&amp;amp; make&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ mkdir hidserv; cd hidserv&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ cd ..&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$ ./thttpd -p 5222 -h localhost&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Tip&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Adding a semi colon to a command allows us to follow it up with another command!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The last command started the web server and told it to use port 5222 and localhost as its host. You can click this &lt;a title="Localhost:5222" href="http://localhost:5222/"&gt;link&lt;/a&gt; to see if it worked. If you see the page below, you are on the right track.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655158308135890.jpg" class="hasLarge imgCenter imgCenterFull " height="353" width="592" /&gt;&lt;/p&gt;&lt;p&gt;That's it! We are now ready to finish up and connect with Tor!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt; Turning Your Web Server into a Hidden Service&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Navigate to your /etc/tor directory and open the file named &lt;em&gt;torrc&lt;/em&gt; with your favorite editor (I use &lt;a title="vim" href="http://www.vim.org/" rel="nofollow" target="_blank" &gt;vim&lt;/a&gt;). This is a configuration file for letting Tor know you are running a hidden service. Scroll down about halfway until you see the title:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;### This section is just for location-hidden services ###&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;And add the following lines under that:&lt;/p&gt;&lt;p&gt; &lt;strong&gt;HiddenServiceDir /home/username/hidden_service/ &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;HiddenServicePort 80 127.0.0.1:5222&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Username&lt;/em&gt; is the name you log into on your Linux box with and &lt;em&gt;hidden&lt;/em&gt;_&lt;em&gt;service&lt;/em&gt; is whatever name you wish to give it. &lt;/p&gt;&lt;p&gt;Now restart Tor. When it starts back up, it reads the file &lt;em&gt;torrc&lt;/em&gt;, follows the instructions, and bootstraps your service into the Tor network. It will then automatically create the 'hidden_service' directory that you specified (if necessary), and it will create two files there, &lt;em&gt;private_key&lt;/em&gt; and &lt;em&gt;hostname&lt;/em&gt;. &lt;/p&gt;&lt;p&gt;The private key is identical to the idea we discussed in our &lt;a title="GPG" href="http://null-byte.wonderhowto.com/blog/uncrackable-secure-your-secrets-with-4096-bit-encryption-0133456/"&gt;GPG article&lt;/a&gt;. Keep this key secret! Anyone who obtains it can impersonate your hidden service!&lt;/p&gt;&lt;p&gt;The hostname is a URL created by the network used to identify you from other services, it should look something like &lt;em&gt;uy4htf7ssvv3gfh8g.onion&lt;/em&gt;. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Conclusion&lt;/h2&gt;&lt;p&gt;This was just a taste of what's out there. From here you can branch out to configure your service however you need it. I implore you to spend some time on the Tor network and see what is all there. However, for the more savvy and security minded, Tor is not the best choice. In my &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;next and final article&lt;/a&gt; in this series, I will go over the &lt;a title="i2p" href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;Invisible Internet Project&lt;/a&gt; known as i2p. The development of i2p started where Tor left off, improving upon its base and adding more features for the security minded.  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-four-invisible-internet-0133511/"&gt;&lt;strong&gt;Continue to Part Four to Learn About the Invisible Internet Project (I2P)&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Questions? Concerns? Leave me a comment or drop by our &lt;a href="https://darchoods.net:9090/?channels=nullbyte" rel="nofollow" target="_blank" &gt;IRC channel &lt;/a&gt;and say hello.&lt;/p&gt;&lt;p&gt;Photo by &lt;a title="Myhosting" href="http://myhosting.com/blog/wp-content/uploads/2011/06/fbi-agent-badge.jpg" rel="nofollow" target="_blank" &gt;MyHosting&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Three: Hidden Services&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/create-free-ssh-account-shellmix-use-as-webhost-more-0131822/"&gt;How to Create a Free SSH Account on Shellmix to Use as a Webhost &amp;amp; More&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657110012394569.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How to Code a Simple Java App to Kill Any Process After a Specified Time</title>
      <link>http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/" title="How to Code a Simple Java App to Kill Any Process After a Specified Time"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656791033018311.jpg" alt="How to Code a Simple Java App to Kill Any Process After a Specified Time" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fcode-simple-java-app-kill-any-process-after-specified-time-0133513%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fcode-simple-java-app-kill-any-process-after-specified-time-0133513%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11349109"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I may be a bit weird, but I enjoy listening to music at night as I fall asleep. Sure, you could create a playlist of songs so that it stopped after all the songs finished playing, but I have a rather extensive database of music and I enjoy listening to them randomly. Also, I like to ensure it terminates after a specific amount of time (I don't want it playing all night). Or sometimes I use it when I am cooking so that when the music stops, I know I need to check on my food, etc.&lt;/p&gt;&lt;p&gt;I primarily use this to kill my music player after a certain amount of time, but it can easily be changed to kill any process that you choose (see below).&lt;/p&gt;&lt;p&gt;Feel free to download the following for your enjoyment: &lt;a  href="http://www.mediafire.com/?lzeq1vkbsi945ac" rel="nofollow" target="_blank" &gt;source-code&lt;/a&gt;, &lt;a  href="http://www.mediafire.com/?t3auva6wf08hcqf" rel="nofollow" target="_blank" &gt;Spotify&lt;/a&gt;, and &lt;a  href="http://www.mediafire.com/?1zm749j7kcbcz0k" rel="nofollow" target="_blank" &gt;VLC&lt;/a&gt;. The source-code is a .java file of the code used to create the program. Spotify and VLC kill the given programs after a specified amount of time. They are .jar files, so you will need to have &lt;a  href="http://www.java.com/en/" rel="nofollow" target="_blank" &gt;Java&lt;/a&gt; installed on your machine, which most people will have already. You can view the source-code using a text editor, but will need an IDE if you want to create your own program. I recommend &lt;a  href="http://www.eclipse.org/" rel="nofollow" target="_blank" &gt;Eclipse&lt;/a&gt;.&lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warning&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Be careful of what processes you terminate, we are not responsible for any damage you may inadvertently cause.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="sectionHeadline"&gt;How the Code Works&lt;/h2&gt;&lt;p&gt;There is really only one thing that you really need to be worried about, and that is what process you are killing. Refer to the &lt;em&gt;execKill() &lt;/em&gt;method:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655368027260242.jpg" class="hasLarge imgCenter imgCenterFull " height="166" width="592" /&gt;&lt;/p&gt;&lt;p&gt;On line #26, the string "TASKKILL /F /IM spotify.exe" tells the program what command to execute after a certain amount of time. All you really need to do is change "spotify.exe" to whatever process you want to kill. You can view all processes currently running by pressing &lt;strong&gt;ctrl+alt+del&lt;/strong&gt;.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Example with Firefox&lt;/h2&gt;&lt;p&gt;&lt;em&gt;Suppose you wanted to close your web-browser after 15 minutes, here are the detailed steps on how to do this:&lt;/em&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Getting Java Ready&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Make sure you have downloaded Java and an IDE (Eclipse/NetBeans), then open up your IDE.&lt;/li&gt;&lt;li&gt;In the package explorer, right-click and select "New" -&amp;gt; "Java Project". Name it whatever you want to, then click "Finish".&lt;/li&gt;&lt;li&gt;Right-click your new project and select "New" -&amp;gt; "Package". Name it something useful, perhaps the name of the program you want to kill.&lt;/li&gt;&lt;li&gt;Right-click the package you just selected and select "New" -&amp;gt; "Class". You can name this whatever you want, but if you name it something other than "spotifyKiller", make sure to change it in the source code.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Readying the Code&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Download the source-code file (above), if you haven't already.&lt;/li&gt;&lt;li&gt;Open it with a text editor, such as WordPad or Notepad.&lt;/li&gt;&lt;li&gt;Press &lt;strong&gt;ctrl+a &lt;/strong&gt;(selects all), then &lt;strong&gt;ctrl+c&lt;/strong&gt; (copies code).&lt;/li&gt;&lt;li&gt;Go to the IDE and inside the class and put your cursor between the two curly braces by clicking there and then press &lt;strong&gt;ctrl+v&lt;/strong&gt; to paste what we copied.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Modifying the Code&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;As in the "How the Code Works", change &lt;em&gt;spotify.exe &lt;/em&gt;to &lt;em&gt;firefox.exe&lt;/em&gt;.&lt;/li&gt;&lt;li&gt;Press &lt;strong&gt;ctrl+s &lt;/strong&gt;to save the code, then open an instance of Firefox.&lt;/li&gt;&lt;li&gt;Click the "Run" button in Eclipse (it looks like a green play button). This should cause a window to pop up. Type "1" into the box and press "Start" and wait 1 minute. If all went well Firefox will have closed. If so, proceed, otherwise go back over the steps and try to figure out what went wrong.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 4 &lt;/span&gt;&lt;span class="stepText"&gt;Exporting&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now your code should be working as we want. We don't want to have to run the code from our IDE every time, so we are going to export it to a runnable file:&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Make sure your code is saved.&lt;/li&gt;&lt;li&gt;Look in the top left-hand corner of Eclipse and select "File" -&amp;gt; "Export...". &lt;/li&gt;&lt;li&gt;A window will pop up, when this happens select "Runnable Jar File" and then "Next".&lt;/li&gt;&lt;li&gt;Make sure your screen looks something like the picture below. You can specify where you want to be exported, so you can find it easily later on:&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655388603384382.jpg" class="imgCenter imgCenterFull " height="548" width="522" /&gt;&lt;/p&gt;&lt;p&gt;5.  Finally, click "Finish"!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 5 &lt;/span&gt;&lt;span class="stepText"&gt;Running the Program&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now all you have to do is double click on the file you just created and input how many minutes you want until Firefox should close. For this example, we put "15" and click "Start" and voilà! Firefox closes after 15 minutes have passed, yay!&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Thank you for reading! Stay tuned for more &lt;em&gt;&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/"&gt;&lt;strong&gt;Invisible Computer&lt;/strong&gt;&lt;/a&gt;&lt;/em&gt; articles!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a href="http://twentyeighttwelve.com/wp-content/uploads/2011/08/tron-legacy-kill.jpg" rel="nofollow" target="_blank" &gt;twentyeighttwelve&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/"&gt;How to Code a Simple Java App to Kill Any Process After a Specified Time&lt;/a&gt; on &lt;a href="http://invisiblecomputer.wonderhowto.com/"&gt;invisiblecomputer.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-override-method-for-java-programming-321162/"&gt;How to override a method for Java programming&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-simple-polymorphic-program-java-321196/"&gt;How to create a simple polymorphic program in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-build-list-arrays-when-programming-java-321243/"&gt;How to build list arrays when programming in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-basic-math-operators-when-programming-java-321193/"&gt;How to use basic math operators when programming in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-write-hello-world-program-using-java-321168/"&gt;How to write a &amp;quot;Hello, World&amp;quot; program using Java&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=w5OFv4Yq-yo:INy9b2FCsAQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=w5OFv4Yq-yo:INy9b2FCsAQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=w5OFv4Yq-yo:INy9b2FCsAQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=w5OFv4Yq-yo:INy9b2FCsAQ:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/w5OFv4Yq-yo" height="1" width="1"/&gt;</description>
      <comments>http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/#comments</comments>
      <pubDate>Thu, 23 Feb 2012 02:25:21 GMT</pubDate>
      <guid isPermaLink="true">http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/</guid>
      <dc:creator>JT Newsome</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How to Code a Simple Java App to Kill Any Process After a Specified Time</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/" title="How to Code a Simple Java App to Kill Any Process After a Specified Time"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656791033018311.jpg" alt="How to Code a Simple Java App to Kill Any Process After a Specified Time" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fcode-simple-java-app-kill-any-process-after-specified-time-0133513%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fcode-simple-java-app-kill-any-process-after-specified-time-0133513%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11349109"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I may be a bit weird, but I enjoy listening to music at night as I fall asleep. Sure, you could create a playlist of songs so that it stopped after all the songs finished playing, but I have a rather extensive database of music and I enjoy listening to them randomly. Also, I like to ensure it terminates after a specific amount of time (I don't want it playing all night). Or sometimes I use it when I am cooking so that when the music stops, I know I need to check on my food, etc.&lt;/p&gt;&lt;p&gt;I primarily use this to kill my music player after a certain amount of time, but it can easily be changed to kill any process that you choose (see below).&lt;/p&gt;&lt;p&gt;Feel free to download the following for your enjoyment: &lt;a  href="http://www.mediafire.com/?lzeq1vkbsi945ac" rel="nofollow" target="_blank" &gt;source-code&lt;/a&gt;, &lt;a  href="http://www.mediafire.com/?t3auva6wf08hcqf" rel="nofollow" target="_blank" &gt;Spotify&lt;/a&gt;, and &lt;a  href="http://www.mediafire.com/?1zm749j7kcbcz0k" rel="nofollow" target="_blank" &gt;VLC&lt;/a&gt;. The source-code is a .java file of the code used to create the program. Spotify and VLC kill the given programs after a specified amount of time. They are .jar files, so you will need to have &lt;a  href="http://www.java.com/en/" rel="nofollow" target="_blank" &gt;Java&lt;/a&gt; installed on your machine, which most people will have already. You can view the source-code using a text editor, but will need an IDE if you want to create your own program. I recommend &lt;a  href="http://www.eclipse.org/" rel="nofollow" target="_blank" &gt;Eclipse&lt;/a&gt;.&lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warning&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Be careful of what processes you terminate, we are not responsible for any damage you may inadvertently cause.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="sectionHeadline"&gt;How the Code Works&lt;/h2&gt;&lt;p&gt;There is really only one thing that you really need to be worried about, and that is what process you are killing. Refer to the &lt;em&gt;execKill() &lt;/em&gt;method:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655368027260242.jpg" class="hasLarge imgCenter imgCenterFull " height="166" width="592" /&gt;&lt;/p&gt;&lt;p&gt;On line #26, the string "TASKKILL /F /IM spotify.exe" tells the program what command to execute after a certain amount of time. All you really need to do is change "spotify.exe" to whatever process you want to kill. You can view all processes currently running by pressing &lt;strong&gt;ctrl+alt+del&lt;/strong&gt;.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Example with Firefox&lt;/h2&gt;&lt;p&gt;&lt;em&gt;Suppose you wanted to close your web-browser after 15 minutes, here are the detailed steps on how to do this:&lt;/em&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Getting Java Ready&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Make sure you have downloaded Java and an IDE (Eclipse/NetBeans), then open up your IDE.&lt;/li&gt;&lt;li&gt;In the package explorer, right-click and select "New" -&amp;gt; "Java Project". Name it whatever you want to, then click "Finish".&lt;/li&gt;&lt;li&gt;Right-click your new project and select "New" -&amp;gt; "Package". Name it something useful, perhaps the name of the program you want to kill.&lt;/li&gt;&lt;li&gt;Right-click the package you just selected and select "New" -&amp;gt; "Class". You can name this whatever you want, but if you name it something other than "spotifyKiller", make sure to change it in the source code.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Readying the Code&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Download the source-code file (above), if you haven't already.&lt;/li&gt;&lt;li&gt;Open it with a text editor, such as WordPad or Notepad.&lt;/li&gt;&lt;li&gt;Press &lt;strong&gt;ctrl+a &lt;/strong&gt;(selects all), then &lt;strong&gt;ctrl+c&lt;/strong&gt; (copies code).&lt;/li&gt;&lt;li&gt;Go to the IDE and inside the class and put your cursor between the two curly braces by clicking there and then press &lt;strong&gt;ctrl+v&lt;/strong&gt; to paste what we copied.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Modifying the Code&lt;/span&gt;&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;As in the "How the Code Works", change &lt;em&gt;spotify.exe &lt;/em&gt;to &lt;em&gt;firefox.exe&lt;/em&gt;.&lt;/li&gt;&lt;li&gt;Press &lt;strong&gt;ctrl+s &lt;/strong&gt;to save the code, then open an instance of Firefox.&lt;/li&gt;&lt;li&gt;Click the "Run" button in Eclipse (it looks like a green play button). This should cause a window to pop up. Type "1" into the box and press "Start" and wait 1 minute. If all went well Firefox will have closed. If so, proceed, otherwise go back over the steps and try to figure out what went wrong.&lt;/li&gt;&lt;/ol&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 4 &lt;/span&gt;&lt;span class="stepText"&gt;Exporting&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now your code should be working as we want. We don't want to have to run the code from our IDE every time, so we are going to export it to a runnable file:&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Make sure your code is saved.&lt;/li&gt;&lt;li&gt;Look in the top left-hand corner of Eclipse and select "File" -&amp;gt; "Export...". &lt;/li&gt;&lt;li&gt;A window will pop up, when this happens select "Runnable Jar File" and then "Next".&lt;/li&gt;&lt;li&gt;Make sure your screen looks something like the picture below. You can specify where you want to be exported, so you can find it easily later on:&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655388603384382.jpg" class="imgCenter imgCenterFull " height="548" width="522" /&gt;&lt;/p&gt;&lt;p&gt;5.  Finally, click "Finish"!&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 5 &lt;/span&gt;&lt;span class="stepText"&gt;Running the Program&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Now all you have to do is double click on the file you just created and input how many minutes you want until Firefox should close. For this example, we put "15" and click "Start" and voilà! Firefox closes after 15 minutes have passed, yay!&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Thank you for reading! Stay tuned for more &lt;em&gt;&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/"&gt;&lt;strong&gt;Invisible Computer&lt;/strong&gt;&lt;/a&gt;&lt;/em&gt; articles!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a href="http://twentyeighttwelve.com/wp-content/uploads/2011/08/tron-legacy-kill.jpg" rel="nofollow" target="_blank" &gt;twentyeighttwelve&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://invisiblecomputer.wonderhowto.com/blog/code-simple-java-app-kill-any-process-after-specified-time-0133513/"&gt;How to Code a Simple Java App to Kill Any Process After a Specified Time&lt;/a&gt; on &lt;a href="http://invisiblecomputer.wonderhowto.com/"&gt;invisiblecomputer.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-override-method-for-java-programming-321162/"&gt;How to override a method for Java programming&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-simple-polymorphic-program-java-321196/"&gt;How to create a simple polymorphic program in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-build-list-arrays-when-programming-java-321243/"&gt;How to build list arrays when programming in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-basic-math-operators-when-programming-java-321193/"&gt;How to use basic math operators when programming in Java&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-write-hello-world-program-using-java-321168/"&gt;How to write a &amp;quot;Hello, World&amp;quot; program using Java&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656791033018311.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How to Make Realistic Looking Fake Blood</title>
      <link>http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/" title="How to Make Realistic Looking Fake Blood"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657050041521236.jpg" alt="How to Make Realistic Looking Fake Blood" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fthesecretyumiverse.wonderhowto.com%2fblog%2fmake-realistic-looking-fake-blood-0133528%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fthesecretyumiverse.wonderhowto.com%2fblog%2fmake-realistic-looking-fake-blood-0133528%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11324170"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the mood to whip yourself up a bowl of fake, realistic-looking blood? Chances are, your kitchen and bathroom already contain the things you need to make that perfect red goo that will be the finishing touch for your next gory costume party, violent music video shoot or super-scary prank. Who said that fake blood is only good for Halloween? &lt;/p&gt;&lt;p&gt;Got your own tips for making legit-looking fake blood? Share with us in the comments below. &lt;/p&gt;&lt;p&gt;Click on image below to enlarge.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656247691745291.jpg" class="hasLarge imgCenter imgCenterFull " height="871" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;br _moz_dirty="" /&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/"&gt;How to Make Realistic Looking Fake Blood&lt;/a&gt; on &lt;a href="http://thesecretyumiverse.wonderhowto.com/"&gt;thesecretyumiverse.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-edible-realistic-fake-blood-321867/"&gt;How to make edible realistic fake blood&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-realistic-looking-cut-using-cinema-makeup-307961/"&gt;How to create a realistic looking cut using cinema makeup&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-realistic-looking-cinema-style-head-shot-306162/"&gt;How to create a realistic looking cinema style head shot&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-fake-blood-and-scary-props-81494/"&gt;How to make fake blood and scary props&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-fake-blood-244030/"&gt;How to make fake blood&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Ldh1Pi8hdh0:mx1FzZ3QD0U:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Ldh1Pi8hdh0:mx1FzZ3QD0U:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Ldh1Pi8hdh0:mx1FzZ3QD0U:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Ldh1Pi8hdh0:mx1FzZ3QD0U:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/Ldh1Pi8hdh0" height="1" width="1"/&gt;</description>
      <comments>http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 02:09:18 GMT</pubDate>
      <guid isPermaLink="true">http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/</guid>
      <dc:creator>Yumi Sakugawa</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How to Make Realistic Looking Fake Blood</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/" title="How to Make Realistic Looking Fake Blood"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657050041521236.jpg" alt="How to Make Realistic Looking Fake Blood" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fthesecretyumiverse.wonderhowto.com%2fblog%2fmake-realistic-looking-fake-blood-0133528%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fthesecretyumiverse.wonderhowto.com%2fblog%2fmake-realistic-looking-fake-blood-0133528%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id11324170"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the mood to whip yourself up a bowl of fake, realistic-looking blood? Chances are, your kitchen and bathroom already contain the things you need to make that perfect red goo that will be the finishing touch for your next gory costume party, violent music video shoot or super-scary prank. Who said that fake blood is only good for Halloween? &lt;/p&gt;&lt;p&gt;Got your own tips for making legit-looking fake blood? Share with us in the comments below. &lt;/p&gt;&lt;p&gt;Click on image below to enlarge.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656247691745291.jpg" class="hasLarge imgCenter imgCenterFull " height="871" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;br _moz_dirty="" /&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://thesecretyumiverse.wonderhowto.com/blog/make-realistic-looking-fake-blood-0133528/"&gt;How to Make Realistic Looking Fake Blood&lt;/a&gt; on &lt;a href="http://thesecretyumiverse.wonderhowto.com/"&gt;thesecretyumiverse.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-edible-realistic-fake-blood-321867/"&gt;How to make edible realistic fake blood&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-realistic-looking-cut-using-cinema-makeup-307961/"&gt;How to create a realistic looking cut using cinema makeup&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-create-realistic-looking-cinema-style-head-shot-306162/"&gt;How to create a realistic looking cinema style head shot&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-fake-blood-and-scary-props-81494/"&gt;How to make fake blood and scary props&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-fake-blood-244030/"&gt;How to make fake blood&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657050041521236.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Home &amp; Garden/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How to Make a Killer Bottle Opener from a .50 Caliber Bullet</title>
      <link>http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/" title="How to Make a Killer Bottle Opener from a .50 Caliber Bullet"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657092567039928.jpg" alt="How to Make a Killer Bottle Opener from a .50 Caliber Bullet" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmake-killer-bottle-opener-from-50-caliber-bullet-0133546%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmake-killer-bottle-opener-from-50-caliber-bullet-0133546%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id7907443"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In this article, I'll show you how you can make your very own bullet/shell bottle opener. All you need is a .50 caliber deactivated round and some workshop tools!&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656804899414666.jpg" class="imgCenter imgCenterFull " height="375" width="483" /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Materials and Tools&lt;/span&gt;&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;.50 caliber bullet/shell (look online, or you can get one &lt;a  href="http://bit.ly/wMEBNd" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Hacksaw (a saw intended to cut metal; can be purchased at most hardware stores)&lt;/li&gt;&lt;li&gt;Benchtop vice&lt;/li&gt;&lt;li&gt;Black Sharpie or similar marker&lt;/li&gt;&lt;li&gt;Some sandpaper&lt;/li&gt;&lt;li&gt;Metal file&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;The Procedure &lt;/span&gt;&lt;/h2&gt;&lt;p&gt;1.  First, take your bullet shell and draw the outline of the cut, like so: &lt;/p&gt;&lt;p&gt;&lt;img style="width: 394px; height: 261px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656828209599609.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;2.  Secure the bullet in your vice and cut along the mark slanted from the back of the casing towards the copper slug on top.&lt;/p&gt;&lt;p&gt;3.  Now, cut the second slit slanted slightly towards the casing's end, until you reach the end of your last cut, freeing the piece of metal, and creating a hole.&lt;/p&gt;&lt;p&gt;4.  This is the hardest part. Lay the file inside the hole so that it sits just inside the left side of the hole (if you're facing the bullet with the end at your right). File down that portion until you create a large lip. This lip is what grabs the bottle lid and yanks it off.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 404px; height: 175px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656832027550314.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;The notch:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656812926564765.jpg" class="imgCenter imgCenterFull " height="352" width="529" /&gt;&lt;/p&gt;&lt;p&gt;5. Finally, sand off the rough edges with the sandpaper and give the bullet a polish.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656806393897291.jpg" class="hasLarge imgCenter imgCenterFull " height="423" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Enjoy impressing your friends :) &lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;DO NOT attempt this with a live bullet! Ensure the bullet has been disarmed before sawing into it. No powder should be inside the casing and the primer should be spent.&lt;/li&gt;&lt;li&gt;Hacksaws and files can be dangerous! Be careful.&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photos by &lt;a  href="http://www.vat19.com/dvds/50-caliber-bullet-bottle-opener.cfm" rel="nofollow" target="_blank" &gt;Vat19&lt;/a&gt;, &lt;a  href="http://shop.coolmaterial.com/products/50-caliber-bullet-bottle-opener" rel="nofollow" target="_blank" &gt;Cool Material&lt;/a&gt;, &lt;a  href="http://www.likecool.com/" rel="nofollow" target="_blank" &gt;LikeCool&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/"&gt;How to Make a Killer Bottle Opener from a .50 Caliber Bullet&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-swiss-army-knife-bottle-opener-open-wine-355825/"&gt;How to use a Swiss Army knife bottle opener to open wine&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-without-bottle-opener-263396/"&gt;How to open a beer without a bottle opener&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-bottle-with-rock-climbing-carabiner-for-262496/"&gt;How to open a beer bottle with a  rock climbing carabiner for&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://be-awesome.wonderhowto.com/blog/wondering-be-awesome-start-here-0132609/"&gt;Wondering How To Be Awesome? Start Here.&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-without-opener-196904/"&gt;How to open beer without an opener&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KpUHGUUJ3m8:IP8C0T_OZsg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KpUHGUUJ3m8:IP8C0T_OZsg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KpUHGUUJ3m8:IP8C0T_OZsg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KpUHGUUJ3m8:IP8C0T_OZsg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/KpUHGUUJ3m8" height="1" width="1"/&gt;</description>
      <comments>http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 18:30:22 GMT</pubDate>
      <guid isPermaLink="true">http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/</guid>
      <dc:creator>ChristopherVoute</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How to Make a Killer Bottle Opener from a .50 Caliber Bullet</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/" title="How to Make a Killer Bottle Opener from a .50 Caliber Bullet"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657092567039928.jpg" alt="How to Make a Killer Bottle Opener from a .50 Caliber Bullet" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmake-killer-bottle-opener-from-50-caliber-bullet-0133546%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmake-killer-bottle-opener-from-50-caliber-bullet-0133546%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id7907443"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In this article, I'll show you how you can make your very own bullet/shell bottle opener. All you need is a .50 caliber deactivated round and some workshop tools!&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656804899414666.jpg" class="imgCenter imgCenterFull " height="375" width="483" /&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Materials and Tools&lt;/span&gt;&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;.50 caliber bullet/shell (look online, or you can get one &lt;a  href="http://bit.ly/wMEBNd" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Hacksaw (a saw intended to cut metal; can be purchased at most hardware stores)&lt;/li&gt;&lt;li&gt;Benchtop vice&lt;/li&gt;&lt;li&gt;Black Sharpie or similar marker&lt;/li&gt;&lt;li&gt;Some sandpaper&lt;/li&gt;&lt;li&gt;Metal file&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;The Procedure &lt;/span&gt;&lt;/h2&gt;&lt;p&gt;1.  First, take your bullet shell and draw the outline of the cut, like so: &lt;/p&gt;&lt;p&gt;&lt;img style="width: 394px; height: 261px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656828209599609.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;2.  Secure the bullet in your vice and cut along the mark slanted from the back of the casing towards the copper slug on top.&lt;/p&gt;&lt;p&gt;3.  Now, cut the second slit slanted slightly towards the casing's end, until you reach the end of your last cut, freeing the piece of metal, and creating a hole.&lt;/p&gt;&lt;p&gt;4.  This is the hardest part. Lay the file inside the hole so that it sits just inside the left side of the hole (if you're facing the bullet with the end at your right). File down that portion until you create a large lip. This lip is what grabs the bottle lid and yanks it off.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 404px; height: 175px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656832027550314.jpg" class="imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;The notch:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656812926564765.jpg" class="imgCenter imgCenterFull " height="352" width="529" /&gt;&lt;/p&gt;&lt;p&gt;5. Finally, sand off the rough edges with the sandpaper and give the bullet a polish.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656806393897291.jpg" class="hasLarge imgCenter imgCenterFull " height="423" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Enjoy impressing your friends :) &lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;DO NOT attempt this with a live bullet! Ensure the bullet has been disarmed before sawing into it. No powder should be inside the casing and the primer should be spent.&lt;/li&gt;&lt;li&gt;Hacksaws and files can be dangerous! Be careful.&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photos by &lt;a  href="http://www.vat19.com/dvds/50-caliber-bullet-bottle-opener.cfm" rel="nofollow" target="_blank" &gt;Vat19&lt;/a&gt;, &lt;a  href="http://shop.coolmaterial.com/products/50-caliber-bullet-bottle-opener" rel="nofollow" target="_blank" &gt;Cool Material&lt;/a&gt;, &lt;a  href="http://www.likecool.com/" rel="nofollow" target="_blank" &gt;LikeCool&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/make-killer-bottle-opener-from-50-caliber-bullet-0133546/"&gt;How to Make a Killer Bottle Opener from a .50 Caliber Bullet&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-swiss-army-knife-bottle-opener-open-wine-355825/"&gt;How to use a Swiss Army knife bottle opener to open wine&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-without-bottle-opener-263396/"&gt;How to open a beer without a bottle opener&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-bottle-with-rock-climbing-carabiner-for-262496/"&gt;How to open a beer bottle with a  rock climbing carabiner for&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://be-awesome.wonderhowto.com/blog/wondering-be-awesome-start-here-0132609/"&gt;Wondering How To Be Awesome? Start Here.&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-open-beer-without-opener-196904/"&gt;How to open beer without an opener&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657092567039928.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Electronics/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How To Protect Your PHP Website from SQL Injection Hacks</title>
      <link>http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/" title="Protect Your PHP Website from SQL Injection Hacks"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656999491660450.jpg" alt="Protect Your PHP Website from SQL Injection Hacks" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwww.wonderhowto.com%2fhow-to-protect-your-php-website-from-sql-injection-hacks-0133507%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwww.wonderhowto.com%2fhow-to-protect-your-php-website-from-sql-injection-hacks-0133507%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id9577963"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;As a web developer, I often read articles about hackers (from the lowly to the knowledgeable) infiltrating websites via the dreaded 'SQL Injection' method and completely taking control, changing, gaining access, or destroying the owner's data. As a fellow web developer, I'm sure you want to know how to protect against it. Well, here it is! In this article, you will find out what SQL Injection is, what you can do to protect against it, and additional recommendations that are easy to do and only makes your data more secure. &lt;/p&gt;&lt;p&gt;Please note: I am not an 'absolute' expert, but none of my projects have ever been hacked (yet), are SQL Injection proof (as far as I know), and I love to learn. I guarantee nothing. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;What Is SQL Injection and How Is It Used?&lt;/h2&gt;&lt;p&gt;Basically, SQL Injection is a method used against websites and applications to gain access to the website's or application's data, stored in a SQL database. SQL Injection is used to gain access to a database's information (or an entire company), to destroy a database's information, or to manipulate a database's information. It is a method used to exploit the security vulnerability of an application or website. There are different types of SQL Injection, but in this article we will only cover the basics. &lt;/p&gt;&lt;p&gt;Let's see how it is used, to further understand what it is. I am going to use PHP as my scripting language in these examples. You can use substitute any language(s) you use. The focus should be on the SQL commands.&lt;/p&gt;&lt;h4 class="articleTip"&gt;Example&lt;/h4&gt;&lt;p&gt;Suppose you are a professional with your own business. You have created an SQL database with a table that contains all of your clients' information, that you use to send out important notifications, billing, etc. It took you an entire year to gain 50,000 very important clients. You manage your database by logging in online, as you travel, and doing whatever you need to do, directly from your website.&lt;/p&gt;&lt;p&gt;Your SQL query in your PHP log-in script, on your website:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = "SELECT `id` FROM `users` WHERE `username`= ' " .$_GET['username']. " ' AND `password`= ' " .$_GET['password']. " ' ";&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One day a self-proclaimed hacker stumbles upon your website. He clicks the 'Log In' button. &lt;br /&gt; &lt;/p&gt;&lt;p&gt;He enters the following in the 'username' field: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;' ; SHOW TABLES;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The hacker now has been shown every table you have in your database.&lt;/p&gt;&lt;p&gt;Since he knows your table's name, he enters :  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;'; DROP TABLE [your table's name];&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;All of your information is gone. &lt;/p&gt;&lt;p&gt;Note: There are attempts that are much more complicated than this, and someone can spend a lot of time to get into your database, or they can even use a program to try to exploit the vulnerability of your website, database, application, etc.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Use mysql_real_escape_string() &lt;/span&gt;&lt;/h2&gt;&lt;p&gt; This PHP function escapes special characters for use in SQL queries and protects you from attack.&lt;/p&gt;&lt;p&gt;The query would now look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = "SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' "; &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Use mysql_query()&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Using 'mysql_query()' has additional protection against SQL Injection. A query not wrapped in 'mysql_query()' could allow a hacker to use multiple SQL commands from your 'username' field, instead of just one, which is another vulnerability. 'mysql_query()' only allows one command at a time. &lt;/p&gt;&lt;p&gt;So, our query would now look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//connection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$database = mysql_connect("localhost", "username","password");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//db selection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;mysql_select_db("database", $database);&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' ", $database);  &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Centralize Your Connections&lt;/h4&gt;&lt;p&gt;In your script, you should centralize your connections to one page.&lt;/p&gt;&lt;p&gt;On each page that needs it, just use the 'include()' function to include the page that hosts your SQL database connection information. This would force you to create queries with the same format on every page you create, and reduces the chances of a mistake leaving a vulnerability open.&lt;/p&gt;&lt;p&gt;So, let's say we make a page called 'connections.php' and put in the following: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//connection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$database = mysql_connect("localhost", "username","password");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//db selection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;mysql_select_db("database", $database);&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;We could modify our query using the new setup. Our log-in page would have:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Clean Data at the Beginning of the Page&lt;/h4&gt;&lt;p&gt;Many programming languages force you to declare variables before you can use them throughout the script. PHP does not force you to do this, however, it's a good habit to clean out your variables at the beginning of the page anyway! &lt;/p&gt;&lt;p&gt;Sure someone can ask, "If I'm cleaning each variable throughout the page, why should I clean the variables at the top? Aren't I doing the same thing with your recommendation?". &lt;/p&gt;&lt;p&gt;It is easier on you to clean variables at the beginning of the page for a few different reasons, beyond formatting.&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;It reduces the amount of code you have to write. &lt;/li&gt;&lt;li&gt;Once the variable is clean, you can use it freely throughout the page, without the fear of vulnerabilities. &lt;/li&gt;&lt;li&gt;It is cleaner and more organized, allows you to work easier, and avoids mistakes.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;If we cleaned variables at the beginning of the page, our script would look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = mysql_real_escape_string( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = mysql_real_escape_string( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You could even go as far as creating a function to do all cleaning for you, reducing the amount you have to type further. Look at the following example.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;function cleaner($input){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//clean variable, including mysql_real_escape_string()&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = cleaner( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = cleaner( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Check Even After It Is Cleaned&lt;/h4&gt;&lt;p&gt;You can have additional checks in place to guard against unnecessary processing on your server. This is achieved by adding checks to your script before you ever get to the point of running the query; only running the query when you find the data acceptable.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;function cleaner($input){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//clean variable, including mysql_real_escape_string()&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = cleaner( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = cleaner( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Check if the input is blank.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;if( ($password == '') || ($username == '')){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//dont let them pass&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;} &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Check if they are putting in way too many characters than should be allowed. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;else if( (strlen($username) &amp;gt; 20) || (strlen($password)&amp;gt; 20) ){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//dont let them pass&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Passed all of our checks! Run query.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;else {&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That's pretty much it.&lt;/p&gt;&lt;p&gt;If you have any questions, feel free to ask!&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/"&gt;How To Protect Your PHP Website from SQL Injection Hacks&lt;/a&gt; on &lt;a href="http://www.wonderhowto.com/"&gt;WonderHowTo&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-websites-with-sql-injection-160710/"&gt;How to hack websites with SQL injection&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-protect-against-sql-injection-attacks-when-programming-php-385672/"&gt;How to protect against SQL injection attacks when programming in PHP&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-websites-with-sql-injection-and-webgoat-182576/"&gt;How to hack websites with SQL injection and WebGoat&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-website-with-sql-injection-171337/"&gt;How to hack a website with SQL injection&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-sql-databases-microsoft-visual-web-developer-259347/"&gt;How to use SQL databases in Microsoft Visual Web Developer&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Oarx3zklrxE:plZA6bT71HE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Oarx3zklrxE:plZA6bT71HE:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Oarx3zklrxE:plZA6bT71HE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Oarx3zklrxE:plZA6bT71HE:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/Oarx3zklrxE" height="1" width="1"/&gt;</description>
      <comments>http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 20:59:06 GMT</pubDate>
      <guid isPermaLink="true">http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/</guid>
      <dc:creator>Adam Velma</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How To Protect Your PHP Website from SQL Injection Hacks</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/" title="Protect Your PHP Website from SQL Injection Hacks"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656999491660450.jpg" alt="Protect Your PHP Website from SQL Injection Hacks" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwww.wonderhowto.com%2fhow-to-protect-your-php-website-from-sql-injection-hacks-0133507%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwww.wonderhowto.com%2fhow-to-protect-your-php-website-from-sql-injection-hacks-0133507%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id9577963"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;As a web developer, I often read articles about hackers (from the lowly to the knowledgeable) infiltrating websites via the dreaded 'SQL Injection' method and completely taking control, changing, gaining access, or destroying the owner's data. As a fellow web developer, I'm sure you want to know how to protect against it. Well, here it is! In this article, you will find out what SQL Injection is, what you can do to protect against it, and additional recommendations that are easy to do and only makes your data more secure. &lt;/p&gt;&lt;p&gt;Please note: I am not an 'absolute' expert, but none of my projects have ever been hacked (yet), are SQL Injection proof (as far as I know), and I love to learn. I guarantee nothing. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;What Is SQL Injection and How Is It Used?&lt;/h2&gt;&lt;p&gt;Basically, SQL Injection is a method used against websites and applications to gain access to the website's or application's data, stored in a SQL database. SQL Injection is used to gain access to a database's information (or an entire company), to destroy a database's information, or to manipulate a database's information. It is a method used to exploit the security vulnerability of an application or website. There are different types of SQL Injection, but in this article we will only cover the basics. &lt;/p&gt;&lt;p&gt;Let's see how it is used, to further understand what it is. I am going to use PHP as my scripting language in these examples. You can use substitute any language(s) you use. The focus should be on the SQL commands.&lt;/p&gt;&lt;h4 class="articleTip"&gt;Example&lt;/h4&gt;&lt;p&gt;Suppose you are a professional with your own business. You have created an SQL database with a table that contains all of your clients' information, that you use to send out important notifications, billing, etc. It took you an entire year to gain 50,000 very important clients. You manage your database by logging in online, as you travel, and doing whatever you need to do, directly from your website.&lt;/p&gt;&lt;p&gt;Your SQL query in your PHP log-in script, on your website:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = "SELECT `id` FROM `users` WHERE `username`= ' " .$_GET['username']. " ' AND `password`= ' " .$_GET['password']. " ' ";&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One day a self-proclaimed hacker stumbles upon your website. He clicks the 'Log In' button. &lt;br /&gt; &lt;/p&gt;&lt;p&gt;He enters the following in the 'username' field: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;' ; SHOW TABLES;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The hacker now has been shown every table you have in your database.&lt;/p&gt;&lt;p&gt;Since he knows your table's name, he enters :  &lt;/p&gt;&lt;p&gt;&lt;strong&gt;'; DROP TABLE [your table's name];&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;All of your information is gone. &lt;/p&gt;&lt;p&gt;Note: There are attempts that are much more complicated than this, and someone can spend a lot of time to get into your database, or they can even use a program to try to exploit the vulnerability of your website, database, application, etc.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Use mysql_real_escape_string() &lt;/span&gt;&lt;/h2&gt;&lt;p&gt; This PHP function escapes special characters for use in SQL queries and protects you from attack.&lt;/p&gt;&lt;p&gt;The query would now look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = "SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' "; &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Use mysql_query()&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;Using 'mysql_query()' has additional protection against SQL Injection. A query not wrapped in 'mysql_query()' could allow a hacker to use multiple SQL commands from your 'username' field, instead of just one, which is another vulnerability. 'mysql_query()' only allows one command at a time. &lt;/p&gt;&lt;p&gt;So, our query would now look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//connection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$database = mysql_connect("localhost", "username","password");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//db selection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;mysql_select_db("database", $database);&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' ", $database);  &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Centralize Your Connections&lt;/h4&gt;&lt;p&gt;In your script, you should centralize your connections to one page.&lt;/p&gt;&lt;p&gt;On each page that needs it, just use the 'include()' function to include the page that hosts your SQL database connection information. This would force you to create queries with the same format on every page you create, and reduces the chances of a mistake leaving a vulnerability open.&lt;/p&gt;&lt;p&gt;So, let's say we make a page called 'connections.php' and put in the following: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//connection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$database = mysql_connect("localhost", "username","password");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//db selection&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;mysql_select_db("database", $database);&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;We could modify our query using the new setup. Our log-in page would have:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .mysql_real_escape_string( $_GET['username'] ). " ' AND `password`= ' " .mysql_real_escape_string( $_GET['password'] ). " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Clean Data at the Beginning of the Page&lt;/h4&gt;&lt;p&gt;Many programming languages force you to declare variables before you can use them throughout the script. PHP does not force you to do this, however, it's a good habit to clean out your variables at the beginning of the page anyway! &lt;/p&gt;&lt;p&gt;Sure someone can ask, "If I'm cleaning each variable throughout the page, why should I clean the variables at the top? Aren't I doing the same thing with your recommendation?". &lt;/p&gt;&lt;p&gt;It is easier on you to clean variables at the beginning of the page for a few different reasons, beyond formatting.&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;It reduces the amount of code you have to write. &lt;/li&gt;&lt;li&gt;Once the variable is clean, you can use it freely throughout the page, without the fear of vulnerabilities. &lt;/li&gt;&lt;li&gt;It is cleaner and more organized, allows you to work easier, and avoids mistakes.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;If we cleaned variables at the beginning of the page, our script would look like this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = mysql_real_escape_string( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = mysql_real_escape_string( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You could even go as far as creating a function to do all cleaning for you, reducing the amount you have to type further. Look at the following example.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;function cleaner($input){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//clean variable, including mysql_real_escape_string()&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = cleaner( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = cleaner( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Recommendation: Check Even After It Is Cleaned&lt;/h4&gt;&lt;p&gt;You can have additional checks in place to guard against unnecessary processing on your server. This is achieved by adding checks to your script before you ever get to the point of running the query; only running the query when you find the data acceptable.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;lt;?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;function cleaner($input){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//clean variable, including mysql_real_escape_string()&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;include("connections.php");&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$username = cleaner( $_GET['username'] );&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;$password = cleaner( $_GET['password'] );&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Check if the input is blank.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;if( ($password == '') || ($username == '')){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//dont let them pass&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;} &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Check if they are putting in way too many characters than should be allowed. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;else if( (strlen($username) &amp;gt; 20) || (strlen($password)&amp;gt; 20) ){&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//dont let them pass&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;//Passed all of our checks! Run query.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;else {&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$q = mysql_query("SELECT `id` FROM `users` WHERE `username`= ' " .$username. " ' AND `password`= ' " .$password. " ' ", $database); &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;?&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That's pretty much it.&lt;/p&gt;&lt;p&gt;If you have any questions, feel free to ask!&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://www.wonderhowto.com/how-to-protect-your-php-website-from-sql-injection-hacks-0133507/"&gt;How To Protect Your PHP Website from SQL Injection Hacks&lt;/a&gt; on &lt;a href="http://www.wonderhowto.com/"&gt;WonderHowTo&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-websites-with-sql-injection-160710/"&gt;How to hack websites with SQL injection&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-protect-against-sql-injection-attacks-when-programming-php-385672/"&gt;How to protect against SQL injection attacks when programming in PHP&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-websites-with-sql-injection-and-webgoat-182576/"&gt;How to hack websites with SQL injection and WebGoat&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-hack-website-with-sql-injection-171337/"&gt;How to hack a website with SQL injection&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-sql-databases-microsoft-visual-web-developer-259347/"&gt;How to use SQL databases in Microsoft Visual Web Developer&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656999491660450.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/PHP</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands</title>
      <link>http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/" title="Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657000266825811.jpg" alt="Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmaster-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmaster-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id37112562"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I'm sure most everyone has some kind of fluorescent light source in their home; those long white tubes that emit a bright white light when turned on, or maybe a few of the CFL power-saver bulbs. These bulbs actually require very little "power" (i.e. a &lt;em&gt;high voltage:almost no current&lt;/em&gt; ratio) to emit light. In fact, static electricity is enough to make them flicker. Inside these tubes is a gas, and when electricity flows through that gas, it gets "excited" and produces light. &lt;/p&gt;&lt;p&gt;Using this same simplistic concept, we can power these bulbs with electricity flowing "on the surface" of our skin. However, first it's necessary to create the voltage. This can be achieved by "charging" up our bodies with high voltage (harmless; almost no current), then touching a fluorescent tube. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;The Voltage Source&lt;/h2&gt;&lt;p&gt;Two possible circuits can be used as the voltage source. The first one is intended to &lt;strong&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/build-wireless-energy-transfer-array-power-light-bulbs-without-plugging-them-0133306/"&gt;wirelessly transmit energy&lt;/a&gt;&lt;/strong&gt;, but you can use it with a small modification. Once you've built the device, attach a wire from the high voltage output to your skin. MAKE SURE you are not grounded and have attached the wire to yourself before turning the device on. This means standing on a plastic chair, wearing rubber-soled shoes, etc. However, BE CAREFUL! Touching anything grounded will result in a startling shock similar to a static shock from a doorknob. Once turned on, hold a fluorescent tube in your hand. It will light up!! &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; &lt;strong&gt;The first circuit modification should only be attempted by those with extensive experience in electricity, high-voltage, and general electrical safety. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The second circuit, and probably the easiest and most effective, can be found &lt;strong&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-shock-people-with-your-fingertips-0133360/"&gt;here&lt;/a&gt;&lt;/strong&gt;, with no modifications needed. Simply hold a fluorescent tube with the device turned on! Here's a video demonstration:&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=jLAgzBc3viI"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Again, high voltage is very, very dangerous!!! Do not attempt either of these circuits unless you know what you're doing!&lt;/li&gt;&lt;li&gt;Fluorescent tubes can break easily, resulting in very sharp glass shards. Be careful!&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause.&lt;/li&gt;&lt;/ul&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/"&gt;Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-flowers-glow-dark-with-fluorescent-highlighter-425281/"&gt;How to make flowers glow in the dark with a fluorescent highlighter&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/making-electromagnetic-weapons-lasers-part-one-0133340/"&gt;Making Electromagnetic Weapons: Lasers, Part One&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://sheshops.wonderhowto.com/blog/get-glowing-summer-skin-0116450/"&gt;Get Glowing Summer Skin&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/news/howto-diy-glow-sticks-0118129/"&gt;HowTo: DIY Glow Sticks&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://giveawaytuesdays.wonderhowto.com/blog/6-diy-materials-for-solar-powered-night-illumination-0127753/"&gt;6 DIY Materials for Solar Powered Night Illumination&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QUniUAH3S8Y:ZNba1scy810:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QUniUAH3S8Y:ZNba1scy810:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=QUniUAH3S8Y:ZNba1scy810:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=QUniUAH3S8Y:ZNba1scy810:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/QUniUAH3S8Y" height="1" width="1"/&gt;</description>
      <comments>http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/#comments</comments>
      <pubDate>Thu, 23 Feb 2012 07:14:20 GMT</pubDate>
      <guid isPermaLink="true">http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/</guid>
      <dc:creator>ChristopherVoute</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/" title="Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634657000266825811.jpg" alt="Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmaster-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2ffear-of-lightning.wonderhowto.com%2fblog%2fmaster-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id37112562"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;I'm sure most everyone has some kind of fluorescent light source in their home; those long white tubes that emit a bright white light when turned on, or maybe a few of the CFL power-saver bulbs. These bulbs actually require very little "power" (i.e. a &lt;em&gt;high voltage:almost no current&lt;/em&gt; ratio) to emit light. In fact, static electricity is enough to make them flicker. Inside these tubes is a gas, and when electricity flows through that gas, it gets "excited" and produces light. &lt;/p&gt;&lt;p&gt;Using this same simplistic concept, we can power these bulbs with electricity flowing "on the surface" of our skin. However, first it's necessary to create the voltage. This can be achieved by "charging" up our bodies with high voltage (harmless; almost no current), then touching a fluorescent tube. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;The Voltage Source&lt;/h2&gt;&lt;p&gt;Two possible circuits can be used as the voltage source. The first one is intended to &lt;strong&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/build-wireless-energy-transfer-array-power-light-bulbs-without-plugging-them-0133306/"&gt;wirelessly transmit energy&lt;/a&gt;&lt;/strong&gt;, but you can use it with a small modification. Once you've built the device, attach a wire from the high voltage output to your skin. MAKE SURE you are not grounded and have attached the wire to yourself before turning the device on. This means standing on a plastic chair, wearing rubber-soled shoes, etc. However, BE CAREFUL! Touching anything grounded will result in a startling shock similar to a static shock from a doorknob. Once turned on, hold a fluorescent tube in your hand. It will light up!! &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; &lt;strong&gt;The first circuit modification should only be attempted by those with extensive experience in electricity, high-voltage, and general electrical safety. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The second circuit, and probably the easiest and most effective, can be found &lt;strong&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-shock-people-with-your-fingertips-0133360/"&gt;here&lt;/a&gt;&lt;/strong&gt;, with no modifications needed. Simply hold a fluorescent tube with the device turned on! Here's a video demonstration:&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=jLAgzBc3viI"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Again, high voltage is very, very dangerous!!! Do not attempt either of these circuits unless you know what you're doing!&lt;/li&gt;&lt;li&gt;Fluorescent tubes can break easily, resulting in very sharp glass shards. Be careful!&lt;/li&gt;&lt;li&gt;I am not responsible for any damage or harm you cause.&lt;/li&gt;&lt;/ul&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://fear-of-lightning.wonderhowto.com/blog/master-power-make-fluorescent-tubes-glow-with-your-bare-hands-0133504/"&gt;Master the Power: How to Make Fluorescent Tubes Glow with Your Bare Hands&lt;/a&gt; on &lt;a href="http://fear-of-lightning.wonderhowto.com/"&gt;fear-of-lightning.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-make-flowers-glow-dark-with-fluorescent-highlighter-425281/"&gt;How to make flowers glow in the dark with a fluorescent highlighter&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://fear-of-lightning.wonderhowto.com/blog/making-electromagnetic-weapons-lasers-part-one-0133340/"&gt;Making Electromagnetic Weapons: Lasers, Part One&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://sheshops.wonderhowto.com/blog/get-glowing-summer-skin-0116450/"&gt;Get Glowing Summer Skin&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/news/howto-diy-glow-sticks-0118129/"&gt;HowTo: DIY Glow Sticks&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://giveawaytuesdays.wonderhowto.com/blog/6-diy-materials-for-solar-powered-night-illumination-0127753/"&gt;6 DIY Materials for Solar Powered Night Illumination&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634657000266825811.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Electronics/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers</title>
      <link>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656915216724429.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id51256209"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;first part&lt;/a&gt; of this series, we learned about darknets, as well as how they came about. But these patches of forgotten Internet are not the oasis of free information you might think. Despite being hidden—or just harder to come across—these networks are no more safe then anywhere else on the 'clear' Internet. The nature of networking and routing means your location is always known in server logs. It only takes one phone call to your ISP with your IP address to obtain both your physical address and a search warrant along with it. Therefore, a method must be used to cloak your action from those ever-growing prying eyes.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656905073430613.jpg" class="hasLarge imgCenter imgCenterFull " height="333" width="592" /&gt;&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Enter Tor and Onion Routing&lt;/h2&gt;&lt;p&gt;&lt;a title="Arp Poisoning" href="http://null-byte.wonderhowto.com/blog/spy-web-traffic-for-any-computers-your-network-intro-arp-poisoning-0131785/"&gt;Simple traffic analysis&lt;/a&gt; and deep packet inspection can give up what you are sending, where you are sending it, where it is coming from and who it is going to. This is performed by your ISP to enforce data limits or anti-spam and piracy measures, and it can be performed by anyone with access to your network. This could be the FBI outside in a parked van or even your neighbor after he &lt;a title="Cracking Wi-Fi" href="http://null-byte.wonderhowto.com/blog/hack-wpa-wifi-passwords-by-cracking-wps-pin-0132542/"&gt;cracked&lt;/a&gt; your wireless password.&lt;/p&gt;&lt;p&gt;Tor works on the idea of &lt;a href="http://en.wikipedia.org/wiki/Onion_routing" rel="nofollow" target="_blank" &gt;onion routing&lt;/a&gt;. Let's take a more in-depth look at the idea behind this, as it's critical to how the Tor (and i2p) network operates. Each machine that's running the Tor service is running a &lt;em&gt;Tor router&lt;/em&gt; on their network. Each of those routers (which we'll refer to as "nodes" from now on) work by forwarding traffic from other random nodes. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656895406405634.jpg" class="hasLarge imgCenter imgCenterFull " height="333" width="592" /&gt;&lt;/p&gt;&lt;p&gt;When you wish to send some data on the network, your node calculates a path though all the running nodes, and wraps your data in that many layers of encryption. When each of these random nodes receives your packet, they can only decrypt the layer assigned to them (only they have the key). As such, each node can only see the previous node a packet came from and the next node the packet should be sent to. At no point can the nodes dig deeper into the packet. They can only &lt;em&gt;peel&lt;/em&gt; away the layer assigned to them. In this way, each layer is peeled away, one  at a time, giving us the term &lt;em&gt;onion routing&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;The figure below illustrates how each layer of the "test" packet is peeled away one at a time on its way to the web server.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654335412774551.jpg" class="hasLarge imgCenter imgCenterFull " height="211" width="592" /&gt;&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Exit Nodes and Escaping Content Filtering Firewalls&lt;/h2&gt;&lt;p&gt;Inside the Tor network, there is a wide range of hidden content, a lot of which is not for the weak of heart. This is because Tor allows you to create your own internal website, known as a Tor &lt;a title="Tor Hidden Service" href="https://www.torproject.org/docs/hidden-services.html.en" rel="nofollow" target="_blank" &gt;Hidden Service&lt;/a&gt;. We'll dive deeper into those services in the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;next part&lt;/a&gt; of this series. For now, let's go over how Tor allows you to browse the web anonymously.&lt;/p&gt;&lt;p&gt;Normally you send your request to a web server using the normal HTTP port of 80. The server then reads what you need, and sends it over to you. By the very nature of this system, the server needs to know your router's IP address to communicate back to you, and this is contained in the header of the each packet sent. Essentially, it's connecting what you are doing on the Internet to where you live.&lt;/p&gt;&lt;p&gt; The problem occurs when a company or ISP peeks into those packets and blocks access based on their contents. You have seen examples of this at your high school computer lab and maybe even in your office at work. Websites and content that are not wanted can be filtered out before it even reaches you. Sometimes this is undertaken on a national level, like in China and Iran, by filtering directly at the ISP.&lt;/p&gt;&lt;p&gt;To reach regular websites on the 'clear' Internet, some Tor nodes are configured as &lt;em&gt;exit nodes&lt;/em&gt;, which route traffic in and out of the Tor network. This hides who you are from the police, the web server, your ISP and anyone else listening in. As far as any of them know, you are the exit node! Also, as Tor uses its own port and encrypts the traffic, your content restrictions can be bypassed with ease.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656910280875759.jpg" class="hasLarge imgCenter imgCenterFull " height="400" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Even as these exit nodes are often in other countries, there are still methods of tracking you down. None the less, putting a few layers between yourself and the world can never hurt. At the end of this article, I will explain the most efficient way to obtain the software you need and provide you a few links to start your adventure with.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Why Aren't We All Using Tor Then!?&lt;/h2&gt;&lt;p&gt;Tor has a few serious issues with it that do need to be addressed. The most critical is a lack of end-to-end encryption. This means anyone who can sniff the traffic from an exit node can see EVERYTHING. They still have to trace packets back and forth to determine a location, but all the encryption is gone. Any personal info you transmitted will be wide open for the stealing. You can negate this by wrapping your data in a presentation-layer protocol like &lt;a title="SSH" href="http://en.wikipedia.org/wiki/Secure_Shell" rel="nofollow" target="_blank" &gt;SSH&lt;/a&gt;, but that's not always an option.&lt;/p&gt;&lt;p&gt;Tor also does not provide protection against end-to-end timing attacks. If your attacker can watch the traffic coming out of your computer, and also the traffic arriving at your chosen destination, he can use statistical analysis to discover that they are part of the same circuit and locate you. This problem is tied into the one above in a way, as well.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Why Should I Use It?&lt;/h2&gt;&lt;p&gt;Tor is still very effective at outsmarting firewalls and port scanning, and though more advanced, tunneling SQL injections. Tor is secure enough to communicate with and even better if you wrap that data in application-layer encryption beforehand. It is not 100 percent, but it's better than just rolling dice and hoping no one is watching. &lt;/p&gt;&lt;p&gt;Over the years, the model has been improved upon and added to. If you are looking for the next step up from Tor, you need to enter the world of i2p. In my next article, I will explain how they're similar and how they differ, sometimes drastically. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656897509133327.jpg" class="hasLarge imgCenter imgCenterFull " height="123" width="592" /&gt;&lt;/p&gt;&lt;h4 class="articleWarning"&gt;tl;dr&lt;/h4&gt;&lt;p&gt;Tor is great at browsing the web anonymously and accessing the network's hidden services. The best way is to &lt;a title="Download" href="https://www.torproject.org/download/download-easy.html.en" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; the browser bundle directly from the website. There is no installation required, and you can even put it on a USB drive for mobile use as en emergency proxy!&lt;/p&gt;&lt;p&gt;Simply download and extract the archive, navigate to its directory and:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ ./start-tor-browser&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That's it! The Tor/Vidalia bundle includes the script that starts and connects to the Tor proxy and a modified version of Firefox that is set up to be secure and work with Tor out of the box. This includes disabling Javascript, Flash and any other add-ons that can be tricked into giving up your real IP. &lt;/p&gt;&lt;p&gt;Below is a list of links for a few Tor hidden services to start you off.&lt;/p&gt;&lt;ul&gt;&lt;li&gt; dppmfxaacucguzpc.onion - The TorDIR, a listing of various hidden services, some on and offline.&lt;/li&gt;&lt;li&gt;kpvz7k12v5agwt35.onion - The Hidden Wiki, a listing of more links and services. Be careful here. &lt;/li&gt;&lt;li&gt;eqt5g4fuenphqinx.onion - Core.Onion, a great intro for new users.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Questions? Concerns? Leave me a comment or drop by our &lt;a  href="https://darchoods.net:9090/?channels=nullbyte" rel="nofollow" target="_blank" &gt;IRC channel &lt;/a&gt;and say hello.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;&lt;strong&gt;Continue to Part 3 to learn about how to set up your own Hidden Services...&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Images by &lt;a href="http://forum.i2p2.de/viewtopic.php?p=8440" rel="nofollow" target="_blank" &gt;Cervantes&lt;/a&gt;, &lt;a  href="http://www-958.ibm.com/software/data/cognos/manyeyes/visualizations/tor-exit-node-counts-by-city-and-c" rel="nofollow" target="_blank" &gt;Hackertarget&lt;/a&gt;, &lt;a  href="http://images.wikia.com/onionrouting/images/b/b8/TorDiagram.jpg" rel="nofollow" target="_blank" &gt;OnionWiki&lt;/a&gt;, &lt;a  href="http://static.arstechnica.net/assets/2011/04/tor-box-people-ars-thumb-640xauto-21017.jpg" rel="nofollow" target="_blank" &gt;Ars&lt;/a&gt;, &lt;a  href="http://static.arstechnica.net/assets/2010/12/email-warrant-ars-thumb-640xauto-18338.jpg" rel="nofollow" target="_blank" &gt;Ars&lt;/a&gt;, &lt;a  href="http://www.bgr.com/2011/07/19/fbi-raids-anonymous-hackers-in-new-york/" rel="nofollow" target="_blank" &gt;BGR&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-complete-cloak-and-daggers-sidequest-deus-ex-human-revolution-426808/"&gt;How to complete the 'Cloak and Daggers' sidequest in Deus Ex: Human Revolution&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-electronic-federal-tax-payment-system-419071/"&gt;How to use the Electronic Federal Tax Payment System&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=ldAIPoLhjzo:9SgKVZ-gulE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=ldAIPoLhjzo:9SgKVZ-gulE:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=ldAIPoLhjzo:9SgKVZ-gulE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=ldAIPoLhjzo:9SgKVZ-gulE:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/ldAIPoLhjzo" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 20:45:23 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/</guid>
      <dc:creator>Allen Freeman</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656915216724429.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id51256209"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;In the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;first part&lt;/a&gt; of this series, we learned about darknets, as well as how they came about. But these patches of forgotten Internet are not the oasis of free information you might think. Despite being hidden—or just harder to come across—these networks are no more safe then anywhere else on the 'clear' Internet. The nature of networking and routing means your location is always known in server logs. It only takes one phone call to your ISP with your IP address to obtain both your physical address and a search warrant along with it. Therefore, a method must be used to cloak your action from those ever-growing prying eyes.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656905073430613.jpg" class="hasLarge imgCenter imgCenterFull " height="333" width="592" /&gt;&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Enter Tor and Onion Routing&lt;/h2&gt;&lt;p&gt;&lt;a title="Arp Poisoning" href="http://null-byte.wonderhowto.com/blog/spy-web-traffic-for-any-computers-your-network-intro-arp-poisoning-0131785/"&gt;Simple traffic analysis&lt;/a&gt; and deep packet inspection can give up what you are sending, where you are sending it, where it is coming from and who it is going to. This is performed by your ISP to enforce data limits or anti-spam and piracy measures, and it can be performed by anyone with access to your network. This could be the FBI outside in a parked van or even your neighbor after he &lt;a title="Cracking Wi-Fi" href="http://null-byte.wonderhowto.com/blog/hack-wpa-wifi-passwords-by-cracking-wps-pin-0132542/"&gt;cracked&lt;/a&gt; your wireless password.&lt;/p&gt;&lt;p&gt;Tor works on the idea of &lt;a href="http://en.wikipedia.org/wiki/Onion_routing" rel="nofollow" target="_blank" &gt;onion routing&lt;/a&gt;. Let's take a more in-depth look at the idea behind this, as it's critical to how the Tor (and i2p) network operates. Each machine that's running the Tor service is running a &lt;em&gt;Tor router&lt;/em&gt; on their network. Each of those routers (which we'll refer to as "nodes" from now on) work by forwarding traffic from other random nodes. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656895406405634.jpg" class="hasLarge imgCenter imgCenterFull " height="333" width="592" /&gt;&lt;/p&gt;&lt;p&gt;When you wish to send some data on the network, your node calculates a path though all the running nodes, and wraps your data in that many layers of encryption. When each of these random nodes receives your packet, they can only decrypt the layer assigned to them (only they have the key). As such, each node can only see the previous node a packet came from and the next node the packet should be sent to. At no point can the nodes dig deeper into the packet. They can only &lt;em&gt;peel&lt;/em&gt; away the layer assigned to them. In this way, each layer is peeled away, one  at a time, giving us the term &lt;em&gt;onion routing&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;The figure below illustrates how each layer of the "test" packet is peeled away one at a time on its way to the web server.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654335412774551.jpg" class="hasLarge imgCenter imgCenterFull " height="211" width="592" /&gt;&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Exit Nodes and Escaping Content Filtering Firewalls&lt;/h2&gt;&lt;p&gt;Inside the Tor network, there is a wide range of hidden content, a lot of which is not for the weak of heart. This is because Tor allows you to create your own internal website, known as a Tor &lt;a title="Tor Hidden Service" href="https://www.torproject.org/docs/hidden-services.html.en" rel="nofollow" target="_blank" &gt;Hidden Service&lt;/a&gt;. We'll dive deeper into those services in the &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;next part&lt;/a&gt; of this series. For now, let's go over how Tor allows you to browse the web anonymously.&lt;/p&gt;&lt;p&gt;Normally you send your request to a web server using the normal HTTP port of 80. The server then reads what you need, and sends it over to you. By the very nature of this system, the server needs to know your router's IP address to communicate back to you, and this is contained in the header of the each packet sent. Essentially, it's connecting what you are doing on the Internet to where you live.&lt;/p&gt;&lt;p&gt; The problem occurs when a company or ISP peeks into those packets and blocks access based on their contents. You have seen examples of this at your high school computer lab and maybe even in your office at work. Websites and content that are not wanted can be filtered out before it even reaches you. Sometimes this is undertaken on a national level, like in China and Iran, by filtering directly at the ISP.&lt;/p&gt;&lt;p&gt;To reach regular websites on the 'clear' Internet, some Tor nodes are configured as &lt;em&gt;exit nodes&lt;/em&gt;, which route traffic in and out of the Tor network. This hides who you are from the police, the web server, your ISP and anyone else listening in. As far as any of them know, you are the exit node! Also, as Tor uses its own port and encrypts the traffic, your content restrictions can be bypassed with ease.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656910280875759.jpg" class="hasLarge imgCenter imgCenterFull " height="400" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Even as these exit nodes are often in other countries, there are still methods of tracking you down. None the less, putting a few layers between yourself and the world can never hurt. At the end of this article, I will explain the most efficient way to obtain the software you need and provide you a few links to start your adventure with.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Why Aren't We All Using Tor Then!?&lt;/h2&gt;&lt;p&gt;Tor has a few serious issues with it that do need to be addressed. The most critical is a lack of end-to-end encryption. This means anyone who can sniff the traffic from an exit node can see EVERYTHING. They still have to trace packets back and forth to determine a location, but all the encryption is gone. Any personal info you transmitted will be wide open for the stealing. You can negate this by wrapping your data in a presentation-layer protocol like &lt;a title="SSH" href="http://en.wikipedia.org/wiki/Secure_Shell" rel="nofollow" target="_blank" &gt;SSH&lt;/a&gt;, but that's not always an option.&lt;/p&gt;&lt;p&gt;Tor also does not provide protection against end-to-end timing attacks. If your attacker can watch the traffic coming out of your computer, and also the traffic arriving at your chosen destination, he can use statistical analysis to discover that they are part of the same circuit and locate you. This problem is tied into the one above in a way, as well.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Why Should I Use It?&lt;/h2&gt;&lt;p&gt;Tor is still very effective at outsmarting firewalls and port scanning, and though more advanced, tunneling SQL injections. Tor is secure enough to communicate with and even better if you wrap that data in application-layer encryption beforehand. It is not 100 percent, but it's better than just rolling dice and hoping no one is watching. &lt;/p&gt;&lt;p&gt;Over the years, the model has been improved upon and added to. If you are looking for the next step up from Tor, you need to enter the world of i2p. In my next article, I will explain how they're similar and how they differ, sometimes drastically. &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634656897509133327.jpg" class="hasLarge imgCenter imgCenterFull " height="123" width="592" /&gt;&lt;/p&gt;&lt;h4 class="articleWarning"&gt;tl;dr&lt;/h4&gt;&lt;p&gt;Tor is great at browsing the web anonymously and accessing the network's hidden services. The best way is to &lt;a title="Download" href="https://www.torproject.org/download/download-easy.html.en" rel="nofollow" target="_blank" &gt;download&lt;/a&gt; the browser bundle directly from the website. There is no installation required, and you can even put it on a USB drive for mobile use as en emergency proxy!&lt;/p&gt;&lt;p&gt;Simply download and extract the archive, navigate to its directory and:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;$ ./start-tor-browser&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That's it! The Tor/Vidalia bundle includes the script that starts and connects to the Tor proxy and a modified version of Firefox that is set up to be secure and work with Tor out of the box. This includes disabling Javascript, Flash and any other add-ons that can be tricked into giving up your real IP. &lt;/p&gt;&lt;p&gt;Below is a list of links for a few Tor hidden services to start you off.&lt;/p&gt;&lt;ul&gt;&lt;li&gt; dppmfxaacucguzpc.onion - The TorDIR, a listing of various hidden services, some on and offline.&lt;/li&gt;&lt;li&gt;kpvz7k12v5agwt35.onion - The Hidden Wiki, a listing of more links and services. Be careful here. &lt;/li&gt;&lt;li&gt;eqt5g4fuenphqinx.onion - Core.Onion, a great intro for new users.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Questions? Concerns? Leave me a comment or drop by our &lt;a  href="https://darchoods.net:9090/?channels=nullbyte" rel="nofollow" target="_blank" &gt;IRC channel &lt;/a&gt;and say hello.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-three-hidden-services-0133489/"&gt;&lt;strong&gt;Continue to Part 3 to learn about how to set up your own Hidden Services...&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Images by &lt;a href="http://forum.i2p2.de/viewtopic.php?p=8440" rel="nofollow" target="_blank" &gt;Cervantes&lt;/a&gt;, &lt;a  href="http://www-958.ibm.com/software/data/cognos/manyeyes/visualizations/tor-exit-node-counts-by-city-and-c" rel="nofollow" target="_blank" &gt;Hackertarget&lt;/a&gt;, &lt;a  href="http://images.wikia.com/onionrouting/images/b/b8/TorDiagram.jpg" rel="nofollow" target="_blank" &gt;OnionWiki&lt;/a&gt;, &lt;a  href="http://static.arstechnica.net/assets/2011/04/tor-box-people-ars-thumb-640xauto-21017.jpg" rel="nofollow" target="_blank" &gt;Ars&lt;/a&gt;, &lt;a  href="http://static.arstechnica.net/assets/2010/12/email-warrant-ars-thumb-640xauto-18338.jpg" rel="nofollow" target="_blank" &gt;Ars&lt;/a&gt;, &lt;a  href="http://www.bgr.com/2011/07/19/fbi-raids-anonymous-hackers-in-new-york/" rel="nofollow" target="_blank" &gt;BGR&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part Two: Onions and Daggers&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/use-tortunnel-quickly-encrypt-internet-traffic-0131169/"&gt;How to Use Tortunnel to Quickly Encrypt Internet Traffic&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-complete-cloak-and-daggers-sidequest-deus-ex-human-revolution-426808/"&gt;How to complete the 'Cloak and Daggers' sidequest in Deus Ex: Human Revolution&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-electronic-federal-tax-payment-system-419071/"&gt;How to use the Electronic Federal Tax Payment System&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656915216724429.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards</title>
      <link>http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/" title="Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656868209785865.jpg" alt="Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fminecraft.wonderhowto.com%2fblog%2fhidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fminecraft.wonderhowto.com%2fblog%2fhidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id42778777"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;strong&gt;Welcome to Minecraft World! Check out our &lt;/strong&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/"&gt;&lt;strong&gt;tutorials&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, post to the &lt;a href="http://minecraft.wonderhowto.com/corkboard/"&gt;community corkboard&lt;/a&gt;, and come play on our free &lt;a href="http://minecraft.wonderhowto.com/forum/wonderhowto-minecraft-server-apply-within-1818/"&gt;server&lt;/a&gt;!&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;&lt;img alt="Winners of Minecraft World's Weekly Staff Choice Awards: Week 1" src="http://img.wonderhowto.com/images/gfx/gallery/634631912857148043.jpg" class="imgCenter imgCenterFull " style="background-image: url(&amp;quot;http://img.wonderhowto.com/images/progress_star_dark.gif&amp;quot;); margin-top: auto; margin-bottom: auto;" height="60" width="468" /&gt;&lt;/p&gt;&lt;p&gt;Everyone seems to really be enjoying the current &lt;a href="http://minecraft.wonderhowto.com/blog/get-creative-weeks-limited-freestyle-server-challenge-plus-last-weeks-futuristic-build-winners-0133446/"&gt;Weekly Challenge&lt;/a&gt;, so it was a little hard to find some finished builds. There are some work-in-progress builds that are absolutely STUNNING in their current state, so... get to work guys (you know who you are)! I've been dying to show off some of these, but I know they probably want me to wait until they're finished!&lt;/p&gt;&lt;p&gt;Even though this week was tough, admins were still able to find some amazing builds! If you missed last week's winners, be sure to &lt;a href="http://minecraft.wonderhowto.com/blog/hidden-staircase-roller-coaster-madness-and-more-weeks-staff-choice-award-winners-0133413/"&gt;check those out&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;If you didn't win this week, don't fret! We will be doing the Weekly Staff Choice Awards every single week. If you would like to know what prizes will be given out for the Staff Choice Awards, check out the latest &lt;a href="http://minecraft.wonderhowto.com/blog/get-creative-weeks-limited-freestyle-server-challenge-plus-last-weeks-futuristic-build-winners-0133446/"&gt;Weekly Challenge&lt;/a&gt; to see what perks you could win! The prizes given out for the Weekly Staff Choice Awards will always be the same as the prizes for the Weekly Challenge.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;For next week, if you would like to enter your build, please do so by posting a video, screenshots, and some information about your build to the &lt;/strong&gt;&lt;a href="http://minecraft.wonderhowto.com/corkboard/"&gt;&lt;strong&gt;community corkboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;You can also message me (Maroselis) in-game if you would like to recommend someone else for that week! If I'm not in game at the time, just type "/mail send Maroselis [And your message here]" (without the quotes). Please try to include the coordinates of the build that you are recommending to make it easier for me to find it! Hit f3 in game to see your current coordinates. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Grand Prize Winners: Zbuck and BlackyNine07&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Zbuck&lt;/strong&gt; just joined the server this week and is already hard at work! So far, he's created several awesome pixel art characters and they keep popping up everywhere. He seems to have quite a knack for pixel art, and the pixel art he did this week is absolutely flawless!&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=T_CzK_jcgdM&amp;feature=plcp&amp;context=C38e533aUDOEgsToPDskLttuBI5-OVzVjXg6sh_imw"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;strong&gt;BlackyNine07&lt;/strong&gt; created a "creeper cave" with several redstone surprises throughout. It's the perfect little hideout shelter! It has hidden lighting, a fireplace (click the button and it's a disposal) and a mystery door behind bookcases that leads you to the private balcony! It has a very cozy vibe to it, so I'm not sure I would call it a cave... but it &lt;em&gt;is&lt;/em&gt; on the side of a mountain! &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=W7BBMeSdguc"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h2 class="sectionHeadline"&gt;Prizes&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;1 Grand Prize winner&lt;/strong&gt; - Contributor rank in game + Nyan Cat (/nyan)!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Honorable Mentions&lt;/strong&gt; - Contributor rank in game!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;* Contributor rank in game allows you to change your gamemode (survival/creative), put yourself in godmode (/god), set 20 homes, claim 50 (16x16) plots and wear hats with /hat!&lt;/p&gt;&lt;p&gt;* Nyan Cat is a plugin I just installed for the winners of this week. Here's a quick video showing what it does:&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=eAg8pC4ESjo&amp;feature=player_embedded"&gt;&lt;/a&gt;&lt;br /&gt;Nyan Cat plugin&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleTip"&gt;Congratulations!&lt;/h4&gt;&lt;p&gt;Congratulations to the winners, you guys did an outstanding job! I can't wait to see what everyone has in store for the admins next week!&lt;/p&gt;&lt;p&gt;Don't forget to hop on the server this &lt;strong&gt;Saturday, Feb 25th at &lt;/strong&gt;&lt;strong&gt;2 PM PST / 5 PM EST&lt;/strong&gt; where we will be recreating &lt;a href="http://minecraft.wonderhowto.com/blog/lets-create-working-movie-screen-minecraft-join-us-saturday-0133490/"&gt;this working movie screen&lt;/a&gt;! If you need to convert the time to another time zone, try &lt;a href="http://www.timezoneconverter.com/cgi-bin/tzc.tzc" rel="nofollow" target="_blank" &gt;this handy convertor&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We use TeamSpeak3 for our tutorials; &lt;a  href="http://www.teamspeak.com/?page=downloads" rel="nofollow" target="_blank" &gt;you can download it free here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Our channel is: &lt;strong&gt;ts.wonderhowto.com&lt;/strong&gt;. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Follow us on Twitter @&lt;/strong&gt;&lt;a  href="http://twitter.com/MinecraftHowTo" rel="nofollow" target="_blank" &gt;MinecraftHowTo&lt;/a&gt;!  &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards&lt;/a&gt; on &lt;a href="http://minecraft.wonderhowto.com/"&gt;minecraft.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-staircase-roller-coaster-madness-and-more-weeks-staff-choice-award-winners-0133413/"&gt;Hidden Staircase, Roller Coaster of Madness, and More: This Week's Staff Choice Award Winners&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-2-0133177/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 2&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-1-0133026/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/minecraft-worlds-weekly-server-challenge-pixel-art-0132947/"&gt;Minecraft World's Weekly Server Challenge: Pixel Art&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-3-0133305/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 3&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KyqrS2iPXqw:9quNOKHkP8E:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KyqrS2iPXqw:9quNOKHkP8E:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=KyqrS2iPXqw:9quNOKHkP8E:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=KyqrS2iPXqw:9quNOKHkP8E:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/KyqrS2iPXqw" height="1" width="1"/&gt;</description>
      <comments>http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 19:27:03 GMT</pubDate>
      <guid isPermaLink="true">http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/</guid>
      <dc:creator>Kendra W</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/" title="Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656868209785865.jpg" alt="Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fminecraft.wonderhowto.com%2fblog%2fhidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fminecraft.wonderhowto.com%2fblog%2fhidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id42778777"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;strong&gt;Welcome to Minecraft World! Check out our &lt;/strong&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/"&gt;&lt;strong&gt;tutorials&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, post to the &lt;a href="http://minecraft.wonderhowto.com/corkboard/"&gt;community corkboard&lt;/a&gt;, and come play on our free &lt;a href="http://minecraft.wonderhowto.com/forum/wonderhowto-minecraft-server-apply-within-1818/"&gt;server&lt;/a&gt;!&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;&lt;img alt="Winners of Minecraft World's Weekly Staff Choice Awards: Week 1" src="http://img.wonderhowto.com/images/gfx/gallery/634631912857148043.jpg" class="imgCenter imgCenterFull " style="background-image: url(&amp;quot;http://img.wonderhowto.com/images/progress_star_dark.gif&amp;quot;); margin-top: auto; margin-bottom: auto;" height="60" width="468" /&gt;&lt;/p&gt;&lt;p&gt;Everyone seems to really be enjoying the current &lt;a href="http://minecraft.wonderhowto.com/blog/get-creative-weeks-limited-freestyle-server-challenge-plus-last-weeks-futuristic-build-winners-0133446/"&gt;Weekly Challenge&lt;/a&gt;, so it was a little hard to find some finished builds. There are some work-in-progress builds that are absolutely STUNNING in their current state, so... get to work guys (you know who you are)! I've been dying to show off some of these, but I know they probably want me to wait until they're finished!&lt;/p&gt;&lt;p&gt;Even though this week was tough, admins were still able to find some amazing builds! If you missed last week's winners, be sure to &lt;a href="http://minecraft.wonderhowto.com/blog/hidden-staircase-roller-coaster-madness-and-more-weeks-staff-choice-award-winners-0133413/"&gt;check those out&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;If you didn't win this week, don't fret! We will be doing the Weekly Staff Choice Awards every single week. If you would like to know what prizes will be given out for the Staff Choice Awards, check out the latest &lt;a href="http://minecraft.wonderhowto.com/blog/get-creative-weeks-limited-freestyle-server-challenge-plus-last-weeks-futuristic-build-winners-0133446/"&gt;Weekly Challenge&lt;/a&gt; to see what perks you could win! The prizes given out for the Weekly Staff Choice Awards will always be the same as the prizes for the Weekly Challenge.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;For next week, if you would like to enter your build, please do so by posting a video, screenshots, and some information about your build to the &lt;/strong&gt;&lt;a href="http://minecraft.wonderhowto.com/corkboard/"&gt;&lt;strong&gt;community corkboard&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt; &lt;/p&gt;&lt;p&gt;You can also message me (Maroselis) in-game if you would like to recommend someone else for that week! If I'm not in game at the time, just type "/mail send Maroselis [And your message here]" (without the quotes). Please try to include the coordinates of the build that you are recommending to make it easier for me to find it! Hit f3 in game to see your current coordinates. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Grand Prize Winners: Zbuck and BlackyNine07&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Zbuck&lt;/strong&gt; just joined the server this week and is already hard at work! So far, he's created several awesome pixel art characters and they keep popping up everywhere. He seems to have quite a knack for pixel art, and the pixel art he did this week is absolutely flawless!&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=T_CzK_jcgdM&amp;feature=plcp&amp;context=C38e533aUDOEgsToPDskLttuBI5-OVzVjXg6sh_imw"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;strong&gt;BlackyNine07&lt;/strong&gt; created a "creeper cave" with several redstone surprises throughout. It's the perfect little hideout shelter! It has hidden lighting, a fireplace (click the button and it's a disposal) and a mystery door behind bookcases that leads you to the private balcony! It has a very cozy vibe to it, so I'm not sure I would call it a cave... but it &lt;em&gt;is&lt;/em&gt; on the side of a mountain! &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=W7BBMeSdguc"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h2 class="sectionHeadline"&gt;Prizes&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;1 Grand Prize winner&lt;/strong&gt; - Contributor rank in game + Nyan Cat (/nyan)!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Honorable Mentions&lt;/strong&gt; - Contributor rank in game!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;* Contributor rank in game allows you to change your gamemode (survival/creative), put yourself in godmode (/god), set 20 homes, claim 50 (16x16) plots and wear hats with /hat!&lt;/p&gt;&lt;p&gt;* Nyan Cat is a plugin I just installed for the winners of this week. Here's a quick video showing what it does:&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=eAg8pC4ESjo&amp;feature=player_embedded"&gt;&lt;/a&gt;&lt;br /&gt;Nyan Cat plugin&lt;br /&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Click here to watch the video&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="textBlock"&gt;&lt;h4 class="articleTip"&gt;Congratulations!&lt;/h4&gt;&lt;p&gt;Congratulations to the winners, you guys did an outstanding job! I can't wait to see what everyone has in store for the admins next week!&lt;/p&gt;&lt;p&gt;Don't forget to hop on the server this &lt;strong&gt;Saturday, Feb 25th at &lt;/strong&gt;&lt;strong&gt;2 PM PST / 5 PM EST&lt;/strong&gt; where we will be recreating &lt;a href="http://minecraft.wonderhowto.com/blog/lets-create-working-movie-screen-minecraft-join-us-saturday-0133490/"&gt;this working movie screen&lt;/a&gt;! If you need to convert the time to another time zone, try &lt;a href="http://www.timezoneconverter.com/cgi-bin/tzc.tzc" rel="nofollow" target="_blank" &gt;this handy convertor&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We use TeamSpeak3 for our tutorials; &lt;a  href="http://www.teamspeak.com/?page=downloads" rel="nofollow" target="_blank" &gt;you can download it free here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Our channel is: &lt;strong&gt;ts.wonderhowto.com&lt;/strong&gt;. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Follow us on Twitter @&lt;/strong&gt;&lt;a  href="http://twitter.com/MinecraftHowTo" rel="nofollow" target="_blank" &gt;MinecraftHowTo&lt;/a&gt;!  &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://minecraft.wonderhowto.com/blog/hidden-redstone-treasures-and-pixel-art-top-weeks-staff-choice-awards-0133523/"&gt;Hidden Redstone Treasures and Pixel Art Top This Week's Staff Choice Awards&lt;/a&gt; on &lt;a href="http://minecraft.wonderhowto.com/"&gt;minecraft.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/hidden-staircase-roller-coaster-madness-and-more-weeks-staff-choice-award-winners-0133413/"&gt;Hidden Staircase, Roller Coaster of Madness, and More: This Week's Staff Choice Award Winners&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-2-0133177/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 2&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-1-0133026/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/minecraft-worlds-weekly-server-challenge-pixel-art-0132947/"&gt;Minecraft World's Weekly Server Challenge: Pixel Art&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://minecraft.wonderhowto.com/blog/winners-minecraft-worlds-weekly-staff-choice-awards-week-3-0133305/"&gt;Winners of Minecraft World's Weekly Staff Choice Awards: Week 3&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656868209785865.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Video Games/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen</title>
      <link>http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/" title="How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656778707436663.jpg" alt="How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fsneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fsneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id22221283"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;	Have you ever forgotten your password and didn't know how to get back on your computer? Or ever had an annoying roommate you wanted to play a trick on to teach them a lesson? Or perhaps overly religious parents who think the internet is of the devil and won't let you read online articles about elliptic curve cryptography applications to C++? Well, then this article is for you!&lt;/p&gt;&lt;p&gt;	In this article, you will learn a variety of techniques that will allow you to regain access to your computer. We will start with the most simple and archaic of methods, then progress to more complicated and robust ones.&lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Use this information in a responsible manner.&lt;/li&gt;&lt;li&gt;Do not use on computers you are not authorized to use.&lt;/li&gt;&lt;li&gt;Check if encryption/decryption software is legal where you live.&lt;/li&gt;&lt;li&gt;We are not responsible for anything you may or may not do with this.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Win-XP Backdoor &lt;/span&gt;&lt;/h2&gt;&lt;h4 class="articleTip"&gt;Tip&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;If you are running something newer than XP, which is likely, then skip to the next step.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;When you log onto a Windows XP machine, you will typically be greeted with an icon which you click to log on, called the "&lt;strong&gt;classic logon&lt;/strong&gt;". We don't want this:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654597794627400.jpg" class="imgCenter imgCenterFull " height="368" width="449" /&gt;&lt;/p&gt;&lt;p&gt;We want something like this:&lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 415px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654598208808128.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;We can switch to this log on screen by pressing "&lt;strong&gt;ctrl+alt+del&lt;/strong&gt;" repeatedly on the classic log on screen.&lt;/p&gt;&lt;p&gt;The default &lt;strong&gt;User name&lt;/strong&gt; and &lt;strong&gt;Password&lt;/strong&gt; are typically: &lt;strong&gt;{"Admin", "admin"}&lt;/strong&gt;, or some variation of these (e.g. "Administrator"), respectively.&lt;/p&gt;&lt;p&gt;If you can't seem to gain access, which is fairly likely, especially if you are running something other than XP (since most newer Win-OSs don't have this backdoor), then move onto the next step.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Keylogger&lt;/span&gt;&lt;/h2&gt;&lt;h4 class="articleTip"&gt;Tips&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;If you are not computer savvy or simply malware paranoid and don't mind a bit of espionage, then skip to step 3. Come back if all other methods fail.&lt;/li&gt;&lt;li&gt;Also be aware that many antivirus programs will see this software as malicious, so don't be surprised if that happens.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;	Another option that is pretty simple, is to install a keylogger. You can usually find a semi-reliable one on &lt;a  href="http://www.cnet.com/" rel="nofollow" target="_blank" &gt;CNET&lt;/a&gt; (just search for "keylogger"). Make sure to read the reviews and user-ratings and whether it is free or not. Keep it simple, we aren't trying to dig up someone's whole personal life (well, you might be, but that's your business). &lt;strong&gt;Free and simple things usually work best in my experience.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;	After you &lt;strong&gt;install it&lt;/strong&gt; (pray it hasn't done anything too psychotic to the computer), it will probably give you a secret series of keystrokes you need to push to bring up the keylogger, make sure to &lt;strong&gt;memorize&lt;/strong&gt; or write it down somewhere safe. Also, make sure you &lt;strong&gt;activate&lt;/strong&gt; the keylogger. It would be a shame if you "snuck" on the computer and then you didn't log anything!&lt;/p&gt;&lt;p&gt;	Now you just have to wait until the person who knows the password comes on the computer and &lt;strong&gt;enters in the password you want&lt;/strong&gt;. Once they have, sneak back on the computer and pull up the keylogger and &lt;strong&gt;search the logs&lt;/strong&gt; for what you want. Knowing a time period when they entered it may be helpful for this part. And voilà, hopefully you will have got what you wanted! &lt;/p&gt;&lt;p&gt;	Afraid someone will do this to you?&lt;/p&gt;&lt;p&gt;Look into getting an "&lt;strong&gt;online screen keyboard&lt;/strong&gt;", that forces you to click a keyboard on the screen so that the keystrokes are never logged. I will try making a tutorial in the future that expands on prevention of keyloggers, but just be wary of what software you install and be familiar with what processes are running in the background of your computer. Also, if you want to go all out, there is actually hardware that functions as a keylogger that you place between the keyboard cord and the computer; just search around on eBay/Google. Wireless keyboards could also theoretically be intercepted, but I haven't contemplated in depth exactly how that could be done.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Cain &amp;amp; Abel&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;	This is probably the most effective, simple piece of software that I have seen around, for password acquisition! You can download Cain &amp;amp; Abel&lt;strong&gt; &lt;a  href="http://www.oxid.it/cain.html" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;&lt;/strong&gt;. The only downside is that I don't recall there ever being a Linux version, but then again, the software specifically targets Windows systems most of the time.&lt;/p&gt;&lt;p&gt;	How do you use this to gain the password?&lt;/p&gt;&lt;p&gt;Simply install it, which may be slightly difficult if your antivirus doesn't like it, such as with the keylogger, which is probable. After that, simply run it, then click on the "&lt;strong&gt;LSA secrets&lt;/strong&gt;" -&amp;gt; "&lt;strong&gt;+&lt;/strong&gt;" and it will ask you some stuff about getting it from the hive or local machine, etc. You should be able to just click "next". Then, it will automatically dump all the password hashes, decrypt them and display the plain text!&lt;/p&gt;&lt;p&gt;In my experience, this works best with XP. I have had difficulty with other operating systems. I grew up hacking XP computers, so sorry if you are still yelling: "&lt;strong&gt;I don't want to get into an XP system!&lt;/strong&gt;" Don't worry, the&lt;strong&gt; next step&lt;/strong&gt; should hopefully cover that.&lt;br /&gt; &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654641693728505.jpg" class="imgCenter imgCenterFull " height="375" width="500" /&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Tips&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Check out the other features of this program, such as the network sniffing utilities or decryption tools! They are fun to play around with. :)&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 4 &lt;/span&gt;&lt;span class="stepText"&gt;Ophcrack&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;	Okay, if none of the other methods have worked, then this one &lt;em&gt;probably&lt;/em&gt; will! It is one of the more complicated ones, but it typically has a higher success rate, especially if the computer you are trying to get on had a crappy password.&lt;/p&gt;&lt;p&gt;What you need to do is &lt;strong&gt;&lt;a  href="http://ophcrack.sourceforge.net/" rel="nofollow" target="_blank" &gt;download Ophcrack&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You can go down two different alleys for this:&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Live CD&lt;/li&gt;&lt;li&gt;Direct Installation&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;	Essentially, you always want to go through the &lt;strong&gt;Live CD &lt;/strong&gt;way unless you have unlimited access to the computer. I have it installed on my computer, just so I could see if I could hack my own password. You may actually want to try this out and &lt;strong&gt;familiarize yourself with the software prior&lt;/strong&gt; to using it on another computer.&lt;/p&gt;&lt;p&gt;	Download the software and then prepare it to be burned to a CD, but &lt;strong&gt;do not&lt;/strong&gt; do it quite yet, there is more to do. Another alternative, is to put it on a &lt;strong&gt;flashdrive&lt;/strong&gt;, which is what I did because I don't have many CDs lying around. For a tutorial on doing this, click &lt;a  href="http://www.pendrivelinux.com/usb-ophcrack-windows-login-password-cracker/" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;	What you also need to do is &lt;strong&gt;download and extract any rainbow tables&lt;/strong&gt; that you want to use. Rainbow tables essentially contain an organized table of all the possible hashes that exist given a certain set of characters (e.g. uppercase letters, lowercase letters, special, etc.), which is much more efficient since you don't have to compute the hashes when you are cracking. Based on the suspected maximum length and type of characters of the password on the computer, you need to select the appropriate table (see the Ophcrack &lt;a  href="http://ophcrack.sourceforge.net/tables.php" rel="nofollow" target="_blank" &gt;download page&lt;/a&gt;). If you are on &lt;strong&gt;Windows 7&lt;/strong&gt;, then use the Vista tables, they should be sufficient. After you have downloaded a table, then place it/them in the "&lt;strong&gt;tables/&lt;/strong&gt;" folder on your CD. &lt;/p&gt;&lt;p&gt;	Burn the CD and you are almost all ready!&lt;/p&gt;&lt;p&gt;Simply insert the CD into the computer and restart it. You may have to call up the &lt;strong&gt;boot menu&lt;/strong&gt; by pressing &lt;strong&gt;F12 &lt;/strong&gt;or something, but it may automatically boot from the CD/USB drive you inserted. Next, the Ophcrack Linux distro will boot up, which takes about a minute. Then you simply &lt;strong&gt;select the passwords&lt;/strong&gt; you want to crack and click "&lt;strong&gt;start&lt;/strong&gt;"... and hope for the best! Some passwords are cracked in 3 seconds and some take an hour—it really just depends on the password length and randomness (and of course, if you selected the most efficient rainbow table).&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654641106231473.jpg" class="imgCenter imgCenterFull " height="219" width="320" /&gt;&lt;/p&gt;&lt;p&gt;	I have had times when I could simply &lt;strong&gt;not&lt;/strong&gt; crack using this method, but it &lt;strong&gt;works&lt;/strong&gt; &lt;strong&gt;most of the time&lt;/strong&gt;. If not, I resorted to more surreptitious espionage methods as in Steps 1 through 3. Where there is a will there is a way, as I always say! :D&lt;/p&gt;&lt;p&gt;Just never give up. Keep trying. Keep learning, researching, asking questions until you find your answer! Nothing is impossible unless you believe it is. :) &lt;/p&gt;&lt;ul&gt;&lt;li&gt;Stay tuned for more &lt;a  href="../../" rel="nofollow" target="_blank" &gt;&lt;em&gt;&lt;strong&gt;Invisible Computer&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt; articles and how-to's!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://stop-cyberbullies.com/wp-content/uploads/2009/07/computer-spy.jpg" rel="nofollow" target="_blank" &gt;stopcyberbullies&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/"&gt;How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen&lt;/a&gt; on &lt;a href="http://invisiblecomputer.wonderhowto.com/"&gt;invisiblecomputer.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/add-ctrl-alt-delete-windows-7-logon-0132359/"&gt;How to Add Ctrl+Alt+Delete to Windows 7 Logon&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/log-windows-7-with-username-password-0132323/"&gt;How to log on Windows 7 with username &amp;amp; password&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-change-your-boot-and-logon-screen-windows-xp-137488/"&gt;How to change your boot and logon screen in Windows XP&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-find-out-whos-trying-access-your-windows-vista-pc-with-account-auditing-398533/"&gt;How to find out who's trying to access your Windows Vista PC with account auditing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-bypass-windows-genuine-advantage-notification-350167/"&gt;How to bypass Windows Genuine Advantage notification&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=zQe8b8sHCJI:UQYE6M-h5O0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=zQe8b8sHCJI:UQYE6M-h5O0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=zQe8b8sHCJI:UQYE6M-h5O0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=zQe8b8sHCJI:UQYE6M-h5O0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/zQe8b8sHCJI" height="1" width="1"/&gt;</description>
      <comments>http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/#comments</comments>
      <pubDate>Wed, 22 Feb 2012 05:40:14 GMT</pubDate>
      <guid isPermaLink="true">http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/</guid>
      <dc:creator>JT Newsome</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/" title="How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656778707436663.jpg" alt="How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fsneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2finvisiblecomputer.wonderhowto.com%2fblog%2fsneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id22221283"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;	Have you ever forgotten your password and didn't know how to get back on your computer? Or ever had an annoying roommate you wanted to play a trick on to teach them a lesson? Or perhaps overly religious parents who think the internet is of the devil and won't let you read online articles about elliptic curve cryptography applications to C++? Well, then this article is for you!&lt;/p&gt;&lt;p&gt;	In this article, you will learn a variety of techniques that will allow you to regain access to your computer. We will start with the most simple and archaic of methods, then progress to more complicated and robust ones.&lt;/p&gt;&lt;h4 class="articleWarning"&gt;Warnings&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Use this information in a responsible manner.&lt;/li&gt;&lt;li&gt;Do not use on computers you are not authorized to use.&lt;/li&gt;&lt;li&gt;Check if encryption/decryption software is legal where you live.&lt;/li&gt;&lt;li&gt;We are not responsible for anything you may or may not do with this.&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 1 &lt;/span&gt;&lt;span class="stepText"&gt;Win-XP Backdoor &lt;/span&gt;&lt;/h2&gt;&lt;h4 class="articleTip"&gt;Tip&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;If you are running something newer than XP, which is likely, then skip to the next step.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;When you log onto a Windows XP machine, you will typically be greeted with an icon which you click to log on, called the "&lt;strong&gt;classic logon&lt;/strong&gt;". We don't want this:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654597794627400.jpg" class="imgCenter imgCenterFull " height="368" width="449" /&gt;&lt;/p&gt;&lt;p&gt;We want something like this:&lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 415px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654598208808128.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;We can switch to this log on screen by pressing "&lt;strong&gt;ctrl+alt+del&lt;/strong&gt;" repeatedly on the classic log on screen.&lt;/p&gt;&lt;p&gt;The default &lt;strong&gt;User name&lt;/strong&gt; and &lt;strong&gt;Password&lt;/strong&gt; are typically: &lt;strong&gt;{"Admin", "admin"}&lt;/strong&gt;, or some variation of these (e.g. "Administrator"), respectively.&lt;/p&gt;&lt;p&gt;If you can't seem to gain access, which is fairly likely, especially if you are running something other than XP (since most newer Win-OSs don't have this backdoor), then move onto the next step.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 2 &lt;/span&gt;&lt;span class="stepText"&gt;Keylogger&lt;/span&gt;&lt;/h2&gt;&lt;h4 class="articleTip"&gt;Tips&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;If you are not computer savvy or simply malware paranoid and don't mind a bit of espionage, then skip to step 3. Come back if all other methods fail.&lt;/li&gt;&lt;li&gt;Also be aware that many antivirus programs will see this software as malicious, so don't be surprised if that happens.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;	Another option that is pretty simple, is to install a keylogger. You can usually find a semi-reliable one on &lt;a  href="http://www.cnet.com/" rel="nofollow" target="_blank" &gt;CNET&lt;/a&gt; (just search for "keylogger"). Make sure to read the reviews and user-ratings and whether it is free or not. Keep it simple, we aren't trying to dig up someone's whole personal life (well, you might be, but that's your business). &lt;strong&gt;Free and simple things usually work best in my experience.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;	After you &lt;strong&gt;install it&lt;/strong&gt; (pray it hasn't done anything too psychotic to the computer), it will probably give you a secret series of keystrokes you need to push to bring up the keylogger, make sure to &lt;strong&gt;memorize&lt;/strong&gt; or write it down somewhere safe. Also, make sure you &lt;strong&gt;activate&lt;/strong&gt; the keylogger. It would be a shame if you "snuck" on the computer and then you didn't log anything!&lt;/p&gt;&lt;p&gt;	Now you just have to wait until the person who knows the password comes on the computer and &lt;strong&gt;enters in the password you want&lt;/strong&gt;. Once they have, sneak back on the computer and pull up the keylogger and &lt;strong&gt;search the logs&lt;/strong&gt; for what you want. Knowing a time period when they entered it may be helpful for this part. And voilà, hopefully you will have got what you wanted! &lt;/p&gt;&lt;p&gt;	Afraid someone will do this to you?&lt;/p&gt;&lt;p&gt;Look into getting an "&lt;strong&gt;online screen keyboard&lt;/strong&gt;", that forces you to click a keyboard on the screen so that the keystrokes are never logged. I will try making a tutorial in the future that expands on prevention of keyloggers, but just be wary of what software you install and be familiar with what processes are running in the background of your computer. Also, if you want to go all out, there is actually hardware that functions as a keylogger that you place between the keyboard cord and the computer; just search around on eBay/Google. Wireless keyboards could also theoretically be intercepted, but I haven't contemplated in depth exactly how that could be done.&lt;/p&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 3 &lt;/span&gt;&lt;span class="stepText"&gt;Cain &amp;amp; Abel&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;	This is probably the most effective, simple piece of software that I have seen around, for password acquisition! You can download Cain &amp;amp; Abel&lt;strong&gt; &lt;a  href="http://www.oxid.it/cain.html" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;&lt;/strong&gt;. The only downside is that I don't recall there ever being a Linux version, but then again, the software specifically targets Windows systems most of the time.&lt;/p&gt;&lt;p&gt;	How do you use this to gain the password?&lt;/p&gt;&lt;p&gt;Simply install it, which may be slightly difficult if your antivirus doesn't like it, such as with the keylogger, which is probable. After that, simply run it, then click on the "&lt;strong&gt;LSA secrets&lt;/strong&gt;" -&amp;gt; "&lt;strong&gt;+&lt;/strong&gt;" and it will ask you some stuff about getting it from the hive or local machine, etc. You should be able to just click "next". Then, it will automatically dump all the password hashes, decrypt them and display the plain text!&lt;/p&gt;&lt;p&gt;In my experience, this works best with XP. I have had difficulty with other operating systems. I grew up hacking XP computers, so sorry if you are still yelling: "&lt;strong&gt;I don't want to get into an XP system!&lt;/strong&gt;" Don't worry, the&lt;strong&gt; next step&lt;/strong&gt; should hopefully cover that.&lt;br /&gt; &lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654641693728505.jpg" class="imgCenter imgCenterFull " height="375" width="500" /&gt;&lt;/p&gt;&lt;h4 class="articleTip"&gt;Tips&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Check out the other features of this program, such as the network sniffing utilities or decryption tools! They are fun to play around with. :)&lt;/li&gt;&lt;/ul&gt;&lt;h2 class="step"&gt;&lt;span class="stepNumber"&gt;&lt;span&gt;Step&lt;/span&gt; 4 &lt;/span&gt;&lt;span class="stepText"&gt;Ophcrack&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;	Okay, if none of the other methods have worked, then this one &lt;em&gt;probably&lt;/em&gt; will! It is one of the more complicated ones, but it typically has a higher success rate, especially if the computer you are trying to get on had a crappy password.&lt;/p&gt;&lt;p&gt;What you need to do is &lt;strong&gt;&lt;a  href="http://ophcrack.sourceforge.net/" rel="nofollow" target="_blank" &gt;download Ophcrack&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You can go down two different alleys for this:&lt;/p&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;Live CD&lt;/li&gt;&lt;li&gt;Direct Installation&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;	Essentially, you always want to go through the &lt;strong&gt;Live CD &lt;/strong&gt;way unless you have unlimited access to the computer. I have it installed on my computer, just so I could see if I could hack my own password. You may actually want to try this out and &lt;strong&gt;familiarize yourself with the software prior&lt;/strong&gt; to using it on another computer.&lt;/p&gt;&lt;p&gt;	Download the software and then prepare it to be burned to a CD, but &lt;strong&gt;do not&lt;/strong&gt; do it quite yet, there is more to do. Another alternative, is to put it on a &lt;strong&gt;flashdrive&lt;/strong&gt;, which is what I did because I don't have many CDs lying around. For a tutorial on doing this, click &lt;a  href="http://www.pendrivelinux.com/usb-ophcrack-windows-login-password-cracker/" rel="nofollow" target="_blank" &gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;	What you also need to do is &lt;strong&gt;download and extract any rainbow tables&lt;/strong&gt; that you want to use. Rainbow tables essentially contain an organized table of all the possible hashes that exist given a certain set of characters (e.g. uppercase letters, lowercase letters, special, etc.), which is much more efficient since you don't have to compute the hashes when you are cracking. Based on the suspected maximum length and type of characters of the password on the computer, you need to select the appropriate table (see the Ophcrack &lt;a  href="http://ophcrack.sourceforge.net/tables.php" rel="nofollow" target="_blank" &gt;download page&lt;/a&gt;). If you are on &lt;strong&gt;Windows 7&lt;/strong&gt;, then use the Vista tables, they should be sufficient. After you have downloaded a table, then place it/them in the "&lt;strong&gt;tables/&lt;/strong&gt;" folder on your CD. &lt;/p&gt;&lt;p&gt;	Burn the CD and you are almost all ready!&lt;/p&gt;&lt;p&gt;Simply insert the CD into the computer and restart it. You may have to call up the &lt;strong&gt;boot menu&lt;/strong&gt; by pressing &lt;strong&gt;F12 &lt;/strong&gt;or something, but it may automatically boot from the CD/USB drive you inserted. Next, the Ophcrack Linux distro will boot up, which takes about a minute. Then you simply &lt;strong&gt;select the passwords&lt;/strong&gt; you want to crack and click "&lt;strong&gt;start&lt;/strong&gt;"... and hope for the best! Some passwords are cracked in 3 seconds and some take an hour—it really just depends on the password length and randomness (and of course, if you selected the most efficient rainbow table).&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634654641106231473.jpg" class="imgCenter imgCenterFull " height="219" width="320" /&gt;&lt;/p&gt;&lt;p&gt;	I have had times when I could simply &lt;strong&gt;not&lt;/strong&gt; crack using this method, but it &lt;strong&gt;works&lt;/strong&gt; &lt;strong&gt;most of the time&lt;/strong&gt;. If not, I resorted to more surreptitious espionage methods as in Steps 1 through 3. Where there is a will there is a way, as I always say! :D&lt;/p&gt;&lt;p&gt;Just never give up. Keep trying. Keep learning, researching, asking questions until you find your answer! Nothing is impossible unless you believe it is. :) &lt;/p&gt;&lt;ul&gt;&lt;li&gt;Stay tuned for more &lt;a  href="../../" rel="nofollow" target="_blank" &gt;&lt;em&gt;&lt;strong&gt;Invisible Computer&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt; articles and how-to's!&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://stop-cyberbullies.com/wp-content/uploads/2009/07/computer-spy.jpg" rel="nofollow" target="_blank" &gt;stopcyberbullies&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://invisiblecomputer.wonderhowto.com/blog/sneak-into-your-roommates-computer-by-bypassing-windows-login-screen-0133486/"&gt;How to Sneak into Your Roommate's Computer by Bypassing the Windows Login Screen&lt;/a&gt; on &lt;a href="http://invisiblecomputer.wonderhowto.com/"&gt;invisiblecomputer.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/add-ctrl-alt-delete-windows-7-logon-0132359/"&gt;How to Add Ctrl+Alt+Delete to Windows 7 Logon&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/log-windows-7-with-username-password-0132323/"&gt;How to log on Windows 7 with username &amp;amp; password&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-change-your-boot-and-logon-screen-windows-xp-137488/"&gt;How to change your boot and logon screen in Windows XP&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-find-out-whos-trying-access-your-windows-vista-pc-with-account-auditing-398533/"&gt;How to find out who's trying to access your Windows Vista PC with account auditing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-bypass-windows-genuine-advantage-notification-350167/"&gt;How to bypass Windows Genuine Advantage notification&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656778707436663.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)</title>
      <link>http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/" title="Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656750319442802.jpg" alt="Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fweekend-homework-become-null-byte-contributor-2-24-2012-0133520%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fweekend-homework-become-null-byte-contributor-2-24-2012-0133520%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id24416912"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Are you the expert hacker we're looking for? Do you have a great idea for an article on Null Byte? Do you have a passion to write, and more importantly... teach?&lt;/p&gt;&lt;p&gt;We're officially looking for Null Byters on a weekly basis who are willing to take the time to educate the community. Contributors will write tutorials, which will be featured on the &lt;a href="http://null-byte.wonderhowto.com/blog/"&gt;Null Byte blog&lt;/a&gt;, as well as the front page of &lt;strong&gt;&lt;a href="http://www.wonderhowto.com/"&gt;WonderHowTo&lt;/a&gt;&lt;/strong&gt; (providing it's up to par, of course).&lt;/p&gt;&lt;p&gt; There is no need to be intimidated if you fear you lack the writing skills. I will edit your drafts if necessary and get them looking great! You don't need to be a college professor to share your hard earned knowledge with everyone!&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;How Else Can I Help?&lt;/h2&gt;&lt;p&gt;If you did not notice yet, I am new here! It would be great to get to know the community better and hear your ideas on the future of Null Byte. I look forward to discussing information security with you on the &lt;a href="http://null-byte.wonderhowto.com/forum/"&gt;forums&lt;/a&gt; or in our &lt;a href="http://null-byte.wonderhowto.com/forum/null-byte-irc-webchat-now-available-1696/"&gt;IRC&lt;/a&gt; channel.&lt;/p&gt;&lt;p&gt;If you have skills and want to share knowledge on any of the topics below, please leave a response in the comments with which topic you would like to write,  or &lt;a href="http://www.wonderhowto.com/community/member/allenfreeman/"&gt;message me&lt;/a&gt; privately. If you have any additional ideas &lt;em&gt;at all&lt;/em&gt;, please submit them below.&lt;/p&gt;&lt;p&gt;And one last thing, if you come across a great news article or some helpful links, please post them to our &lt;a href="http://null-byte.wonderhowto.com/corkboard/"&gt;Community Corkboard&lt;/a&gt; to share with the everyone!&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Topic Ideas&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;&lt;strong&gt;Intro to Sqlmap&lt;/strong&gt; — SQL injections are a hot topic today! Teach the community a little about code injections with an overview of sqlmap.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to use Nmap from Behind a Proxy&lt;/strong&gt; — Teach users how to Nmap from behind a proxy to mask traffic. Extra points if you use Tor or I2P!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Intro to Programming&lt;/strong&gt; — (Thanks &lt;a href="http://www.wonderhowto.com/community/member/christophervoute/"&gt;ChristopherVoute&lt;/a&gt;! See his article &lt;a href="http://null-byte.wonderhowto.com/blog/introduction-python-part-one-variables-input-and-output-0133579/"&gt;here&lt;/a&gt;.) We have some mid-level python articles on Null Byte, but we could use some more entry-level texts!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to use Virtual Machines to Run Multiple Operating Systems&lt;/strong&gt; — Let's face it, WINE is old and sometimes you need to get into a Mac environment.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Config Openbox on Backtrack (sound must work!)&lt;/strong&gt; — Sometimes you don't want all the fluff and pomp of Gnome or KDE. Show us how to configure Openbox as our window manager in Backtrack 5.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Give us Your Best Social Engineering Tips&lt;/strong&gt; — Can you talk your way out of anything? Can you talk your way &lt;em&gt;into&lt;/em&gt; anything? Do you have any tips you could share with the rest of us? Why break a password when you can simply ask for it, right?&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Harden Your Linux Box&lt;/strong&gt; — Fresh Linux install? Walk us through some of the steps of making it more secure then it is out of the box. Bonus points for defense in depth!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Intro to TCP/IP&lt;/strong&gt; — Are you a networking person? We could use an introduction to TCP/IP, its history and its use.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Buy Hardware&lt;/strong&gt; — The computer hardware market is changing every day. Help new users make informed decisions by giving an overview of what's hot and available out there. &lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Torrent Securely&lt;/strong&gt; — Explain how to use anonymous networks and private trackers to download safe from the prying eyes of your ISP.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Comments? Questions? Concerns? Leave me a comment!&lt;/p&gt;&lt;p&gt;Photo by &lt;a href="http://eastsidebooksbishop.com/wp-content/uploads/2010/05/used-books.jpg" rel="nofollow" target="_blank" &gt;EastSidebooks&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-17-2012-0133416/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/17/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-3-2012-0133193/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/3/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/null-byte-injections-work-history-our-namesake-0130141/"&gt;How Null Byte Injections Work: A History of Our Namesake&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-10-2012-0133309/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/10/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/farewell-byte-goodbye-alex-welcome-allen-0133440/"&gt;Farewell Byte: Goodbye Alex, Welcome Allen&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=hlamMM1NTy4:Ehv4PDNi9-U:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=hlamMM1NTy4:Ehv4PDNi9-U:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=hlamMM1NTy4:Ehv4PDNi9-U:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=hlamMM1NTy4:Ehv4PDNi9-U:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/hlamMM1NTy4" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 16:10:38 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/</guid>
      <dc:creator>Allen Freeman</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/" title="Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656750319442802.jpg" alt="Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fweekend-homework-become-null-byte-contributor-2-24-2012-0133520%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fweekend-homework-become-null-byte-contributor-2-24-2012-0133520%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id24416912"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Are you the expert hacker we're looking for? Do you have a great idea for an article on Null Byte? Do you have a passion to write, and more importantly... teach?&lt;/p&gt;&lt;p&gt;We're officially looking for Null Byters on a weekly basis who are willing to take the time to educate the community. Contributors will write tutorials, which will be featured on the &lt;a href="http://null-byte.wonderhowto.com/blog/"&gt;Null Byte blog&lt;/a&gt;, as well as the front page of &lt;strong&gt;&lt;a href="http://www.wonderhowto.com/"&gt;WonderHowTo&lt;/a&gt;&lt;/strong&gt; (providing it's up to par, of course).&lt;/p&gt;&lt;p&gt; There is no need to be intimidated if you fear you lack the writing skills. I will edit your drafts if necessary and get them looking great! You don't need to be a college professor to share your hard earned knowledge with everyone!&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;How Else Can I Help?&lt;/h2&gt;&lt;p&gt;If you did not notice yet, I am new here! It would be great to get to know the community better and hear your ideas on the future of Null Byte. I look forward to discussing information security with you on the &lt;a href="http://null-byte.wonderhowto.com/forum/"&gt;forums&lt;/a&gt; or in our &lt;a href="http://null-byte.wonderhowto.com/forum/null-byte-irc-webchat-now-available-1696/"&gt;IRC&lt;/a&gt; channel.&lt;/p&gt;&lt;p&gt;If you have skills and want to share knowledge on any of the topics below, please leave a response in the comments with which topic you would like to write,  or &lt;a href="http://www.wonderhowto.com/community/member/allenfreeman/"&gt;message me&lt;/a&gt; privately. If you have any additional ideas &lt;em&gt;at all&lt;/em&gt;, please submit them below.&lt;/p&gt;&lt;p&gt;And one last thing, if you come across a great news article or some helpful links, please post them to our &lt;a href="http://null-byte.wonderhowto.com/corkboard/"&gt;Community Corkboard&lt;/a&gt; to share with the everyone!&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Topic Ideas&lt;/h2&gt;&lt;ol class="numberedList"&gt;&lt;li&gt;&lt;strong&gt;Intro to Sqlmap&lt;/strong&gt; — SQL injections are a hot topic today! Teach the community a little about code injections with an overview of sqlmap.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to use Nmap from Behind a Proxy&lt;/strong&gt; — Teach users how to Nmap from behind a proxy to mask traffic. Extra points if you use Tor or I2P!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Intro to Programming&lt;/strong&gt; — (Thanks &lt;a href="http://www.wonderhowto.com/community/member/christophervoute/"&gt;ChristopherVoute&lt;/a&gt;! See his article &lt;a href="http://null-byte.wonderhowto.com/blog/introduction-python-part-one-variables-input-and-output-0133579/"&gt;here&lt;/a&gt;.) We have some mid-level python articles on Null Byte, but we could use some more entry-level texts!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to use Virtual Machines to Run Multiple Operating Systems&lt;/strong&gt; — Let's face it, WINE is old and sometimes you need to get into a Mac environment.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Config Openbox on Backtrack (sound must work!)&lt;/strong&gt; — Sometimes you don't want all the fluff and pomp of Gnome or KDE. Show us how to configure Openbox as our window manager in Backtrack 5.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Give us Your Best Social Engineering Tips&lt;/strong&gt; — Can you talk your way out of anything? Can you talk your way &lt;em&gt;into&lt;/em&gt; anything? Do you have any tips you could share with the rest of us? Why break a password when you can simply ask for it, right?&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Harden Your Linux Box&lt;/strong&gt; — Fresh Linux install? Walk us through some of the steps of making it more secure then it is out of the box. Bonus points for defense in depth!&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Intro to TCP/IP&lt;/strong&gt; — Are you a networking person? We could use an introduction to TCP/IP, its history and its use.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Buy Hardware&lt;/strong&gt; — The computer hardware market is changing every day. Help new users make informed decisions by giving an overview of what's hot and available out there. &lt;/li&gt;&lt;li&gt;&lt;strong&gt;How to Torrent Securely&lt;/strong&gt; — Explain how to use anonymous networks and private trackers to download safe from the prying eyes of your ISP.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Comments? Questions? Concerns? Leave me a comment!&lt;/p&gt;&lt;p&gt;Photo by &lt;a href="http://eastsidebooksbishop.com/wp-content/uploads/2010/05/used-books.jpg" rel="nofollow" target="_blank" &gt;EastSidebooks&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-24-2012-0133520/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/24/2012)&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-17-2012-0133416/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/17/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-3-2012-0133193/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/3/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/null-byte-injections-work-history-our-namesake-0130141/"&gt;How Null Byte Injections Work: A History of Our Namesake&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/weekend-homework-become-null-byte-contributor-2-10-2012-0133309/"&gt;Weekend Homework: How to Become a Null Byte Contributor (2/10/2012)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/farewell-byte-goodbye-alex-welcome-allen-0133440/"&gt;Farewell Byte: Goodbye Alex, Welcome Allen&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656750319442802.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web</title>
      <link>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656013004777085.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id56782665"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;	You've probably seen those deep-web images floating around on the Internet. Usually, it goes something like this: There is a towering iceberg and the deeper the underwater portion extends, the more “hidden” and “exotic” the content is described to be. Sometimes these images are accurate to a point, but most are just making things up.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 354px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655961890975309.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;So what exactly is 'deep web' then? Are there really hidden secrets and treasure buried under some cloak and dagger type conspiracy? Well, in short, the answer depends on your idea of treasure and conspiracy.&lt;/p&gt;&lt;p&gt;In this series of articles, I am going to break down the idea of a deep web, what is it, how it got there, and most importantly, how we can use it for our security—maybe even for &lt;a  href="http://ohinternet.com/Lulz" rel="nofollow" target="_blank" &gt;lulz&lt;/a&gt;. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Anonymity and Darknets&lt;/h2&gt;&lt;p&gt;	As it stands today, practical knowledge of how darknets (non-indexed portions of the Internet) function will allow you to make more informed decisions regarding risks when rooting a box, hiding files, or communicating securely. Now, keep in mind that nothing short of unplugging your computer will make you 100% anonymous. You can have fifty proxies and a handful of VPNs, but never consider yourself to be completely masked. Look at anonymity as a trade off between function and speed.&lt;/p&gt;&lt;p&gt;&lt;em&gt;The idea is to have enough masking, while maintaining a level of usefulness. While it is not impossible to track your actions, ideally you want to make it logistically too complex to be attempted in a realistic way. &lt;/em&gt;&lt;/p&gt;&lt;p&gt;	If you need to escape your school's firewall, a simple HTTP proxy may work for this. If you are rooting an AT&amp;amp;T server, you will want several layers between yourself and the target. Cyber crime laws are changing rapidly around the world, from Cairo to Chicago, and learning how to blend in with the masses is a valuable skill to have. You are harder to track when you are nobody at all.&lt;/p&gt;&lt;p&gt;First though, we need to talk about Google. Yes Google.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Why Google?&lt;/h2&gt;&lt;p&gt;	When you use Google to search, it does not take your query and search the entire Internet for results; there is simply too much data for that. It runs your search on databases of sites that have already been located by Google’s web crawlers. These crawlers are bots, coded to search for, find, and index content on the web. Primarily, this is achieved by 'seeding' the crawler with a few initial links to start with. It scans for more hyperlinks on those websites, connecting to and repeating this process over and over while creating a 'map' of the results. &lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 532px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655969383668469.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;	It is this 'map' of collected links that your search request is actually looking at. While this is innovative, it contains a few inherent flaws.&lt;/p&gt;&lt;p&gt;The Internet is large. In fact, the Internet is &lt;em&gt;very&lt;/em&gt; large, and estimates on just how much of it is actually indexed and publicly searchable range from 40 to 70 percent. Problems arise in the fact that most search engines do not crawl through non-HTTP protocols like &lt;a  href="http://en.wikipedia.org/wiki/Gopher_%28protocol%29" rel="nofollow" target="_blank" &gt;Gopher&lt;/a&gt; or &lt;a  href="http://en.wikipedia.org/wiki/Ftp" rel="nofollow" target="_blank" &gt;FTP&lt;/a&gt;. And if they choose to, developers can take steps to minimize indexing of their sites altogether (controls like the &lt;em&gt;&lt;a  href="http://en.wikipedia.org/wiki/Robots_exclusion_standard" rel="nofollow" target="_blank" &gt;robots.txt&lt;/a&gt;&lt;/em&gt; standard and &lt;a  href="http://en.wikipedia.org/wiki/Spider_trap" rel="nofollow" target="_blank" &gt;spider traps&lt;/a&gt; are commonly used). It is worth noting that network resources requiring authorization are not crawled, under normal circumstances. &lt;/p&gt;&lt;p&gt;	The surface web makes up over 90 percent of what you use and do online. The remaining network services require you to directly connect to them, log in to them, or otherwise know they are there beforehand.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655983881241933.jpg" class="imgCenter imgCenterFull " height="273" width="532" /&gt;&lt;/p&gt;&lt;p&gt;So, what good is all of this for you?&lt;/p&gt;&lt;p&gt;Right now, not as much as you might think. Though the content might not be searched, and is sometimes exciting and risque, you are still held to the basic laws of the Internet, &lt;a  href="http://en.wikipedia.org/wiki/TCP/IP" rel="nofollow" target="_blank" &gt;TCP/IP&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;	Every packet you send that zips back and forth has your IP address inside. It has to have your IP address, or the remote server would not know where to route the requests back to. This means that even if you are snooping around where you shouldn't be, even if it’s not on an indexed site, those server logs can still give you up, even when a normal &lt;a  href="http://en.wikipedia.org/wiki/HTTP" rel="nofollow" target="_blank" &gt;HTTP&lt;/a&gt;/&lt;a  href="http://en.wikipedia.org/wiki/SOCKS" rel="nofollow" target="_blank" &gt;SOCKS&lt;/a&gt; proxy is used. When your door gets kicked open and the Feds storm your living room, you will have wished you took the time to truly hide yourself.&lt;/p&gt;&lt;p&gt;	Picture the Internet like a city, with each building as a resource with an address. Envision the non-indexed parts as alleyways, still connected to the main streets, but lacking public addresses of their own.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655988799774571.jpg" class="imgCenter imgCenterFull " height="334" width="532" /&gt;&lt;/p&gt;&lt;p&gt;Let’s take it one step farther... what if these alleyways had gates? What if you could create a path through the city using just the alley and your own private keys? You would be much harder to locate and follow. You could always pop out into the city, go into a house as you needed; people would only see you come and go from the alley, would not know where you started nor where you intend to go.&lt;/p&gt;&lt;p&gt;This is the basic idea behind low-latency anonymous networks like &lt;a  href="https://www.torproject.org/" rel="nofollow" target="_blank" &gt;Tor&lt;/a&gt; and &lt;a  href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;i2p&lt;/a&gt;. We will go over both of these in more detail, including installation and configuration, in the upcoming articles, so stay tuned. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;&lt;strong&gt;Continue to Part Two: Onions and Daggers&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Photos by &lt;a href="http://thenewsjunkie.com/wp-content/uploads/icebergdeepweb.jpg" rel="nofollow" target="_blank" &gt;TheNewsJunkie&lt;/a&gt;, &lt;a  href="http://en.wikipedia.org/wiki/File:Internet_map_1024.jpg" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt;, &lt;a  href="http://www.osti.gov/speeches/fy2009/CLC/p7hg_img_1/fullsize/Slide07_fs.jpg" rel="nofollow" target="_blank" &gt;OSTI&lt;/a&gt;, &lt;a  href="http://flic.kr/p/H8rxZ" rel="nofollow" target="_blank" &gt;eschipul&lt;/a&gt;, &lt;a title="Ubertech" href="http://2.bp.blogspot.com/-0nZPGQmi3-0/Ti2EF5OrbaI/AAAAAAAABMg/BBbTq0abmDE/s400/6a00e54fce13cf88340148c6ab4213970c-800wi.jpg" rel="nofollow" target="_blank" &gt;Ubertech&lt;/a&gt;&lt;br /&gt; &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-optimize-your-deep-web-assets-for-google-384859/"&gt;How to optimize your deep web assets for Google&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://kinect.wonderhowto.com/blog/kinect-as-web-browser-controller-0123508/"&gt;Kinect as a web browser controller&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=OgqQmEwFueg:XTykSXXO4l0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=OgqQmEwFueg:XTykSXXO4l0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=OgqQmEwFueg:XTykSXXO4l0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=OgqQmEwFueg:XTykSXXO4l0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/OgqQmEwFueg" height="1" width="1"/&gt;</description>
      <comments>http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/#comments</comments>
      <pubDate>Thu, 23 Feb 2012 19:15:02 GMT</pubDate>
      <guid isPermaLink="true">http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/</guid>
      <dc:creator>Allen Freeman</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/" title="Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656013004777085.jpg" alt="Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fnull-byte.wonderhowto.com%2fblog%2fanonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id56782665"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;	You've probably seen those deep-web images floating around on the Internet. Usually, it goes something like this: There is a towering iceberg and the deeper the underwater portion extends, the more “hidden” and “exotic” the content is described to be. Sometimes these images are accurate to a point, but most are just making things up.&lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 354px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655961890975309.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;So what exactly is 'deep web' then? Are there really hidden secrets and treasure buried under some cloak and dagger type conspiracy? Well, in short, the answer depends on your idea of treasure and conspiracy.&lt;/p&gt;&lt;p&gt;In this series of articles, I am going to break down the idea of a deep web, what is it, how it got there, and most importantly, how we can use it for our security—maybe even for &lt;a  href="http://ohinternet.com/Lulz" rel="nofollow" target="_blank" &gt;lulz&lt;/a&gt;. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;Anonymity and Darknets&lt;/h2&gt;&lt;p&gt;	As it stands today, practical knowledge of how darknets (non-indexed portions of the Internet) function will allow you to make more informed decisions regarding risks when rooting a box, hiding files, or communicating securely. Now, keep in mind that nothing short of unplugging your computer will make you 100% anonymous. You can have fifty proxies and a handful of VPNs, but never consider yourself to be completely masked. Look at anonymity as a trade off between function and speed.&lt;/p&gt;&lt;p&gt;&lt;em&gt;The idea is to have enough masking, while maintaining a level of usefulness. While it is not impossible to track your actions, ideally you want to make it logistically too complex to be attempted in a realistic way. &lt;/em&gt;&lt;/p&gt;&lt;p&gt;	If you need to escape your school's firewall, a simple HTTP proxy may work for this. If you are rooting an AT&amp;amp;T server, you will want several layers between yourself and the target. Cyber crime laws are changing rapidly around the world, from Cairo to Chicago, and learning how to blend in with the masses is a valuable skill to have. You are harder to track when you are nobody at all.&lt;/p&gt;&lt;p&gt;First though, we need to talk about Google. Yes Google.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Why Google?&lt;/h2&gt;&lt;p&gt;	When you use Google to search, it does not take your query and search the entire Internet for results; there is simply too much data for that. It runs your search on databases of sites that have already been located by Google’s web crawlers. These crawlers are bots, coded to search for, find, and index content on the web. Primarily, this is achieved by 'seeding' the crawler with a few initial links to start with. It scans for more hyperlinks on those websites, connecting to and repeating this process over and over while creating a 'map' of the results. &lt;/p&gt;&lt;p&gt;&lt;img style="width: 532px; height: 532px;" alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655969383668469.jpg" class="hasLarge imgCenter imgCenterFull " /&gt;&lt;/p&gt;&lt;p&gt;	It is this 'map' of collected links that your search request is actually looking at. While this is innovative, it contains a few inherent flaws.&lt;/p&gt;&lt;p&gt;The Internet is large. In fact, the Internet is &lt;em&gt;very&lt;/em&gt; large, and estimates on just how much of it is actually indexed and publicly searchable range from 40 to 70 percent. Problems arise in the fact that most search engines do not crawl through non-HTTP protocols like &lt;a  href="http://en.wikipedia.org/wiki/Gopher_%28protocol%29" rel="nofollow" target="_blank" &gt;Gopher&lt;/a&gt; or &lt;a  href="http://en.wikipedia.org/wiki/Ftp" rel="nofollow" target="_blank" &gt;FTP&lt;/a&gt;. And if they choose to, developers can take steps to minimize indexing of their sites altogether (controls like the &lt;em&gt;&lt;a  href="http://en.wikipedia.org/wiki/Robots_exclusion_standard" rel="nofollow" target="_blank" &gt;robots.txt&lt;/a&gt;&lt;/em&gt; standard and &lt;a  href="http://en.wikipedia.org/wiki/Spider_trap" rel="nofollow" target="_blank" &gt;spider traps&lt;/a&gt; are commonly used). It is worth noting that network resources requiring authorization are not crawled, under normal circumstances. &lt;/p&gt;&lt;p&gt;	The surface web makes up over 90 percent of what you use and do online. The remaining network services require you to directly connect to them, log in to them, or otherwise know they are there beforehand.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655983881241933.jpg" class="imgCenter imgCenterFull " height="273" width="532" /&gt;&lt;/p&gt;&lt;p&gt;So, what good is all of this for you?&lt;/p&gt;&lt;p&gt;Right now, not as much as you might think. Though the content might not be searched, and is sometimes exciting and risque, you are still held to the basic laws of the Internet, &lt;a  href="http://en.wikipedia.org/wiki/TCP/IP" rel="nofollow" target="_blank" &gt;TCP/IP&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;	Every packet you send that zips back and forth has your IP address inside. It has to have your IP address, or the remote server would not know where to route the requests back to. This means that even if you are snooping around where you shouldn't be, even if it’s not on an indexed site, those server logs can still give you up, even when a normal &lt;a  href="http://en.wikipedia.org/wiki/HTTP" rel="nofollow" target="_blank" &gt;HTTP&lt;/a&gt;/&lt;a  href="http://en.wikipedia.org/wiki/SOCKS" rel="nofollow" target="_blank" &gt;SOCKS&lt;/a&gt; proxy is used. When your door gets kicked open and the Feds storm your living room, you will have wished you took the time to truly hide yourself.&lt;/p&gt;&lt;p&gt;	Picture the Internet like a city, with each building as a resource with an address. Envision the non-indexed parts as alleyways, still connected to the main streets, but lacking public addresses of their own.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655988799774571.jpg" class="imgCenter imgCenterFull " height="334" width="532" /&gt;&lt;/p&gt;&lt;p&gt;Let’s take it one step farther... what if these alleyways had gates? What if you could create a path through the city using just the alley and your own private keys? You would be much harder to locate and follow. You could always pop out into the city, go into a house as you needed; people would only see you come and go from the alley, would not know where you started nor where you intend to go.&lt;/p&gt;&lt;p&gt;This is the basic idea behind low-latency anonymous networks like &lt;a  href="https://www.torproject.org/" rel="nofollow" target="_blank" &gt;Tor&lt;/a&gt; and &lt;a  href="http://www.i2p2.de/" rel="nofollow" target="_blank" &gt;i2p&lt;/a&gt;. We will go over both of these in more detail, including installation and configuration, in the upcoming articles, so stay tuned. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;UPDATE: &lt;/strong&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-two-onions-and-daggers-0133474/"&gt;&lt;strong&gt;Continue to Part Two: Onions and Daggers&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Photos by &lt;a href="http://thenewsjunkie.com/wp-content/uploads/icebergdeepweb.jpg" rel="nofollow" target="_blank" &gt;TheNewsJunkie&lt;/a&gt;, &lt;a  href="http://en.wikipedia.org/wiki/File:Internet_map_1024.jpg" rel="nofollow" target="_blank" &gt;Wikipedia&lt;/a&gt;, &lt;a  href="http://www.osti.gov/speeches/fy2009/CLC/p7hg_img_1/fullsize/Slide07_fs.jpg" rel="nofollow" target="_blank" &gt;OSTI&lt;/a&gt;, &lt;a  href="http://flic.kr/p/H8rxZ" rel="nofollow" target="_blank" &gt;eschipul&lt;/a&gt;, &lt;a title="Ubertech" href="http://2.bp.blogspot.com/-0nZPGQmi3-0/Ti2EF5OrbaI/AAAAAAAABMg/BBbTq0abmDE/s400/6a00e54fce13cf88340148c6ab4213970c-800wi.jpg" rel="nofollow" target="_blank" &gt;Ubertech&lt;/a&gt;&lt;br /&gt; &lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://null-byte.wonderhowto.com/blog/anonymity-darknets-and-staying-out-federal-custody-part-one-deep-web-0133455/"&gt;Anonymity, Darknets and Staying Out of Federal Custody, Part One: Deep Web&lt;/a&gt; on &lt;a href="http://null-byte.wonderhowto.com/"&gt;null-byte.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/sneak-past-web-filters-and-proxy-blockers-with-google-translate-0133259/"&gt;How to Sneak Past Web Filters and Proxy Blockers with Google Translate&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/chain-proxies-mask-your-ip-address-and-remain-anonymous-web-0130581/"&gt;How to Chain Proxies to Mask Your IP Address and Remain Anonymous on the Web&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-optimize-your-deep-web-assets-for-google-384859/"&gt;How to optimize your deep web assets for Google&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/remove-your-online-identity-ultimate-guide-anonymity-and-security-internet-0131741/"&gt;How to Remove Your Online Identity: The Ultimate Guide to Anonymity and Security on the Internet&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://kinect.wonderhowto.com/blog/kinect-as-web-browser-controller-0123508/"&gt;Kinect as a web browser controller&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656013004777085.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!</title>
      <link>http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/" title="My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634655909902167995.jpg" alt="My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fmathcraft.wonderhowto.com%2fcorkboard%2fmy-drawings-and-newfound-sense-madness-l-l-0133461%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fmathcraft.wonderhowto.com%2fcorkboard%2fmy-drawings-and-newfound-sense-madness-l-l-0133461%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id61705856"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800057425264.jpg" class="hasLarge imgCenter imgCenterFull " height="769" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800348365775.jpg" class="hasLarge imgCenter imgCenterFull " height="731" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800540870113.jpg" class="hasLarge imgCenter imgCenterFull " height="681" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800772374520.jpg" class="hasLarge imgCenter imgCenterFull " height="768" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653801038822988.jpg" class="hasLarge imgCenter imgCenterFull " height="767" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653801215103297.jpg" class="hasLarge imgCenter imgCenterFull " height="775" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/"&gt;My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!&lt;/a&gt; on &lt;a href="http://mathcraft.wonderhowto.com/"&gt;mathcraft.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-googles-art-project-enjoy-artwork-masterpieces-web-0124616/"&gt;How To Use Google's Art Project (Enjoy Artwork Masterpieces on the Web)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-enhance-3d-artwork-adobe-photoshop-cs5-358628/"&gt;How to enhance 3D artwork in Adobe Photoshop CS5&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-glaze-artwork-painting-with-transparency-284305/"&gt;How to glaze artwork (painting with transparency)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-draw-artwork-perspective-adobe-illustrator-cs5-358325/"&gt;How to draw artwork in perspective in Adobe Illustrator CS5&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-enhance-your-podcast-with-artwork-and-chapters-200915/"&gt;How to enhance your podcast with artwork and chapters&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Op7NIlQtdAk:p74jfYRWMqY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Op7NIlQtdAk:p74jfYRWMqY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=Op7NIlQtdAk:p74jfYRWMqY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=Op7NIlQtdAk:p74jfYRWMqY:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/Op7NIlQtdAk" height="1" width="1"/&gt;</description>
      <comments>http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/#comments</comments>
      <pubDate>Fri, 24 Feb 2012 13:14:19 GMT</pubDate>
      <guid isPermaLink="true">http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/</guid>
      <dc:creator>William Bartlett</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/" title="My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634655909902167995.jpg" alt="My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fmathcraft.wonderhowto.com%2fcorkboard%2fmy-drawings-and-newfound-sense-madness-l-l-0133461%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fmathcraft.wonderhowto.com%2fcorkboard%2fmy-drawings-and-newfound-sense-madness-l-l-0133461%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id61705856"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800057425264.jpg" class="hasLarge imgCenter imgCenterFull " height="769" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800348365775.jpg" class="hasLarge imgCenter imgCenterFull " height="731" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800540870113.jpg" class="hasLarge imgCenter imgCenterFull " height="681" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653800772374520.jpg" class="hasLarge imgCenter imgCenterFull " height="768" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653801038822988.jpg" class="hasLarge imgCenter imgCenterFull " height="767" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634653801215103297.jpg" class="hasLarge imgCenter imgCenterFull " height="775" width="592" /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://mathcraft.wonderhowto.com/corkboard/my-drawings-and-newfound-sense-madness-l-l-0133461/"&gt;My Drawings: And a Newfound Sense of MADNESS!!!L@L!!!&lt;/a&gt; on &lt;a href="http://mathcraft.wonderhowto.com/"&gt;mathcraft.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-googles-art-project-enjoy-artwork-masterpieces-web-0124616/"&gt;How To Use Google's Art Project (Enjoy Artwork Masterpieces on the Web)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-enhance-3d-artwork-adobe-photoshop-cs5-358628/"&gt;How to enhance 3D artwork in Adobe Photoshop CS5&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-glaze-artwork-painting-with-transparency-284305/"&gt;How to glaze artwork (painting with transparency)&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-draw-artwork-perspective-adobe-illustrator-cs5-358325/"&gt;How to draw artwork in perspective in Adobe Illustrator CS5&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-enhance-your-podcast-with-artwork-and-chapters-200915/"&gt;How to enhance your podcast with artwork and chapters&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634655909902167995.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Arts &amp; Crafts/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect</title>
      <link>http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/" title="How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634655884226862899.jpg" alt="How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fgoogleplus.wonderhowto.com%2fblog%2fuse-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fgoogleplus.wonderhowto.com%2fblog%2fuse-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id65094316"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Although &lt;a  href="https://plus.google.com/u/0/100585555255542998765/posts" rel="nofollow" target="_blank" &gt;+Google Chrome&lt;/a&gt; has been getting many deserved kudos for its innovations and speed, many people still prefer to use &lt;a  href="https://plus.google.com/u/0/107964393728911462914/posts" rel="nofollow" target="_blank" &gt;+Mozilla Firefox&lt;/a&gt; as their primary browser. If you’re a dedicated Google+ user, you know that there are many Google+ &lt;a href="http://googleplus.wonderhowto.com/blog/22-google-chrome-extensions-make-google-even-better-0128633/"&gt;Chrome browser&lt;/a&gt; &lt;a href="http://googleplus.wonderhowto.com/blog/fix-your-google-frustrations-with-18-more-chrome-extensions-0128958/"&gt;extensions&lt;/a&gt; available to modify your Google+ experience. What you may not know is that there are also Firefox extensions you can use for Google+. &lt;/p&gt;&lt;p&gt;Since Google+ changes so quickly, some of the &lt;a href="http://googleplus.wonderhowto.com/blog/13-firefox-add-ons-enhance-your-google-experience-0129115/"&gt;Firefox add-ons&lt;/a&gt; I originally collected have quickly become outdated, or disappeared altogether. There aren’t as many as in Chrome, and what is there isn’t updated as frequently. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;10 Firefox Add-Ons to Use With Google+&lt;/h2&gt;&lt;p&gt;For overall Google+ management, you can’t go wrong with the &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/google-manager/" rel="nofollow" target="_blank" &gt;Google+ Manager&lt;/a&gt; add-on, which does everything from providing keyboard shortcuts to translating posts and cross-posting to other social networks. &lt;/p&gt;&lt;p&gt;If you’re using Google+, chances are you still have other social media accounts you can quite seem to let go of. With &lt;a  href="http://sgplus.me/" rel="nofollow" target="_blank" &gt;SGPlus.me&lt;/a&gt;, and &lt;a  href="http://gplusplus.me/download.html" rel="nofollow" target="_blank" &gt;G++&lt;/a&gt;, you can cross-post your updates to Facebook and Twitter. As a bonus, you can use these extensions to get your Facebook and Twitter streams inside your Google+ account, so theoretically you won't ever have to leave the comfort of Google+. &lt;/p&gt;&lt;p&gt;If what bothers you about Google+ is the notification bar in all the Google products, &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/onlyplusonplus" rel="nofollow" target="_blank" &gt;OnlyPlusOnPlus&lt;/a&gt; will remove the notification bar from all Google products except for Google+.&lt;/p&gt;&lt;p&gt;Want some more flexibility with your photos in Google+? The &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/fullsize-image-viewer-for-g" rel="nofollow" target="_blank" &gt;Fullsize Image Viewer&lt;/a&gt;, by &lt;a  href="https://plus.google.com/109630659107188171995/posts" rel="nofollow" target="_blank" &gt;+Nick Smith&lt;/a&gt;, will let you open just about any image in Google+ in full size in a new tab. &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/thumbnail-zoom-plus%20" rel="nofollow" target="_blank" &gt;Thumbnail Zoom Plus&lt;/a&gt; lets you view images in their full sizes when you hover over them, and it also works for other sites besides Google+, including Reddit, Facebook, Flickr, and more. &lt;/p&gt;&lt;p&gt;Are you having fun with the +1 button? To +1 just about anything, try the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/plus-one-any/" rel="nofollow" target="_blank" &gt;Plus one Any&lt;/a&gt;, the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/plus-one-button" rel="nofollow" target="_blank" &gt;Plus One Button&lt;/a&gt;, or the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/google-plus-one" rel="nofollow" target="_blank" &gt;Google +1 Button&lt;/a&gt; by &lt;a  href="https://plus.google.com/118074611982254715031/posts" rel="nofollow" target="_blank" &gt;+Oliver Shlobe&lt;/a&gt;. If you’re a grump, though, and you’d like to show your disapproval, install the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/gminus" rel="nofollow" target="_blank" &gt;gminus&lt;/a&gt; extension.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Greasemonkey + Userscripts = Perfect Google+ Experience&lt;/h2&gt;&lt;p&gt;One of the most popular ways to modify your browsing experience on Firefox is to install the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/" rel="nofollow" target="_blank" &gt;Greasemonkey&lt;/a&gt; extension, and then install the &lt;a  href="http://userscripts.org/" rel="nofollow" target="_blank" &gt;userscripts&lt;/a&gt; of your choice. There are a lot of userscripts available for Google+. Try out the following and let us know what you think. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106166" rel="nofollow" target="_blank" &gt;Google+ Tweaks&lt;/a&gt;: Get image previews, toggle comments, a mute button, and more.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/125922" rel="nofollow" target="_blank" &gt;Static Share for Google+&lt;/a&gt;: This extension will keep the Google+ share box in a fixed space on your browser window. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/120626" rel="nofollow" target="_blank" &gt;Go Away! Google Plus&lt;/a&gt;: If you want to keep Google+ separate from your other Google products, this script hides the Google+ notification and share buttons on all Google sites except for Google+. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106671" rel="nofollow" target="_blank" &gt;Google Plus Right Side Bar Remover&lt;/a&gt;: Want more room? Hide the right side bar, and give yourself more space for content.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/111452" rel="nofollow" target="_blank" &gt;Google Plus Star&lt;/a&gt;: This script lets you star content you want to remember, similar to the function in Google Reader.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/111206" rel="nofollow" target="_blank" &gt;Google+ Fxxking Filter&lt;/a&gt;: If you’re sick of all the swearing, you con use this script to filter out words you don’t care to see.  &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/107080" rel="nofollow" target="_blank" &gt;Google Plus Auto Pager&lt;/a&gt;: This extension lets you automatically load more posts when you reach the end of your stream.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/108671" rel="nofollow" target="_blank" &gt;Google+ Expander+&lt;/a&gt;: Automatically load more posts at the end of your stream, and view enlarged images when you hover over them. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106663" rel="nofollow" target="_blank" &gt;Unofficial Google+ Dense Theme&lt;/a&gt;: This theme condenses posts so you can see twice as much content.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106622" rel="nofollow" target="_blank" &gt;Google+ Notifications Blocker&lt;/a&gt;: This script hides Google+ notifications in all Google products except for Google+.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106681" rel="nofollow" target="_blank" &gt;Google+ Hover Zoom&lt;/a&gt;: Use this script to enlarge thumbnails, batch download photos, and more. &lt;/li&gt;&lt;/ul&gt;&lt;h4 class="articleWarning"&gt;Warning&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;I didn't test out most of the Greasemonkey scripts; proceed with caution. The majority of extensions and scripts were created close after the initial launch of Google+, so some of them may not work as well now. Because Google+ ships new features just about every day, it's impossible for the creators to be on top of all the changes. If an extension you installed isn't working properly, don't forget to provide feedback to the creator so they can make the appropriate improvements. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://flic.kr/p/4oLybq" rel="nofollow" target="_blank" &gt;~Thanh&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/"&gt;How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect&lt;/a&gt; on &lt;a href="http://googleplus.wonderhowto.com/"&gt;googleplus.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://googleplus.wonderhowto.com/blog/13-firefox-add-ons-enhance-your-google-experience-0129115/"&gt;13 Firefox Add-Ons to Enhance Your Google+ Experience&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/install-incompatible-firefox-add-ons-after-upgrading-new-firefox-0131399/"&gt;How to Install &amp;quot;Incompatible&amp;quot; Firefox Add-Ons After Upgrading to the New Firefox&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://googleplus.wonderhowto.com/blog/stop-liking-and-start-google-1ing-0129490/"&gt;How to Stop &amp;quot;Liking&amp;quot; and Start Google +1ing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/secure-your-firefox-browser-0132322/"&gt;How to secure your Firefox browser&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-favicons-display-extra-information-mozilla-firefox-google-chrome-421993/"&gt;How to use favicons to display extra information in Mozilla Firefox or Google Chrome&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=-FTqQbBfAfU:vxoec8IvQc0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=-FTqQbBfAfU:vxoec8IvQc0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=-FTqQbBfAfU:vxoec8IvQc0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=-FTqQbBfAfU:vxoec8IvQc0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/-FTqQbBfAfU" height="1" width="1"/&gt;</description>
      <comments>http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/#comments</comments>
      <pubDate>Wed, 22 Feb 2012 22:28:58 GMT</pubDate>
      <guid isPermaLink="true">http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/</guid>
      <dc:creator>toastykitten</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/" title="How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634655884226862899.jpg" alt="How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fgoogleplus.wonderhowto.com%2fblog%2fuse-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fgoogleplus.wonderhowto.com%2fblog%2fuse-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id65094316"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;Although &lt;a  href="https://plus.google.com/u/0/100585555255542998765/posts" rel="nofollow" target="_blank" &gt;+Google Chrome&lt;/a&gt; has been getting many deserved kudos for its innovations and speed, many people still prefer to use &lt;a  href="https://plus.google.com/u/0/107964393728911462914/posts" rel="nofollow" target="_blank" &gt;+Mozilla Firefox&lt;/a&gt; as their primary browser. If you’re a dedicated Google+ user, you know that there are many Google+ &lt;a href="http://googleplus.wonderhowto.com/blog/22-google-chrome-extensions-make-google-even-better-0128633/"&gt;Chrome browser&lt;/a&gt; &lt;a href="http://googleplus.wonderhowto.com/blog/fix-your-google-frustrations-with-18-more-chrome-extensions-0128958/"&gt;extensions&lt;/a&gt; available to modify your Google+ experience. What you may not know is that there are also Firefox extensions you can use for Google+. &lt;/p&gt;&lt;p&gt;Since Google+ changes so quickly, some of the &lt;a href="http://googleplus.wonderhowto.com/blog/13-firefox-add-ons-enhance-your-google-experience-0129115/"&gt;Firefox add-ons&lt;/a&gt; I originally collected have quickly become outdated, or disappeared altogether. There aren’t as many as in Chrome, and what is there isn’t updated as frequently. &lt;/p&gt;&lt;h2 class="sectionHeadline"&gt;10 Firefox Add-Ons to Use With Google+&lt;/h2&gt;&lt;p&gt;For overall Google+ management, you can’t go wrong with the &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/google-manager/" rel="nofollow" target="_blank" &gt;Google+ Manager&lt;/a&gt; add-on, which does everything from providing keyboard shortcuts to translating posts and cross-posting to other social networks. &lt;/p&gt;&lt;p&gt;If you’re using Google+, chances are you still have other social media accounts you can quite seem to let go of. With &lt;a  href="http://sgplus.me/" rel="nofollow" target="_blank" &gt;SGPlus.me&lt;/a&gt;, and &lt;a  href="http://gplusplus.me/download.html" rel="nofollow" target="_blank" &gt;G++&lt;/a&gt;, you can cross-post your updates to Facebook and Twitter. As a bonus, you can use these extensions to get your Facebook and Twitter streams inside your Google+ account, so theoretically you won't ever have to leave the comfort of Google+. &lt;/p&gt;&lt;p&gt;If what bothers you about Google+ is the notification bar in all the Google products, &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/onlyplusonplus" rel="nofollow" target="_blank" &gt;OnlyPlusOnPlus&lt;/a&gt; will remove the notification bar from all Google products except for Google+.&lt;/p&gt;&lt;p&gt;Want some more flexibility with your photos in Google+? The &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/fullsize-image-viewer-for-g" rel="nofollow" target="_blank" &gt;Fullsize Image Viewer&lt;/a&gt;, by &lt;a  href="https://plus.google.com/109630659107188171995/posts" rel="nofollow" target="_blank" &gt;+Nick Smith&lt;/a&gt;, will let you open just about any image in Google+ in full size in a new tab. &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/thumbnail-zoom-plus%20" rel="nofollow" target="_blank" &gt;Thumbnail Zoom Plus&lt;/a&gt; lets you view images in their full sizes when you hover over them, and it also works for other sites besides Google+, including Reddit, Facebook, Flickr, and more. &lt;/p&gt;&lt;p&gt;Are you having fun with the +1 button? To +1 just about anything, try the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/plus-one-any/" rel="nofollow" target="_blank" &gt;Plus one Any&lt;/a&gt;, the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/plus-one-button" rel="nofollow" target="_blank" &gt;Plus One Button&lt;/a&gt;, or the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/google-plus-one" rel="nofollow" target="_blank" &gt;Google +1 Button&lt;/a&gt; by &lt;a  href="https://plus.google.com/118074611982254715031/posts" rel="nofollow" target="_blank" &gt;+Oliver Shlobe&lt;/a&gt;. If you’re a grump, though, and you’d like to show your disapproval, install the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/gminus" rel="nofollow" target="_blank" &gt;gminus&lt;/a&gt; extension.&lt;/p&gt;&lt;h2 class="sectionHeadline"&gt; Greasemonkey + Userscripts = Perfect Google+ Experience&lt;/h2&gt;&lt;p&gt;One of the most popular ways to modify your browsing experience on Firefox is to install the &lt;a  href="https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/" rel="nofollow" target="_blank" &gt;Greasemonkey&lt;/a&gt; extension, and then install the &lt;a  href="http://userscripts.org/" rel="nofollow" target="_blank" &gt;userscripts&lt;/a&gt; of your choice. There are a lot of userscripts available for Google+. Try out the following and let us know what you think. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106166" rel="nofollow" target="_blank" &gt;Google+ Tweaks&lt;/a&gt;: Get image previews, toggle comments, a mute button, and more.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/125922" rel="nofollow" target="_blank" &gt;Static Share for Google+&lt;/a&gt;: This extension will keep the Google+ share box in a fixed space on your browser window. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/120626" rel="nofollow" target="_blank" &gt;Go Away! Google Plus&lt;/a&gt;: If you want to keep Google+ separate from your other Google products, this script hides the Google+ notification and share buttons on all Google sites except for Google+. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106671" rel="nofollow" target="_blank" &gt;Google Plus Right Side Bar Remover&lt;/a&gt;: Want more room? Hide the right side bar, and give yourself more space for content.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/111452" rel="nofollow" target="_blank" &gt;Google Plus Star&lt;/a&gt;: This script lets you star content you want to remember, similar to the function in Google Reader.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/111206" rel="nofollow" target="_blank" &gt;Google+ Fxxking Filter&lt;/a&gt;: If you’re sick of all the swearing, you con use this script to filter out words you don’t care to see.  &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/107080" rel="nofollow" target="_blank" &gt;Google Plus Auto Pager&lt;/a&gt;: This extension lets you automatically load more posts when you reach the end of your stream.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/108671" rel="nofollow" target="_blank" &gt;Google+ Expander+&lt;/a&gt;: Automatically load more posts at the end of your stream, and view enlarged images when you hover over them. &lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106663" rel="nofollow" target="_blank" &gt;Unofficial Google+ Dense Theme&lt;/a&gt;: This theme condenses posts so you can see twice as much content.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106622" rel="nofollow" target="_blank" &gt;Google+ Notifications Blocker&lt;/a&gt;: This script hides Google+ notifications in all Google products except for Google+.&lt;/li&gt;&lt;li&gt;&lt;a  href="http://userscripts.org/scripts/show/106681" rel="nofollow" target="_blank" &gt;Google+ Hover Zoom&lt;/a&gt;: Use this script to enlarge thumbnails, batch download photos, and more. &lt;/li&gt;&lt;/ul&gt;&lt;h4 class="articleWarning"&gt;Warning&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;I didn't test out most of the Greasemonkey scripts; proceed with caution. The majority of extensions and scripts were created close after the initial launch of Google+, so some of them may not work as well now. Because Google+ ships new features just about every day, it's impossible for the creators to be on top of all the changes. If an extension you installed isn't working properly, don't forget to provide feedback to the creator so they can make the appropriate improvements. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Photo by &lt;a  href="http://flic.kr/p/4oLybq" rel="nofollow" target="_blank" &gt;~Thanh&lt;/a&gt;&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://googleplus.wonderhowto.com/blog/use-firefox-add-ons-and-greasemonkey-make-google-perfect-0131162/"&gt;How to Use Firefox Add-Ons and Greasemonkey to Make Google+ Perfect&lt;/a&gt; on &lt;a href="http://googleplus.wonderhowto.com/"&gt;googleplus.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://googleplus.wonderhowto.com/blog/13-firefox-add-ons-enhance-your-google-experience-0129115/"&gt;13 Firefox Add-Ons to Enhance Your Google+ Experience&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://null-byte.wonderhowto.com/blog/install-incompatible-firefox-add-ons-after-upgrading-new-firefox-0131399/"&gt;How to Install &amp;quot;Incompatible&amp;quot; Firefox Add-Ons After Upgrading to the New Firefox&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://googleplus.wonderhowto.com/blog/stop-liking-and-start-google-1ing-0129490/"&gt;How to Stop &amp;quot;Liking&amp;quot; and Start Google +1ing&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://infosecurity.wonderhowto.com/blog/secure-your-firefox-browser-0132322/"&gt;How to secure your Firefox browser&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://www.wonderhowto.com/how-to-use-favicons-display-extra-information-mozilla-firefox-google-chrome-421993/"&gt;How to use favicons to display extra information in Mozilla Firefox or Google Chrome&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634655884226862899.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Computers &amp; Programming/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
    <item>
      <title>WTFoto of the Day: Dead Serious Rules of the Indian Railways</title>
      <link>http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/</link>
      <description>&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/" title="WTFoto of the Day: Dead Serious Rules of the Indian Railways"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656145624978020.jpg" alt="WTFoto of the Day: Dead Serious Rules of the Indian Railways" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwtfoto-day-dead-serious-rules-indian-railways-0133517%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwtfoto-day-dead-serious-rules-indian-railways-0133517%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id59551376"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;No dead bodies. Unless of course you buy them a ticket. Then it's easy sailing.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655805756659765.jpg" class="hasLarge imgCenter imgCenterFull " height="444" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Stay tuned tomorrow for out-of-place panda!&lt;/p&gt;&lt;p&gt;Photo by James Carr&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/"&gt;WTFoto of the Day: Dead Serious Rules of the Indian Railways&lt;/a&gt; on &lt;a href="http://wtfoto.wonderhowto.com/"&gt;wtfoto.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-delicious-glass-what-0133508/"&gt;WTFoto of the Day: A Delicious Glass of What?!&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-carrion-0131065/"&gt;Scrabble Bingo of the Day: CARRION&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://mac-how-to.wonderhowto.com/blog/automatically-manage-and-sort-files-using-hazel-mac-0127415/"&gt;Automatically Manage and Sort Files Using Hazel [Mac]&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-cremains-0131043/"&gt;Scrabble Bingo of the Day: CREMAINS&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://triathlon.wonderhowto.com/blog/triathlon-food-what-eat-0123704/"&gt;Triathlon food: What to eat&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=GqEx-gcx0S0:OI9UEOyWi7A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=GqEx-gcx0S0:OI9UEOyWi7A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?i=GqEx-gcx0S0:OI9UEOyWi7A:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?a=GqEx-gcx0S0:OI9UEOyWi7A:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WonderHowTo/NewInHowTo?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/WonderHowTo/NewInHowTo/~4/GqEx-gcx0S0" height="1" width="1"/&gt;</description>
      <comments>http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/#comments</comments>
      <pubDate>Thu, 23 Feb 2012 15:54:11 GMT</pubDate>
      <guid isPermaLink="true">http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/</guid>
      <dc:creator>James Carr</dc:creator>
      <dc:publisher>WonderHowTo</dc:publisher>
      <media:title>WTFoto of the Day: Dead Serious Rules of the Indian Railways</media:title>
      <media:description type="html">&lt;div style="padding:2px 10px;background-color:#FFFFFF;"&gt;
	&lt;p style="font-family:verdana,arial,sans-serif;font-size:9.5pt;line-height:150%;"&gt;
		&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/" title="WTFoto of the Day: Dead Serious Rules of the Indian Railways"&gt;&lt;img style="display:block;width:300px;height:150px;" src="http://img.wonderhowto.com/screengrabs/634656145624978020.jpg" alt="WTFoto of the Day: Dead Serious Rules of the Indian Railways" width="300" height="150" border="0" hspace="5"/&gt;&lt;/a&gt;
		&lt;a style="display:block;width:50px;height:61px;float:left;margin:0px 10px 0px 0px;overflow:hidden;" href="http://api.tweetmeme.com/share?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwtfoto-day-dead-serious-rules-indian-railways-0133517%2f&amp;service=bit.ly&amp;service_api=R_eff28aec14f8d20ac55ede2efe7182e4"&gt;&lt;img style="display:block;width:50px;height:61px;margin:0px;" src="http://api.tweetmeme.com/imagebutton.gif?url=http%3a%2f%2fwtfoto.wonderhowto.com%2fblog%2fwtfoto-day-dead-serious-rules-indian-railways-0133517%2f" height="61" width="50" border="0" align="left" hspace="5"/&gt;&lt;/a&gt;
		&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;div class="docXEditor" id="id59551376"&gt;&lt;div class="textBlock"&gt;&lt;p&gt;No dead bodies. Unless of course you buy them a ticket. Then it's easy sailing.&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://img.wonderhowto.com/images/gfx/gallery/634655805756659765.jpg" class="hasLarge imgCenter imgCenterFull " height="444" width="592" /&gt;&lt;/p&gt;&lt;p&gt;Stay tuned tomorrow for out-of-place panda!&lt;/p&gt;&lt;p&gt;Photo by James Carr&lt;/p&gt;&lt;span class="cb"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt; &lt;span style="clear:both;"&gt;&lt;/span&gt;
	&lt;/p&gt;&lt;div style="clear:both;height:0px;overflow:hidden;"&gt;&lt;/div&gt;
	&lt;p&gt;&lt;em&gt;Via &lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-dead-serious-rules-indian-railways-0133517/"&gt;WTFoto of the Day: Dead Serious Rules of the Indian Railways&lt;/a&gt; on &lt;a href="http://wtfoto.wonderhowto.com/"&gt;wtfoto.wonderhowto.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;
		&lt;em&gt;Related:&lt;/em&gt; 
		&lt;ul style="margin-top:5px;"&gt;
			&lt;li&gt;&lt;a href="http://wtfoto.wonderhowto.com/blog/wtfoto-day-delicious-glass-what-0133508/"&gt;WTFoto of the Day: A Delicious Glass of What?!&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-carrion-0131065/"&gt;Scrabble Bingo of the Day: CARRION&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://mac-how-to.wonderhowto.com/blog/automatically-manage-and-sort-files-using-hazel-mac-0127415/"&gt;Automatically Manage and Sort Files Using Hazel [Mac]&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://scrabble.wonderhowto.com/blog/scrabble-bingo-day-cremains-0131043/"&gt;Scrabble Bingo of the Day: CREMAINS&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href="http://triathlon.wonderhowto.com/blog/triathlon-food-what-eat-0123704/"&gt;Triathlon food: What to eat&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/p&gt;&lt;/div&gt;</media:description>
      <media:thumbnail url="http://img.wonderhowto.com/screengrabs/634656145624978020.jpg" width="300" height="150" />
      <media:category scheme="http://www.wonderhowto.com/categories/">Games/</media:category>
      <media:rating scheme="urn:mpaa">g</media:rating>
    </item>
  </channel>
</rss>

