<?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>Disruptive Library Technology Jester &#187; encryption</title> <atom:link href="http://dltj.org/tag/encryption/feed/" rel="self" type="application/rss+xml" /><link>http://dltj.org</link> <description>We&#039;re Disrupted, We&#039;re Librarians, and We&#039;re Not Going to Take It Anymore</description> <lastBuildDate>Fri, 18 May 2012 15:43:10 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <cloud domain='dltj.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' /> <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/us/</creativeCommons:license> <item><title>Encryption of Patron Data in Modern Integrated Library Systems</title><link>http://dltj.org/article/ils-encryption/</link> <comments>http://dltj.org/article/ils-encryption/#comments</comments> <pubDate>Wed, 04 May 2011 00:30:24 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[L/IS Profession]]></category> <category><![CDATA[encryption]]></category> <category><![CDATA[integrated library system]]></category> <category><![CDATA[privacy]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://dltj.org/?p=2853</guid> <description><![CDATA[&#8220;How much effort do you want to spend securing your computer systems? Well, how much do you not want to be in front of a reporter&#8217;s microphone if a security breach happens?&#8221; I don&#8217;t remember the exact words, but that &#8230; <a href="http://dltj.org/article/ils-encryption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=2853"></abbr><p>&#8220;How much effort do you want to spend securing your computer systems?  Well, how much do you not want to be in front of a reporter&#8217;s microphone if a security breach happens?&#8221;  I don&#8217;t remember the exact words, but that quote strongly resembles something I said to a boss at a previous job.  Securing systems is unglamorous detail work.  One slip-up plus one persistent (or lucky) attacker means years of dedicated efforts are all for naught as personal information is inadvertently released.  See, for example, what happened recently with <a href="http://news.consumerreports.org/electronics/2011/05/sony-25-million-more-accounts-hacked-but-were-really-sorry.html" title="Sony: 25 million more accounts hacked, but we're really sorry | Consumer Reports">Sony Online Entertainment&#8217;s</a> recent troubles.</p><p>It was in that frame of mind that I responded to a series of questions from a librarian taking a computer science class.  (As someone else who straddles the computer-science/library-science divide, I wanted to encourage this line of thinking!)  Now library systems typically don&#8217;t have credit card information, so they may not be attractive to individuals that seek to expose or exploit personal information.  But our systems do have physical addresses, e-mail addresses, and sometimes birthdays or other personal data.  And we have a <a href="http://www.ala.org/ala/issuesadvocacy/intfreedom/librarybill/interpretations/privacy.cfm" title="An Interpretation of the Library Bill of Rights: Privacy | ALA">professional ethic to keep patron use information private</a>.</p><p>The person that sent me these questions asked that I not mention a name or affiliation, but that it was okay that I repost the questions along with my replies.  I&#8217;m hoping this encourages some discussion because my understanding of the use of encryption in ILS products is very narrow and only somewhat deep (and is getting shallower by the day as my direct experience is going on ten years old).</p><blockquote><p>Background on the project is that during our encryption unit, I realized that I didn&#8217;t know anything about what libraries to do back up our strongly stated policies about protecting patron privacy, so I wanted to find out more about it.</p><p>Questions:</p><ol type="1" start="1"><li>What encryption tools/standards, if any, are used to safeguard patron accounts (name, items checked out, databases accessed, etc.) at the library?</li><li>Where in the systems do these tools typically fit &#8212; at the ILS level, or somewhere else? (e.g., university ID systems)</li><li>How are circulation and other records expunged? I.e., are they permanently deleted in such a way that hard drive forensics couldn&#8217;t bring them back?</li></ol></blockquote><p>In my experience, this patron information is not encrypted in integrated library systems.  The difficulty is that if those bits of information are encrypted, they must be decrypted by the program in order to be useful (generating an overdue notice means the patron&#8217;s information must be known to the program, displaying the patron&#8217;s name on his/her account information screen, etc.).  And for programs to decrypt they must have the secret key.  And if the programs know the secret key it is trivial for an attacker to get the key as well.  And since good encryption, by its nature, is computationally &#8220;expensive&#8221; there would be a lot of system load with all of the encryption and decryption of bits of information.  (Computationally expensive is good because it makes it harder for an attacker to guess the correct key.)</p><div id="attachment_2856" class="wp-caption alignright" style="width: 458px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><object width="448" height="379" type="image/svg+xml" data="http://cdn.dltj.org/wp-content/uploads/2011/05/Password-Hashing.svg.gzip"><img src="http://cdn.dltj.org/wp-content/uploads/2011/05/Password-Hashing.png" alt="" title="Password Hashing Flowchart" class="size-full wp-image-2856" /></object><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Password Hashing Flowchart</p></div><p>Note that passwords are a special case.  Passwords are not really encrypted in a database; rather the output of a &#8220;one way hash&#8221; algorithm is stored.  When the user tries to log in, the same one way hash algorithm is applied to the text string entered as a password and if the output matches what is stored in the database the user is let in.</p><p>As the diagram shows, with the login attempts the hashed password is not decrypted; the output of the hash algorithm is compared to what is known to be the hashed password.</p><p>[Aside: I'm trying an experiment in this post.  The diagram is a Scalable Vector Graphic (SVG) file.  It seems to be showing up fine in the browsers I'm testing, but I have no idea how it will appear in the RSS feed or if you are using an RSS reader or receiving this post via <a href="http://feedburner.google.com/fb/a/mailverify?uri=DisruptiveLibraryTechnologyJester&amp;loc=en_US" title="FeedBurner Email Subscription">FeedBurner e-mail</a>.  If you don't see the graphic, try viewing the post via the <a href="http://dltj.org/article/ils-encryption/"><i><acronym title="Disruptive Library Technology Jester">DLTJ</acronym></i> website.</a>]</p><p>The most effective encryption would be at the database management system layer.  For instance, Oracle has &#8220;<a href="http://www.oracle.com/technetwork/database/options/advanced-security/index-099011.html" title="Transparent Data Encryption | Oracle">Transparent Data Encryption</a>&#8221; feature.  &#8220;Data is automatically encrypted when it is written to disk and automatically decrypted when accessed by the application.&#8221;  Automatic encryption is not built into MySQL, but you can use a <a href="http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html#function_aes-encrypt" title="Encryption and Compression Functions | MySQL 5.5 Reference Manual">MySQL-specific function to encrypt a field</a>.  PostgreSQL has a <a href="http://www.postgresql.org/docs/current/static/pgcrypto.html" title="pgcrypto | PostgreSQL Documentation">contributed module</a> that performs the function.</p><p>Another option &#8212; other than database-level encryption &#8212; is to have the operating system encrypt the underlying filesystem (for example, the <a href="http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/filesysnew-efs.html" title="Encrypted File System | Red Hat documentation">Red Hat Encrypted Filesystem</a>).  That way all of the database storage files &#8212; stored in that filesystem directory &#8212; would be encrypted.</p><p>Note, though, that in any of these cases, the key is known to the computer somehow, and so it is possible for an attacker to recover the key and decrypt the data.  There are, of course, varying levels of obscurity one can apply to the key, but I think we&#8217;re getting pretty far off on a tangent.</p><p>How often circulation and other records would be expunged would depend on implementations in each software system, but as a general guideline I don&#8217;t think a strong deletion mechanism is used to obliterate data on the disk.  I&#8217;d be happy to be proven otherwise.  And as you consider hard drive forensics, also think about pulling the same information off backup tapes; that would probably be easier to get to.</p><p>In a follow-up, I was asked:</p><blockquote><p>WRT your response on Q2, do you have an idea of what level &#8220;most&#8221; or &#8220;some&#8221; libraries might have the encryption, or were you speaking purely from a view of what ideal/good situations might look like?</p><p>On 3, I have heard from a few others that there seems to be just deletion with no zeroing out features or the like and that it does take a period of time (1-2 months) for backup tapes to be overwritten. So it strikes me that the weakest link may be in the area we talk most about protecting.</p></blockquote><p>With regards to the database-level or the filesystem-level encryption, I was speaking from a point of view of what idea/good situations might look like.  One of the outcomes of posting these questions to a wider group of readers is, I hope, more real-world experience reports from people who might be running systems that actually do this.</p><p>Yes, I think those are weak links, with the backup tapes being the biggest problem.  One can&#8217;t predict when blocks on a live filesystem disk will be overwritten, but overwriting tapes is pretty predictable &#8212; and easy because one doesn&#8217;t need access to the live system.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/ils-encryption/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Thursday Threads: Unprotected Social Media Sites, Value of Free, and Real Life Net Neutrality</title><link>http://dltj.org/article/thursday-threads-2010w43/</link> <comments>http://dltj.org/article/thursday-threads-2010w43/#comments</comments> <pubDate>Thu, 28 Oct 2010 19:41:20 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Thursday Threads]]></category> <category><![CDATA[Cory Doctorow]]></category> <category><![CDATA[digital rights management]]></category> <category><![CDATA[encryption]]></category> <category><![CDATA[Firesheep]]></category> <category><![CDATA[network neutrality]]></category> <category><![CDATA[security]]></category> <category><![CDATA[session hijacking]]></category> <category><![CDATA[ssl]]></category><guid isPermaLink="false">http://dltj.org/?p=1813</guid> <description><![CDATA[Receive DLTJ Thursday Threads by E-mail! Enter your email address:Delivered by FeedBurnerThis week&#8217;s Thursday Threads looks at a big hole in the security model of most internet sites that require you to log into them with a username and password &#8230; <a href="http://dltj.org/article/thursday-threads-2010w43/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/?p=1813"></abbr><div id="feedburner-thursday-threads-email" class="wp-caption alignright" style="width: 310px;;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=thursday-threads', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Receive <i><acronym title="Disruptive Library Technology Jester">DLTJ</acronym></i> Thursday Threads by E-mail!  Enter your email address:</p><input type="text" style="width:140px" name="email"/><input type="hidden" value="thursday-threads" name="uri"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe" /><p style="font-size: 80%">Delivered by <a href="http://feedburner.google.com" target="_blank" title="Google Feedburner Service">FeedBurner</a></p></form></div><p>This week&#8217;s <a href="http://dltj.org/category/thursday-threads/">Thursday Threads</a> looks at a big hole in the security model of most internet sites that require you to log into them with a username and password plus a pair of stories about &#8220;big media&#8221; battles.  If you find these interesting and useful, you might want to add the <a href="http://feeds.dltj.org/thursday-threads/">Thursday Threads RSS Feed</a> to your feed reader or subscribe to e-mail delivery using the form to the right.  If you would like a more raw and immediate version of these types of stories, watch <a href="http://friendfeed.com/dltj" title="Peter Murray - FriendFeed">my FriendFeed stream</a> (or subscribe to <a href="feed://friendfeed.com/dltj?format=atom">its feed</a> in your feed reader).  Comments, as always, are welcome.<br /><span id="more-1813"></span><br /><h2>Users of Non-SSL Sites are Prone to Hijacking</h2></p><blockquote><p>When logging into a website you usually start by submitting your username and password. The server then checks to see if an account matching this information exists and if so, replies back to you with a &#8220;cookie&#8221; which is used by your browser for all subsequent requests.</p><p>It&#8217;s extremely common for websites to protect your password by encrypting the initial login, but surprisingly uncommon for websites to encrypt everything else. This leaves the cookie (and the user) vulnerable. HTTP session hijacking (sometimes called &#8220;sidejacking&#8221;) is when an attacker gets a hold of a user&#8217;s cookie, allowing them to do anything the user can do on a particular website. On an open wireless network, cookies are basically shouted through the air, making these attacks extremely easy.</p><p><div id="attachment_1816" class="wp-caption alignright" style="width: 310px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><a href="http://codebutler.com/firesheep" title="Firesheep announcement"><img src="http://cdn.dltj.org/wp-content/uploads/2010/10/Firesheep-exploit-in-action-300x181.png" alt="Firesheep exploit in action" title="Firesheep exploit in action" width="300" height="181" class="size-medium wp-image-1816" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Screenshot of Firesheep in action, from codebutler.com</p></div><p>This is a widely known problem that has been talked about to death, yet very popular websites continue to fail at protecting their users. The only effective fix for this problem is full end-to-end encryption, known on the web as HTTPS or SSL. Facebook is constantly rolling out new &#8220;privacy&#8221; features in an endless attempt to quell the screams of unhappy users, but what&#8217;s the point when someone can just take over an account entirely? Twitter forced all third party developers to use OAuth then immediately released (and promoted) a new version of their insecure website. When it comes to user privacy, SSL is the elephant in the room.</p><p> Today at <a href="http://sandiego.toorcon.org/" title="ToorCon - Home">Toorcon 12</a> I announced the release of <a href="http://codebutler.github.com/firesheep/" title="Firesheep plugin distribution site">Firesheep</a>, a Firefox extension designed to demonstrate just how serious this problem is.</p></blockquote><p>Most of the <a href="http://news.google.com/news/search?pz=1&amp;cf=all&amp;ned=us&amp;hl=en&amp;as_q=firesheep&amp;as_epq=&amp;as_oq=&amp;as_eq=&amp;as_scoring=o&amp;btnG=Search&amp;as_qdr=a&amp;as_drrb=b&amp;as_minm=10&amp;as_mind=20&amp;as_maxm=10&amp;as_maxd=28&amp;as_nsrc=&amp;as_nloc=&amp;geo=&amp;as_author=&amp;as_occt=any" title="Google News/Blog search for 'Firesheep'">coverage</a> of <a href="http://codebutler.com/firesheep" title="Firesheep announcement">Firesheep</a> this week focused on the fact that using Facebook on an open wi-fi network in a coffee shop makes you prone to having your account broken into.  That is true, and perhaps most the most common scenario, but the problem goes deeper than that.  This can occur at any point where a third-party can intercept the communication between your browser and the web server:  your home wireless router, your internet service provider, or even some types of local area networks.  The real answer is to have the entire session &#8212; from the point when you log in to when you log out &#8212; encrypted.  Google recently made this the <a href="http://gmailblog.blogspot.com/2010/01/default-https-access-for-gmail.html" title="Default https access for Gmail - Official Gmail Blog">default for GMail sessions</a>, and some of the engineers involved in the effort <a href="http://www.imperialviolet.org/2010/06/25/overclocking-ssl.html" title="Overclocking SSL - ImperialViolet">published findings about how the SSL encryption overhead isn&#8217;t that bad</a>.  In the meantime, Network World has some options to consider to <a href="http://www.networkworld.com/news/2010/102610-how-to-protect-against-firesheep.html" title="How to protect against Firesheep attacks  | Network World">protect yourself a little bit</a> from this kind of attack. (Hat tip to Dan Scott on Code4Lib IRC.)</p><p><h2>Cory Doctorow on the Role of &#8220;Free&#8221;</h2></p><blockquote><p>The topic I leave my family and my desk to talk to people all over the world about is the risks to freedom arising from the failure of copyright giants to adapt to a world where it&#8217;s impossible to prevent copying. Because it <em>is</em> impossible. Despite 15 long years of the copyright wars, despite draconian laws and savage penalties, despite secret treaties and widespread censorship, despite millions spent on ill-advised copy-prevention tools, more copying takes place today than ever before.</p><p>As <a href="http://www.guardian.co.uk/technology/2007/sep/18/informationeconomy" title="I've written here before">I&#8217;ve written here before</a>, copying isn&#8217;t going to get harder, ever. Hard drives won&#8217;t magically get bulkier but hold fewer bits and cost more.</p><p>Networks won&#8217;t be harder to use. PCs won&#8217;t be slower. People won&#8217;t stop learning to type &#8220;Toy Story 3 bittorrent&#8221; into Google. Anyone who claims otherwise is selling something – generally some kind of unworkable magic anti-copying beans that they swear, this time, will really work.</p></blockquote><p>Cory writes <a href="http://www.guardian.co.uk/technology/blog/2010/oct/05/free-online-content-cory-doctorow" title="The real cost of free | Cory Doctorow | Guardian technology blog">this piece in the U.K. Guardian</a> in response to a column from a fellow Guardian writer on how creative people can control their own intellectual property and some media companies&#8217; demands for digital rights management are actually stifling creativity.  It starts as a rant and moves quickly into a powerful summary of what is at stake in the &#8220;copyright wars.&#8221;  (Hat tip to <a href="http://www.oclc.org/research/publications/newsletters/abovethefold/default.htm" title="Above the Fold">OCLC&#8217;s Above the Fold</a>.)</p><p><h2>What Network Neutrality Really Means</h2></p><blockquote><p>In its continuing contract showdown with <a href="http://topics.nytimes.com/top/news/business/companies/cablevision_systems_corporation/index.html" title="More information about Cablevision Systems Corp">Cablevision</a>, the <a href="http://topics.nytimes.com/top/news/business/companies/news_corporation/index.html" title="More information about News Corporation">News Corporation</a> tried to extend its blackout of the Fox Broadcasting network to Fox.com and to Hulu, the popular Web site for free TV viewing, on Saturday. Angry Cablevision customers reported being unable to watch episodes of “Glee” and “House” on Hulu.</p><p>The blackout caused shock waves because it had not been done before by a programmer. Though the shutdown was brief, the message was unmistakable: do not expect to be able to watch Fox online unless you are paying for Fox on TV.</p><p>The attempted Web blockade was leverage for Fox in its contract negotiations, but more important, it was the latest evidence that entrenched media companies hope to replicate their walled gardens in a new medium, the Internet.</p></blockquote><p>Broadcast and cable companies in the New York City area are locked in a dispute over what the latter needs to pay the former for the right to retransmit the content on cable TV.  The dispute <a href="http://www.nytimes.com/2010/10/20/business/media/20hulu.html" title="Internet Is a Weapon in Cable Fight | New York Times">spilled over into the internet</a> when the cable company started blocking internet subscribers from reaching the broadcast company&#8217;s shows on its website and on Hulu.  This could be seen as a litmus test for <a href="http://en.wikipedia.org/wiki/Network_neutrality" title="Network Neutrality | Wikipedia">net neutrality</a>:  should an internet service provider be able to decide what content it sends to end-users &#8212; either by giving preferential treatment to some content or by blocking other content?  The dispute, by the way, continues&#8230;even <a href="http://www.nytimes.com/2010/10/27/sports/baseball/27sandomir.html" title="Rabbit Ears Redux | New York Times">impacting those who want to watch baseball&#8217;s World Series</a>.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/thursday-threads-2010w43/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>&#8220;Everyone&#8217;s Guide to By-Passing Internet Censorship for Citizens Worldwide&#8221;</title><link>http://dltj.org/article/bypassing-internet-censorship/</link> <comments>http://dltj.org/article/bypassing-internet-censorship/#comments</comments> <pubDate>Thu, 18 Oct 2007 20:36:17 +0000</pubDate> <dc:creator>Peter Murray</dc:creator> <category><![CDATA[Raw Technology]]></category> <category><![CDATA[encryption]]></category> <category><![CDATA[privacy]]></category> <category><![CDATA[system administration]]></category> <category><![CDATA[tor]]></category><guid isPermaLink="false">http://dltj.org/2007/10/bypassing-internet-censorship/</guid> <description><![CDATA[The title of this post is the same as the report it describes, Everyone&#8217;s Guide to By-Passing Internet Censorship for Citizens Worldwide [PDF]. It was announced by Ronald Deibert last week on his blog at Citizen Lab. The one sentence &#8230; <a href="http://dltj.org/article/bypassing-internet-censorship/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<abbr class="unapi-id ignore noPrint" title="http://dltj.org/2007/10/bypassing-internet-censorship/"></abbr><p><a href="http://www.nartv.org/mirror/circ_guide.pdf" title="Cover of “Everyone’s Guide to By-Passing Internet Censorship for Citizens Worldwide”"><img src="http://cdn.dltj.org/wp-content/uploads/2007/10/circ_guide.jpg" alt="Cover of “Everyone’s Guide to By-Passing Internet Censorship for Citizens Worldwide”" style="width: 25%; border-right: 2px solid gray; border-bottom: 2px solid gray; margin: 0 0 1.5em 2em; float: right;" /></a>The title of this post is the same as the report it describes, <a href="http://www.nartv.org/mirror/circ_guide.pdf" title="Full text of report: &#039;Everyone&#039;s Guide to By-Passing Internet Censorship for Citizens Worldwide&#039;">Everyone&#8217;s Guide to By-Passing Internet Censorship for Citizens Worldwide</a> [PDF].  It was <a href="http://deibert.citizenlab.org/2007/10/everyones-guide-to-by-passing-internet-censorship-for-citizens-worldwide-new-release/" title="Blog post: Everyone&#039;s Guide to By-Passing Internet Censorship for Citizens Worldwide">announced by Ronald Deibert</a> last week on his blog at Citizen Lab.  The one sentence synopsis goes like this:  &#8220;This guide is meant to introduce non-technical users to Internet censorship circumvention technologies, and help them choose which of them best suits their circumstances and needs.&#8221;</p><p>Although the stated audience is non-technical users, I found the description of techniques and circumstances under which one might deploy the techniques very interesting.  The document provides guidance for those seeking circumvention and those who want to provide it.  After a brief introduction to censorship activities worldwide (including in the United States), it walks the reader through an analysis of needs and describes solutions that meet the needs based on the user&#8217;s technical skills.  I knew &#8216;<a href="http://tor.eff.org/" title="Tor: anonymity online">tor</a>&#8216; &#8212; a long-time favorite of mine &#8212; would be in there, but I was surprised by the range of other options.</p><p>To put a library spin on the report, some of the solutions offered are usable on &#8220;public computers&#8221; &#8212; such as, say, what one might find in a library.  One could take the report and read about the techniques with the intent to block them on your public workstations, but I think another reading of it would say that such attempts are ultimately futile because of the likelihood of other similar services popping up to take their place.  Unless you are running a white-list-only setup (that is to say, your public workstations are explicitly set to <em>only</em> allow access to a prescribed set of sites), any user can walk up to any public workstation and access the circumvention sites described in the report or any other ones that spring into existence.</p><p>The circumvention techniques are, of course, do not provide an assurance of privacy.  Even though the network traffic is encrypted, the activities of the user can still be monitored by keystroke loggers and other techniques in the workstation itself.  In order to get around that, one would need to restart the public workstation with a <span class="removed_link" title="http://www.tech-faq.com/bootable-linux-distributions.shtml">bootable Linux distribution</span>, but that is perhaps a report for another time&#8230;<p style="padding:0;margin:0;font-style:italic;">The text was modified to update a link from http://deibert.citizenlab.org/Circ_guide.pdf to http://www.nartv.org/mirror/circ_guide.pdf on January 28th, 2011.</p><p style="padding:0;margin:0;font-style:italic;">The text was modified to update a link from http://deibert.citizenlab.org/Circ_guide.pdf to http://www.nartv.org/mirror/circ_guide.pdf on January 28th, 2011.</p><p style="padding:0;margin:0;font-style:italic;">The text was modified to update a link from http://deibert.citizenlab.org/blog/_archives/2007/10/10/3282831.html to http://deibert.citizenlab.org/2007/10/everyones-guide-to-by-passing-internet-censorship-for-citizens-worldwide-new-release/ on January 28th, 2011.</p><p style="padding:0;margin:0;font-style:italic;" class="removed_link">The text was modified to remove a link to http://www.tech-faq.com/bootable-linux-distributions.shtml on January 28th, 2011.</p>]]></content:encoded> <wfw:commentRss>http://dltj.org/article/bypassing-internet-censorship/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
<!-- Served from: dltj.org @ 2012-05-24 08:53:00 by W3 Total Cache -->
