<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Zeroday 01100100011010010 &#187; Interesting Tech</title>
	<atom:link href="http://blogs.law.harvard.edu/zeroday/category/interesting-tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.law.harvard.edu/zeroday</link>
	<description>三一三三七</description>
	<lastBuildDate>Sat, 03 Oct 2009 03:11:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
		<item>
		<title>SECRE.TS</title>
		<link>http://blogs.law.harvard.edu/zeroday/2009/08/21/secrets/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2009/08/21/secrets/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 02:52:59 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>
		<category><![CDATA[Non Sequiter]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/?p=390</guid>
		<description><![CDATA[I started developing a random idea over the holidays but never finished it.  I&#8217;m releasing its description here with the hope that someone will steal and then implement it :)
a hybrid social media platform using rss feeds, twitter style messaging and public, private, and group key pair cryptography.  it also solves the paradox [...]]]></description>
			<content:encoded><![CDATA[<p>I started developing a random idea over the holidays but never finished it.  I&#8217;m releasing its description here with the hope that someone will steal and then implement it :)</p>
<p>a hybrid social media platform using rss feeds, twitter style messaging and public, private, and group key pair cryptography.  it also solves the paradox of eventual decryption through the use of one time pads and very precise randomization.</p>
<p>secre.ts enables the user to share cryptographically protected messaging to allow use over untrusted publicly accessible networks like the Internet.</p>
<p>As a messaging solution secre.ts produces the greatest assets of email like services with the most secure traits of a virtual private network connection.  vpn solutions are fragile connections and cumbersome on both bandwidth and the processor.  secre.ts hybrid approach consumes processor but the messages are broadcast in public so connectivity is hugely increased and bandwidth isn&#8217;t impacted because the messages are received in cleartext.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2009/08/21/secrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Granted Wish: Traceroute pickling in scapy</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/08/03/granted-wish-traceroute-pickling-in-scapy/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/08/03/granted-wish-traceroute-pickling-in-scapy/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 07:43:14 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/08/03/granted-wish-traceroute-pickling-in-scapy/</guid>
		<description><![CDATA[A friend of mine sent in a script that worked for him.  

#!/usr/bin/env python
import scapy, pickle
# pickler
tr, un = scapy.traceroute(["www.harvard.edu"])
f = open("/tmp/pickle-out", "w")
p = pickle.Pickler(f)
p.dump(tr)
f.close()
# unpickler
f = open("/tmp/pickle-out", "r")
u = pickle.Unpickler(f)
tr = u.load()
print " Original tr:----------------------------"
tr.display()

I still couldn&#8217;t get this to work on my Ubuntu box.  However in a later chat with my [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine sent in a script that worked for him.  </p>
<p><code><br />
#!/usr/bin/env python</p>
<p>import scapy, pickle</p>
<p># pickler<br />
tr, un = scapy.traceroute(["www.harvard.edu"])<br />
f = open("/tmp/pickle-out", "w")<br />
p = pickle.Pickler(f)<br />
p.dump(tr)<br />
f.close()</p>
<p># unpickler<br />
f = open("/tmp/pickle-out", "r")<br />
u = pickle.Unpickler(f)<br />
tr = u.load()<br />
print " Original tr:----------------------------"<br />
tr.display()<br />
</code></p>
<p>I still couldn&#8217;t get this to work on my Ubuntu box.  However in a later chat with my colleague Elphine I found out that Ubuntu had it&#8217;s own package for scapy.  So I used apt-get to install scapy and this time it DID work.  This is great since now I can start sticking objects into a database and move on to the next task of combining arbitrary traceroutes for the purposes of making graphs.  I&#8217;m still curious why this didn&#8217;t work when I simply downloaded the scapy.py code and executed it.  Once I get some working code I&#8217;ll post it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/08/03/granted-wish-traceroute-pickling-in-scapy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>A court ordered someone to switch to Windows to enable monitoring</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/07/23/a-court-ordered-someone-to-switch-to-windows-to-enable-monitoring/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/07/23/a-court-ordered-someone-to-switch-to-windows-to-enable-monitoring/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 00:53:56 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>
		<category><![CDATA[wayback]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/07/23/a-court-ordered-someone-to-switch-to-windows-to-enable-monitoring/</guid>
		<description><![CDATA[A friend shared an interesting post with me from Ars Technica about a recent torrent website owner   getting jailtime .
One of the more interesting facts from the article was the disposition of a previous case in 2007  which somehow escaped my attention back then.  Scott McCausland was forced to have his [...]]]></description>
			<content:encoded><![CDATA[<p>A friend shared an interesting post with me from Ars Technica about a recent torrent website owner <a href="http://arstechnica.com/news.ars/post/20080629-jury-convicts-elitetorrents-admin-with-mpaa-help.html">  getting jailtime </a>.</p>
<p>One of the more interesting facts from the article was the disposition of a <a href="http://arstechnica.com/news.ars/post/20070824-court-orders-movie-pirate-to-switch-to-windows.html?rel">previous case in 2007 </a> which somehow escaped my attention back then.  Scott McCausland was forced to have his computer monitored as a condition of his probation.  He noted in his blog that, &#8220;their software doesn&#8217;t support GNU/Linux (which is what I use). So, he told me that if I want to use a computer, I would have to use an OS that the software can be installed on.&#8221;<br />
I think there is a snarky lesson in all of this.  Windows is the choice of those who want to monitor your every move.  Irony aside McCausland &#8220;added a donation link to his blog to help pay for the cost of a Windows license.&#8221;  This is a very real additional cost that wasn&#8217;t really considered by the judge.  I&#8217;ve complained about this privately when the Extension School at Harvard offered a statistics class which only allowed the use of a Windows based statistics program.  This was not known to me when I signed up and I subsequently withdrew from the course (costing me both time and money) because I refused to deal with a Windows only learning environment.  </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/07/23/a-court-ordered-someone-to-switch-to-windows-to-enable-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Tenable alters Nessus plug-in licensing.  Still not Open</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/05/15/tenable-alters-nessus-plug-in-licensing-still-not-open/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/05/15/tenable-alters-nessus-plug-in-licensing-still-not-open/#comments</comments>
		<pubDate>Thu, 15 May 2008 18:15:27 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Digital Warfare]]></category>
		<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/05/15/tenable-alters-nessus-plug-in-licensi</guid>
		<description><![CDATA[Dear Nessus Community,
On behalf of Tenable Network Security, we would like to thank you for making Tenable’s Nessus®
vulnerability scanner the most widely used scanner in the world. Over the last five years, we have seen
Nessus grow globally to over 5 million downloads and we have been there every step of the way. The core
Nessus engine [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Nessus Community,</p>
<p>On behalf of Tenable Network Security, we would like to thank you for making Tenable’s Nessus®<br />
vulnerability scanner the most widely used scanner in the world. Over the last five years, we have seen<br />
Nessus grow globally to over 5 million downloads and we have been there every step of the way. The core<br />
Nessus engine is powered by our world-class vulnerability research content which includes over 20,000<br />
plugins, enhanced features such as IPv6 scanning, free mailing lists, online search tools and free clients.<br />
Nessus has become not only a popular tool for conducting security audits but we have extended its<br />
capabilities to conduct agent-less patch audits and configuration audits, as well as locating sensitive data.<br />
Looking forward, we plan to further increase functionality, such as SMBv2 support to better audit Windows<br />
2008 and Windows Vista, and further expand our abilities to conduct even more comprehensive vulnerability<br />
and configuration audits.</p>
<p>In the process, the Nessus scanning engine has been provided to our rapidly growing community as a free<br />
download with research content licensed through two plugin subscriptions. Our Nessus users know these as<br />
the “Registered Feed” and the “Direct Feed” subscriptions. These subscriptions have been available for over<br />
three years and have been utilized by countless individuals, consultants, companies, governments and other<br />
organizations.</p>
<p>We continually interact with the Nessus community and review our capabilities to ensure Nessus continues<br />
to meet and exceed the needs of its users. Since creating and releasing the subscriptions, two distinct user<br />
groups emerged. They are the home user and the commercial user. To better reflect the needs our<br />
community, we have decided to update our Subscription licensing policy and are announcing the planned<br />
change (as outlined below and accompanied by a FAQ) that will go into effect on July 31st, 2008.</p>
<blockquote><p>First, we will continue to enable all users to download Nessus for free.</p></blockquote>
<blockquote><p>Second, due to computers and personal networks having become ubiquitous in homes around the<br />
         world, Tenable will launch a “HomeFeed” with all Nessus vulnerability plugin updates for home users<br />
         at no charge and with no delay. We are excited to offer the latest vulnerability checks for<br />
         personal, non-commercial use and strongly encourage home users to audit their computers and<br />
         networks for the newest security flaws.</p></blockquote>
<blockquote><p>Finally, Tenable’s “Direct Feed” will be re-named to the “ProfessionalFeed” and the “Registered Feed”<br />
         will be discontinued. The ProfessionalFeed will entitle subscribers to the latest vulnerability and<br />
         patch audits, configuration and content audits and commercial support for their Nessus 3<br />
         installation. The ProfessionalFeed will serve as Tenable’s commercial subscription and will be<br />
         required for individuals and organizations that want to use Tenable’s Nessus plugins commercially.</p></blockquote>
<p>The decision to alter the licensing policy is the result of significant deliberation and will benefit both home<br />
users and commercial users. The change will ensure our ability to invest in the future roadmap for Nessus<br />
and to expand our research, support and training capabilities to serve our growing community. We realize<br />
this may affect some individuals, corporations and organizations that use the currently available “Registered<br />
Feed” in production audits and commercial services. Because of this, Tenable is offering a 25 percent rebate<br />
for the Direct Feed subscription service (normally available at $1200 per year), beginning May 14, 2008 until<br />
July 31, 2008 only when purchased through Tenable’s e-commerce site.<br />
Additionally, we understand that there are those in the Nessus community that serve broad social and<br />
educational objectives and we want to make certain that qualified charitable and information security<br />
teaching/training organizations have access to the ProfessionalFeed free of charge. To this end, Tenable will<br />
provide ProfessionalFeed subscriptions to charity and teaching/training organizations at no cost for those<br />
that qualify.<br />
As always, Tenable will continue to perform the in-depth research, testing and development to keep Nessus<br />
the leading vulnerability and network auditing tool available to both home and professional users.</p>
<p> excerpt directly from Tenable Network Security, Inc.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/05/15/tenable-alters-nessus-plug-in-licensing-still-not-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>wget recon technique</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/04/19/wget-recon-technique/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/04/19/wget-recon-technique/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 21:04:38 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/04/19/wget-recon-technique/</guid>
		<description><![CDATA[I was looking for a novel way to recon a network for webservers and came up with a command line combination involving wget and find.  The first stage is to use wget and download the index page of any server that responds.  The second stage is to remove all the zero length files [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for a novel way to recon a network for webservers and came up with a command line combination involving wget and find.  The first stage is to use wget and download the index page of any server that responds.  The second stage is to remove all the zero length files that will be written for non responsive but active IP addresses.</p>
<p>WGET STAGE<br />
If you are assigned to scout a network range from 192.168.1.1 &#8211; 192.168.1.255 you can use a for loop and wget to quickly download index pages.  Obviously this technique could be adapted for larger ranges but in this published form is best for Class C only.</p>
<p><code>for i in `seq 1 255`<br />
do<br />
wget -O 192.168.1.$i.html 192.168.1.$i &amp;<br />
done</code></p>
<p>Expanding the parameters of the wget command we see that -O is used to write an ouput file with a specific name.  Otherwise we will have filename collisions all over the place and more importantly we will have no idea what the originating server is.  The &amp; is used to put the process into the background and acts as a cheap form of parallel tasking.  All of the requests will launch at the same time.  Since we are limiting ourselves to a class C we won&#8217;t worry about overloading the machine.</p>
<p>ZERO LENGTH FILE STAGE<br />
The resulting files will either have html in them or have a zero length.  The zero length files will occur when the ip address is alive but there is no web server there to respond.  To clean these we use a clever technique for discovering these files using the find command.</p>
<p><code>for i in `find . -empty -exec ls {} \;`<br />
do<br />
rm $i<br />
done<br />
</code></p>
<p>What is left is html code saved with a fliename of the ip address where it was found.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/04/19/wget-recon-technique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Basic Ubuntu Server Hardening</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/03/29/basic-ubuntu-server-hardening/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/03/29/basic-ubuntu-server-hardening/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 23:00:15 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/03/29/basic-ubuntu-server-hardening/</guid>
		<description><![CDATA[This is a basic level of hardening for Ubuntu servers and should be considered a baseline.  This tutorial will cover two topics: SSH and Firewall.  This tutorial was prepared using Ubuntu Server 8.04 beta.  
SSH
edit the ssh daemon configuration file to move the ssh port away from 22.  Most worms or [...]]]></description>
			<content:encoded><![CDATA[<p>This is a basic level of hardening for Ubuntu servers and should be considered a baseline.  This tutorial will cover two topics: SSH and Firewall.  This tutorial was prepared using Ubuntu Server 8.04 beta.  </p>
<p><strong>SSH</strong><br />
edit the ssh daemon configuration file to move the ssh port away from 22.  Most worms or bots are programmed to look at 22 and bruteforce whatever is there.  Moving to an unknown port is the easiest way to decrease the level of log activity.</p>
<p><code><br />
zeroday&gt; sudo vi /etc/ssh/sshd_config<br />
</code><br />
Look for &#8220;Port 22&#8243; and change it to a different value.  Anything above 1024 is fine.</p>
<blockquote><p>
# What ports, IPs and protocols we listen for<br />
Port 65522
</p></blockquote>
<p>Now restart sshd</p>
<p><code>zeroday&gt; sudo invoke-rc.d ssh restart</p>
<p><strong>Firewall</strong></p>
<p><a href="http://www.shorewall.net/">Shorewall</a> is an easy to configure Netfilter and provide a basic level of perimeter for your server's Internet facing interfaces.</p>
<p><code>zeroday&gt; sudo apt-get install shorewall</code></p>
<p>Once the system is installed it will display an error message stating it can not start until configured.  This is a "dummy proof" feature so that new users will not deploy Shorewall without making critical changes to the rules.  Simply put it will lock out all inbound connections if deployed as is.  This is a great way to stay secure but would prevent even ssh from working.</p>
<p>The first step is to copy the example configuration files</p>
<p><code>zeroday&gt; sudo cp /usr/share/doc/shorewall-common/examples/one-interface/* /etc/shorewall</code></p>
<p>To allow the most basic of services we will add rules to allow inbound connections for the web server and ssh server.</p>
<p><code><br />
zeroday&gt; sudo vi /etc/shorewall/rules<br />
</code></p>
<p>Look for "Permit all ICMP traffic FROM the firewall TO the net zone" and add the following lines after the icmp rule:</p>
<ul>
<li>ACCEPT          net             fw              tcp 65522</li>
<li>ACCEPT          net             fw              tcp 80</li>
</ul>
<p>Your rules file should now look like this:</p>
<blockquote><p>
# Permit all ICMP traffic FROM the firewall TO the net zone</p>
<p>ACCEPT          $FW             net             icmp<br />
ACCEPT          net             fw              tcp 65522<br />
ACCEPT          net             fw              tcp 80
</p></blockquote>
<p>Now the last two steps are enabling the system to startup.  The first location is in the shorewall.conf file.</p>
<p><code><br />
zeroday&gt; sudo vi /etc/shorewall/shorewall.conf<br />
</code></p>
<p>Look for the STARTUP_ENABLED variable and change it from "No" to "Yes".  This is not case sensitive.</p>
<p>The file should end up looking like this:</p>
<blockquote><p>
#######################################<br />
#                      S T A R T U P   E N A B L E D<br />
#######################################</p>
<p>STARTUP_ENABLED=YES
</p></blockquote>
<p>Lastly we need to change the shorewall file in /etc/default.  </p>
<p><code><br />
zeroday&gt; sudo vi /etc/default/shorewall<br />
</code></p>
<p>Look for the "startup" parameter and change it from 0 to 1.</p>
<p>It should look like this when you are done</p>
<blockquote><p>
# prevent startup with default configuration<br />
# set the following varible to 1 in order to allow Shorewall to start</p>
<p>startup=1
</p></blockquote>
<p>Now you are ready to start your firewall.  It is a good idea to double check your work.  I like to compare my edited configuration files to the originals using diff.</p>
<p><code><br />
zeroday&gt; for i in `ls /etc/shorewall`;<br />
                 do<br />
                 diff /etc/shorewall/$i /usr/share/doc/shorewall-common/examples/one-interface/$i;<br />
                 done<br />
</code></p>
<p>Once you have confirmed the changes start up the firewall.</p>
<p><code><br />
zeroday&gt; sudo invoke-rc.d shorewall start</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/03/29/basic-ubuntu-server-hardening/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>mouseHole: A ruby web proxy</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/03/11/mousehole-a-ruby-web-proxy/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/03/11/mousehole-a-ruby-web-proxy/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 08:51:37 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/03/11/mousehole-a-ruby-web-proxy/</guid>
		<description><![CDATA[I have been thinking about writing a web proxy for a while.  There are several projects that all involve web proxy technology.  So tonight while searching for a simple one I found exactly what I&#8217;m looking for.  mouseHole.
There are a lot of dependencies so be sure to run the following script.
echo "installing [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking about writing a web proxy for a while.  There are several projects that all involve web proxy technology.  So tonight while searching for a simple one I found exactly what I&#8217;m looking for.  mouseHole.</p>
<p>There are a lot of dependencies so be sure to run the following script.</p>
<p><code>echo "installing ruby and dev libraries"<br />
sudo apt-get install ruby --assume-yes<br />
sudo apt-get install ruby1.8-dev --assume-yes<br />
echo "installing ruby gems"<br />
sudo apt-get install rubygems --assume-yes<br />
echo "installing hpricot gem"<br />
sudo gem install hpricot --include-dependencies<br />
echo "installing camping gem"<br />
sudo gem install camping --include-dependencies<br />
echo "installing activerecord gem"<br />
sudo gem install activerecord --include-dependencies<br />
echo "installing json gem"<br />
sudo gem install json --include-dependencies<br />
echo "installing mongrel gem"<br />
sudo gem install mongrel --include-dependencies<br />
echo "installing sqlite3 and libraries"<br />
sudo apt-get install sqlite3 swig libsqlite3-ruby libsqlite3-dev --assume-yes<br />
echo "installing sqlite3 gem"<br />
sudo gem install sqlite3-ruby --include-dependencies</code></p>
<p>This is nearly automated however you will need to pick the versions of several of the gems (ruby, win32, jruby, etc).  If there was a single piece of functionality I&#8217;d like from gem installs is the ability to automate this last bit.  i&#8217;d like to have an option that says &#8220;assume the highest version of ruby&#8221; for each of those choices.  &#8211;assume-highest-ruby-version ?</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/03/11/mousehole-a-ruby-web-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>TrueCrypt finally coming to Mac OS X</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/01/28/truecrypt-finally-coming-to-mac-os-x/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/01/28/truecrypt-finally-coming-to-mac-os-x/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 12:18:51 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>
		<category><![CDATA[Rights Online]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/01/28/truecrypt-finally-coming-to-mac-os-x/</guid>
		<description><![CDATA[Release scheduled for: February 4, 2008

Unfamiliar with TrueCrypt?

Creates a virtual encrypted disk within a file and mounts it as a real disk. 
Encrypts an entire hard disk partition or a storage device such as USB flash drive.
Encryption is automatic, real-time (on-the-fly) and transparent.
Provides two levels of plausible deniability, in case an adversary forces you to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.truecrypt.org/future.php">Release scheduled for: February 4, 2008<br />
</a><br />
Unfamiliar with TrueCrypt?</p>
<p><a href="http://www.truecrypt.org/"><br />
Creates a virtual encrypted disk within a file and mounts it as a real disk. </p>
<p>Encrypts an entire hard disk partition or a storage device such as USB flash drive.</p>
<p>Encryption is automatic, real-time (on-the-fly) and transparent.</p>
<p>Provides two levels of plausible deniability, in case an adversary forces you to reveal the password:</p>
<p>1) Hidden volume.<br />
2) No TrueCrypt volume can be identified<br />
Encryption algorithms: AES-256, Serpent, and Twofish. Mode of operation: LRW.<br />
Further information regarding features of the software may be found in the documentation.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/01/28/truecrypt-finally-coming-to-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Wireless Resources</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/01/02/wireless-resources/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/01/02/wireless-resources/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 19:20:42 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Digital Warfare]]></category>
		<category><![CDATA[Interesting Tech]]></category>
		<category><![CDATA[zeroday]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/01/02/wireless-resources/</guid>
		<description><![CDATA[Wireless Users Groups
bawug.org	Bay Area Wireless Users Group
&#160;nycwireless.net	NYC Wireless Group
&#160;personaltelco.net	Personal Telco Project
&#160;frars.org.uk	FRARS Wireless lan working group
&#160;bawia.org	Boston Area Wireless Internet Alliance
GBA 802.11	Greater Boston Area 802.11 Wireless Database
DC-WiFi Initiative	Public WiFi advocates in Washington DC
Seattle Wireless	Seattle Wireless group
Wardriving Resources
wardriving.com	Wardriving news portal
www.sicheres-funknetz.de	Wireless security portal (German)
&#160;www.netagent.at	Wardriving and Wireless site (German)

]]></description>
			<content:encoded><![CDATA[<p><a name="dragorns_list" href="http://www.kismetwireless.net/links.shtml">Wireless Users Groups<br />
<code>bawug.org	Bay Area Wireless Users Group<br />
&nbsp;<a href="http://nycwireless.net" title="http://nycwireless.<br />
" target="_blank">nycwireless.net</a>	NYC Wireless Group<br />
&nbsp;<a href="http://personaltelco.net" title="http://personaltelco.<br />
" target="_blank">personaltelco.net</a>	Personal Telco Project<br />
&nbsp;<a href="http://frars.org" title="http://frars.<br />
" target="_blank">frars.org</a>.uk	FRARS Wireless lan working group<br />
&nbsp;<a href="http://bawia.org" title="http://bawia.<br />
" target="_blank">bawia.org</a>	Boston Area Wireless Internet Alliance<br />
GBA 802.11	Greater Boston Area 802.11 Wireless Database<br />
DC-WiFi Initiative	Public WiFi advocates in Washington DC<br />
Seattle Wireless	Seattle Wireless group</code></p>
<p>Wardriving Resources</p>
<blockquote><p>wardriving.com	Wardriving news portal<br />
www.sicheres-funknetz.de	Wireless security portal (German)<br />
&nbsp;<a href="http://www.net" title="http://www.<br />
" target="_blank">www.net</a>agent.at	Wardriving and Wireless site (German)</p></blockquote>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/01/02/wireless-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
		<item>
		<title>Remote Desktop Connection (RDC) Settings</title>
		<link>http://blogs.law.harvard.edu/zeroday/2008/01/02/remote-desktop-connection-rdc-settings/</link>
		<comments>http://blogs.law.harvard.edu/zeroday/2008/01/02/remote-desktop-connection-rdc-settings/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 19:16:53 +0000</pubDate>
		<dc:creator>zeroday</dc:creator>
				<category><![CDATA[Interesting Tech]]></category>

		<guid isPermaLink="false">http://blogs.law.harvard.edu/zeroday/2008/01/02/remote-desktop-connection-rdc-setting</guid>
		<description><![CDATA[Remote Desktop connections support three security settings:
    * The low security setting enables 40-bit or 56-bit encryption of all data transmitted from the client, such as keyboard and mouse data.
    * The medium security setting enables 40-bit or 56-bit encryption of all data transmitted between the client and server.
 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://help.admin.mtu.edu/docs/index.php/Remote_Desktop_Instructions">Remote Desktop connections support three security settings:</p>
<p>    * The low security setting enables 40-bit or 56-bit encryption of all data transmitted from the client, such as keyboard and mouse data.<br />
    * The medium security setting enables 40-bit or 56-bit encryption of all data transmitted between the client and server.<br />
    * The high security setting provides 128-bit encryption of all data transmitted between the client and server.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.law.harvard.edu/zeroday/2008/01/02/remote-desktop-connection-rdc-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license>
	</item>
	</channel>
</rss>
