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

<channel>
	<title>entens.net &#187; Uncategorized</title>
	<atom:link href="http://entens.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://entens.net</link>
	<description>The less one forgets, the less one can remember.</description>
	<lastBuildDate>Tue, 22 Dec 2009 23:12:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Useful Utility: DialupRouteMaster</title>
		<link>http://entens.net/2009/12/useful-utility-dialuproutemaster/</link>
		<comments>http://entens.net/2009/12/useful-utility-dialuproutemaster/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 06:18:17 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Progamming]]></category>
		<category><![CDATA[Project time!]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WhatCouldPossiblyGoWrong]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://entens.net/?p=198</guid>
		<description><![CDATA[
Setup
Source*
If you've ever tried to setup static routing on Windows, you may know that the 'interface index' can change on you breaking your route. This utility will detect a broken route, remove the defunct persistent route, then recreate it with the correct interface parameter.
Note: I haven't had a chance to test it on a live network (I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-199" title="DialupRouteMaster" src="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster.png" alt="DialupRouteMaster" width="398" height="300" /></p>
<p><a href="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster_binary.zip">Setup</a></p>
<p><a href="http://entens.net/wp-content/uploads/2009/12/DialupRouteMaster_source.zip">Source</a>*</p>
<p>If you've ever tried to setup static routing on Windows, you may know that the 'interface index' can change on you breaking your route. This utility will detect a broken route, remove the defunct persistent route, then recreate it with the correct interface parameter.</p>
<p>Note: I haven't had a chance to test it on a live network (I will 12-22-09), but it may prove interesting for the rare need to route using Windows.</p>
<p>UPDATE: Tested, debugged, and 100% working.  This is now managing the static routes for a dialup connection between two power plants in Alaska!</p>
<p>*Released under the MIT license.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/12/useful-utility-dialuproutemaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly make a scratch file using .net</title>
		<link>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/</link>
		<comments>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 20:28:07 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=191</guid>
		<description><![CDATA[Using this code, you can quickly make a scratch file for read/write before you either save it or requiem in pace


'Returns Tempfile Path
Dim FileName As String = Path.GetTempFileName()

Dim File_Stream As New FileStream(FileName, FileMode.Append, FileAccess.Write)
Dim FileWriter As New StreamWriter(File_Stream)
'Write the Data
With FileWriter
  Try
      .BaseStream.Seek(0, SeekOrigin.End)
      [...]]]></description>
			<content:encoded><![CDATA[<p>Using this code, you can quickly make a scratch file for read/write before you either save it or requiem in pace<br />
<code lang="vb.net"></p>
<pre>
'Returns Tempfile Path
Dim FileName As String = Path.GetTempFileName()

Dim File_Stream As New FileStream(FileName, FileMode.Append, FileAccess.Write)
Dim FileWriter As New StreamWriter(File_Stream)
'Write the Data
With FileWriter
  Try
      .BaseStream.Seek(0, SeekOrigin.End)
      .WriteLine("writing to scratch")
       Catch ex As IOException
          Debug.Assert(False, ex.ToString)
       Finally
          .Close()
   End Try

End With
</pre>
<p></code><br />
<code lang="c#"></p>
<pre>
string FileName = Path.GetTempFileName();
FileStream File_Stream = new FileStream(FileName, FileMode.Append, FileAccess.Write);
StreamWriter FileWriter = new Stream(File_Stream);
try
{
    FileWriter.BaseStream.Seek(0, SeekOrigin.End);
    FileWriter.WriteLine("writing to scratch");
}
catch(IOException ex)
{
    Debug.Assert(false, ex.ToString());
}
finally
{
    FileWriter.Close();
}
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/12/quickly-make-a-scratch-file-using-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got owned this week</title>
		<link>http://entens.net/2009/11/i-got-owned-this-week/</link>
		<comments>http://entens.net/2009/11/i-got-owned-this-week/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 08:10:13 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/11/i-got-owned-this-week/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Bjr-x-iNe7A&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bjr-x-iNe7A&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/11/i-got-owned-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sold the PLC</title>
		<link>http://entens.net/2009/11/sold-the-plc/</link>
		<comments>http://entens.net/2009/11/sold-the-plc/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 00:23:33 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/11/sold-the-plc/</guid>
		<description><![CDATA[I sold the PLC on eBay and made about $600 back on the investment. I'll be buying one that isn't such overkill.
]]></description>
			<content:encoded><![CDATA[<p>I sold the PLC on eBay and made about $600 back on the investment. I'll be buying one that isn't such overkill.</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/11/sold-the-plc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Equipment started showing up!</title>
		<link>http://entens.net/2009/10/equipment-started-showing-up/</link>
		<comments>http://entens.net/2009/10/equipment-started-showing-up/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 19:56:03 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/10/equipment-started-showing-up/</guid>
		<description><![CDATA[I've started getting packages by the dozen in the mail!
So far I've received my ControlLogix SLC-5555 from Allen-Bradley along with a bunch of the I/O modules for it. The Arduino (coolest diy gadget ever) and assorted other hardware.  All I need to get my process automated now is some containers, burners, electrically actuated valves, [...]]]></description>
			<content:encoded><![CDATA[<p>I've started getting packages by the dozen in the mail!</p>
<p>So far I've received my ControlLogix SLC-5555 from Allen-Bradley along with a bunch of the I/O modules for it. The Arduino (coolest diy gadget ever) and assorted other hardware.  All I need to get my process automated now is some containers, burners, electrically actuated valves, pumps and tubing.</p>
<p>Also, the first batch of homebrew was wicked awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/10/equipment-started-showing-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newegg has gotten their IPO!</title>
		<link>http://entens.net/2009/09/newegg-has-gotten-their-ipo/</link>
		<comments>http://entens.net/2009/09/newegg-has-gotten-their-ipo/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 05:23:10 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/2009/09/newegg-has-gotten-their-ipo/</guid>
		<description><![CDATA[I dont know about you, but I love Newegg and they are looking at going public on the stock exchange. They filed for IPO status today with the symbol 'EGG'
I'm buying ASAP!
here for more info: http://www.marketwatch.com/story/online-retailer-newegg-files-for-175-million-ipo-2009-09-28
]]></description>
			<content:encoded><![CDATA[<p>I dont know about you, but I love Newegg and they are looking at going public on the stock exchange. They filed for IPO status today with the symbol 'EGG'</p>
<p>I'm buying ASAP!</p>
<p>here for more info: http://www.marketwatch.com/story/online-retailer-newegg-files-for-175-million-ipo-2009-09-28</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/newegg-has-gotten-their-ipo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zune Tower Defense</title>
		<link>http://entens.net/2009/09/zune-tower-defense/</link>
		<comments>http://entens.net/2009/09/zune-tower-defense/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 06:04:24 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=121</guid>
		<description><![CDATA[
Developing as standard XNA project for the moment. Will most likely be LGPL when I finish...
Right now:

Interface works
Mobs spawn, but need pathing and I cant find my steering class I wrote last year...
Towers need placement code
Cant test with the Zune HD yet due to some weird error. I'm assuming because I'm developing in a 64bit [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-119" title="gotdraw2" src="http://entens.net/wp-content/uploads/2009/09/gotdraw2.jpg" alt="gotdraw2" width="496" height="310" /></p>
<p>Developing as standard XNA project for the moment. Will most likely be LGPL when I finish...</p>
<p>Right now:</p>
<ul>
<li>Interface works</li>
<li>Mobs spawn, but need pathing and I cant find my steering class I wrote last year...</li>
<li>Towers need placement code</li>
<li>Cant test with the Zune HD yet due to some weird error. I'm assuming because I'm developing in a 64bit environment.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/zune-tower-defense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SecurityTube just got my bookmark</title>
		<link>http://entens.net/2009/09/securitytube-just-got-my-bookmark/</link>
		<comments>http://entens.net/2009/09/securitytube-just-got-my-bookmark/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:56:58 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=116</guid>
		<description><![CDATA[SecurityTube is a new video site designed around the premise of information security. They host conference lectures from DEFCON and the like, proof of concept vulnerability videos, and other miscellanea. Pretty sweet!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.securitytube.net/">SecurityTube</a> is a new video site designed around the premise of information security. They host conference lectures from DEFCON and the like, proof of concept vulnerability videos, and other miscellanea. Pretty sweet!</p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/securitytube-just-got-my-bookmark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pwnsauce Programs: Android SMB2 Vulnerability Tester</title>
		<link>http://entens.net/2009/09/pwnsauce-programs-android-smb2-vulnerability-tester/</link>
		<comments>http://entens.net/2009/09/pwnsauce-programs-android-smb2-vulnerability-tester/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 00:43:52 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=93</guid>
		<description><![CDATA[
Want to know if a machine is vulnerable? Just punch in the IP and check! If your not patched you'll lockup and BSoD. *sigh* I wish Sprint had an affordable Android phone...
from http://sinisterware.blogspot.com/2009/09/smb-check.html
]]></description>
			<content:encoded><![CDATA[<p><img src="http://entens.net/wp-content/uploads/2009/09/android_windows_vulnerability_checker.jpg" alt="android_windows_vulnerability_checker" title="android_windows_vulnerability_checker" width="320" height="392" class="aligncenter size-full wp-image-94" /></p>
<p>Want to know if a machine is vulnerable? Just punch in the IP and check! If your not patched you'll lockup and BSoD. *sigh* I wish Sprint had an affordable Android phone...</p>
<p>from <a href="http://sinisterware.blogspot.com/2009/09/smb-check.html">http://sinisterware.blogspot.com/2009/09/smb-check.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/pwnsauce-programs-android-smb2-vulnerability-tester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>802.11n is official!</title>
		<link>http://entens.net/2009/09/802-11n-is-official/</link>
		<comments>http://entens.net/2009/09/802-11n-is-official/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 04:29:27 +0000</pubDate>
		<dc:creator>entens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://entens.net/?p=91</guid>
		<description><![CDATA[Its out of draft and an official standard as of today. It was ratified at the semi-annual IEEE held this week in Piscataway, NJ.
Read the press release
]]></description>
			<content:encoded><![CDATA[<p>Its out of draft and an official standard as of today. It was ratified at the semi-annual IEEE held this week in Piscataway, NJ.</p>
<p>Read the <a href="http://standards.ieee.org/announcements/ieee802.11n_2009amendment_ratified.html">press release</a></p>
]]></content:encoded>
			<wfw:commentRss>http://entens.net/2009/09/802-11n-is-official/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

