<?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>jaredrobinson.com &#187; Security</title>
	<atom:link href="http://jaredrobinson.com/blog/category/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaredrobinson.com/blog</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 04:11:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux tty auditing</title>
		<link>http://jaredrobinson.com/blog/linux-tty-auditing/</link>
		<comments>http://jaredrobinson.com/blog/linux-tty-auditing/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 05:47:28 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=721</guid>
		<description><![CDATA[Since RHEL 5.4, and in recent Fedora releases, it&#8217;s possible to audit what users type at their tty (command prompt), thanks to the work of Steve Grubb, a RedHat employee. Edit /etc/pam.d/system-auth and append the following, but not both: session &#8230; <a href="http://jaredrobinson.com/blog/linux-tty-auditing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since RHEL 5.4, and in recent Fedora releases, it&#8217;s possible to audit what users type at their tty (command prompt), thanks to the work of Steve Grubb, a RedHat employee.</p>

<p>Edit /etc/pam.d/system-auth and append the following, <strong>but not both</strong>:
<pre>session required pam&#95;tty&#95;audit.so disable=&#42; enable=root
session required pam&#95;tty&#95;audit.so enable=&#42;</pre>
Wait for users to log in and type into a terminal. Later, to see audited tty input, run:
<pre>aureport --tty</pre>
When a user logs in, the pam module tells the kernel to enable tty auditing for a process and its children. All tty input is logged, but it may not be incredibly easy to read (it includes backspaces, control characters, etc.). I&#8217;m unclear as to when and how often the kernel flushes out accumulated tty input to the audit log. The records are identified with a type of TTY in /var/log/audit/audit.log.</p>

<p>In addition to tty auditing, RedHat patched their bash shell so that it neatly audits each and every command line it executes, with a record type of USER&#95;TTY. It&#8217;s prettier to read than raw tty auditing &#8212; and it&#8217;s easy for a user to bypass by using a shell that doesn&#8217;t send its commands to the Linux audit system, like zsh, or a custom-built unpatched bash. Maybe that&#8217;s why &#8220;aureport &#8211;tty&#8221; doesn&#8217;t show USER&#95;TTY records.</p>

<hr />

<p>The Linux auditing system is powerful. It&#8217;s possible to write rules that watch for modification to certain files, or that log the use of certain system calls. See the &#8220;audit.rules&#8221; manpage for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/linux-tty-auditing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 14, SSH ports and SELinux</title>
		<link>http://jaredrobinson.com/blog/fedora-14-ssh-ports-and-selinux/</link>
		<comments>http://jaredrobinson.com/blog/fedora-14-ssh-ports-and-selinux/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 16:01:14 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=659</guid>
		<description><![CDATA[SELinux in Fedora 14 is configured to constrain the ports on which SSH can listen (see the bug report). The solution: setsebool -P sshdforwardports 1 This allows SSH to listen on ports besides 22, and to forward ports. Reading the &#8230; <a href="http://jaredrobinson.com/blog/fedora-14-ssh-ports-and-selinux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SELinux in Fedora 14 is configured to constrain the ports on which SSH can listen <a href="https://bugzilla.redhat.com/show_bug.cgi?id=653579">(see the bug report</a>). The solution:
<pre>setsebool -P sshd<em>forward</em>ports 1</pre>
This allows SSH to listen on ports besides 22, and to forward ports. Reading the bug report is interesting. In my opinion, OpenSSH has an outstanding security track record, and we probably don&#8217;t need additional SELinux policy to constrain it. It&#8217;s probably wise to practice security in-depth (to have more than one line of defense), but it creates a large road bump for most SSH power users. From what I read, it sounds like most people still disable SELinux.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/fedora-14-ssh-ports-and-selinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trust, but verify</title>
		<link>http://jaredrobinson.com/blog/trust-but-verify/</link>
		<comments>http://jaredrobinson.com/blog/trust-but-verify/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 22:10:04 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=547</guid>
		<description><![CDATA[In a comment over at LWN.net, a reader pointed out that it&#8217;s a good idea to verify not just SSL certificate, but also doctors, mechanics, etc. He says, &#8220;it&#8217;s simply a requirement of a healthy society that it&#8217;s citizens have &#8230; <a href="http://jaredrobinson.com/blog/trust-but-verify/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://lwn.net/Articles/375051/">a comment</a> over at LWN.net, a reader pointed out that it&#8217;s a good idea to verify not just SSL certificate, but also doctors, mechanics, etc. He says, &#8220;it&#8217;s simply a requirement of a healthy society that it&#8217;s citizens have a healthy skepticism and be willing to put the effort into understanding what is going on around them. It&#8217;s not that you don&#8217;t trust them. Its that you do what you can, in your limited way, to make sure that you can trust them.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/trust-but-verify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Users, Security and Scams</title>
		<link>http://jaredrobinson.com/blog/users-security-and-scams/</link>
		<comments>http://jaredrobinson.com/blog/users-security-and-scams/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 12:25:48 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=486</guid>
		<description><![CDATA[I read Bruce Schneier&#8217;s Crypto-Gram monthly. It&#8217;s from there that I found most of these links, with the exception of the ones on social engineering. I found the first paper on scam victims to be especially thought provoking (although it&#8217;s &#8230; <a href="http://jaredrobinson.com/blog/users-security-and-scams/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I read Bruce Schneier&#8217;s <a href="http://www.schneier.com/crypto-gram.html">Crypto-Gram</a> monthly. It&#8217;s from there that I found most of these links, with the exception of the ones on social engineering. I found the first paper on scam victims to be especially thought provoking (although it&#8217;s long). The video clip demonstrating social proof was amusing.</p>

<p><em><a href="http://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-754.pdf">Understanding scam victims: seven principles for systems security</a></em></p>

<p>Summary: Scammers manipulate people with distraction, deception, herd mentality, greed, time pressure and by impersonating authority. If something sounds too good to be true, it probably is.</p>

<hr />

<p><em><a href="http://www.infosectoday.com/Norwich/GI532/Social_Engineering.htm">Social Engineering</a></em> <a href="http://www.chips.navy.mil/archives/09_Jan/web_pages/social_engineering.html">&#91;2&#93;</a> <a href="http://packetstormsecurity.nl/docs/social-engineering/aaatalk.html">&#91;3&#93;</a></p>

<p><em>Summary</em>: Social engineers exploit people&#8217;s tendency to trust and to be helpful. They do this with ingratiation, impersonation, diffusion of responsibility, urgency, appeal to conformity (aka &#8220;social proof&#8221; or herd mentality), intimidation, deception, and authoritative orders.</p>

<p>There&#8217;s an entertaining Candid Camera <a href="http://www.social-engineer.org/framework/Influence_Tactics:_Consensus_or_Social_Proof">video clip demonstrating &#8220;social proof&#8221;</a>.</p>

<hr />

<p><em><a href="http://research.microsoft.com/en-us/um/people/cormac/papers/2009/SoLongAndNoThanks.pdf">The Rational Rejection of Security Advice by Users</a></em></p>

<p><em>Summary</em>: Security practitioners often dole out advice that is perceived by users as too time consuming. So users ignore or reject the security advice. However, &#8220;Advice that has compelling cost-benefit tradeoff has real chance of user adoption&#8230;. the costs and benefits have to be those the user cares about&#8221;. <em>Time</em> is one thing users care about.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/users-security-and-scams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article: Election Fraud in Kentucky</title>
		<link>http://jaredrobinson.com/blog/article-election-fraud-in-kentucky/</link>
		<comments>http://jaredrobinson.com/blog/article-election-fraud-in-kentucky/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 13:44:16 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=313</guid>
		<description><![CDATA[Bruce Schneier summarizes the first documented case of election fraud using new electronic voting machines in his article Election Fraud in Kentucky: Five Clay County officials, including the circuit court judge, the county clerk, and election officers were arrested Thursday &#8230; <a href="http://jaredrobinson.com/blog/article-election-fraud-in-kentucky/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Bruce Schneier summarizes the first documented case of election fraud using new electronic voting machines in his article <a href="http://www.schneier.com/blog/archives/2009/03/election_fraud.html">Election Fraud in Kentucky</a>:</p>

<blockquote>
  <p>Five Clay County officials, including the circuit court judge, the county clerk, and election officers were arrested Thursday after they were indicted on federal charges accusing them of using corrupt tactics to obtain political power and personal gain.</p>
</blockquote>

<p>They used a low-tech social engineering trick to commit their crime.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/article-election-fraud-in-kentucky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bypassing the I.T. security fortress</title>
		<link>http://jaredrobinson.com/blog/bypassing-the-it-security-fortress/</link>
		<comments>http://jaredrobinson.com/blog/bypassing-the-it-security-fortress/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 05:58:29 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=239</guid>
		<description><![CDATA[On the back of my mind for the past few years, I've been thinking about how I.T. security becomes less meaningful as time goes on. The use of digital cameras isn't usually allowed, yet a company isn't (usually) going to &#8230; <a href="http://jaredrobinson.com/blog/bypassing-the-it-security-fortress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On the back of my mind for the past few years, I've been thinking about how I.T. security becomes less meaningful as time goes on. The use of digital cameras isn't usually allowed, yet a company isn't (usually) going to boot out an employee for having a cell phone with a digital camera -- or even using it to take a snapshot of a diagram that will be placed on a corporate wiki. The use of USB thumb drives for transferring and storing corporate data is perceived as a risk, but often, it's a practical way of getting one's job done. Remember network firewalls? They're still in place, but they're increasingly meaningless. They certainly don't keep out viruses and trojan horses. And with the increasing prevalence of wireless networking, there's even less incentive for people to play by the I.T. security rules. Dan Kaminsky <a href="http://www.doxpara.com/?p=1245">expresses these thoughts better than I have</a>
:</p>

<blockquote>
  <p>... every restriction, every alteration [I.T. makes] in people's day to day business, carries with it a risk that users will abandon the corporate network entirely, going "off-grid" in search of a more open and more useful operating environment. You might scoff, and think people would get fired for this stuff, but you know what people really get fired for? Missing their numbers.</p>
  
  <p>Its never been easier to get away with going off-grid. Widespread availability of WiMax and 3G networks mean there's an alternate, unmonitored high speed network available at every desk.</p>
</blockquote>

<p>Kaminsky <a href="http://www.doxpara.com/?p=1245">goes on</a> to discuss some of the ramifications of these ongoing changes, including "the Cloud" (e.g. Google docs) and the security of corporate data.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/bypassing-the-it-security-fortress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 10 lacks &#8220;wow&#8221; appeal; OpenSolaris 11</title>
		<link>http://jaredrobinson.com/blog/fedora-10-lacks-wow-appeal-opensolaris-11/</link>
		<comments>http://jaredrobinson.com/blog/fedora-10-lacks-wow-appeal-opensolaris-11/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 17:28:22 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=219</guid>
		<description><![CDATA[I upgraded one of my machines to Fedora 10 last month, and for me, this release lacks the &#8220;wow&#8221; appeal that other releases have had. A minor annoyance is that the keyboard repeat delay is broken for me and so &#8230; <a href="http://jaredrobinson.com/blog/fedora-10-lacks-wow-appeal-opensolaris-11/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I upgraded one of my machines to Fedora 10 last month, and for me, this release lacks the &#8220;wow&#8221; appeal that other releases have had. A minor annoyance is that the keyboard repeat delay <a href="https://bugzilla.redhat.com/show_bug.cgi?id=475747">is broken</a> for me and so far, there is no fix other than disabling keyboard repeat. On the plus side, Fedora 10 includes OpenOffice.org 3 and other <a href="http://fedoraproject.org/wiki/Releases/10/ReleaseSummary">new</a> <a href="http://www.heise-online.co.uk/open/features/print/112093">features</a>. Be sure to check out the <a href="http://fedoraproject.org/wiki/Bugs/F10Common">Common Issues</a> people have experienced with Fedora 10.</p>

<p>The other day, a co-worker handed me an OpenSolaris 11 Live CD. I booted it, expecting to be underwhelmed like I was with the Solaris 10 JavaDesktop. I was pleasantly surprised, however. Sun&#8217;s &#8220;Nimbus&#8221; GNOME theme knocks the socks off of the boring Fedora window manager themes. The experience felt like I was running Linux. It was responsive, supported my newer hardware, and the system was built with GNU utilities on the command line so I get my favourite options to &#8216;ls&#8217;, &#8216;grep&#8217;, etc. It supported my NVidia card out-of-the box, and had Compiz eye-candy as an option. The only thing I missed (in my superficial test) was the familiar &#8216;yum&#8217; and &#8216;rpm&#8217; for package management. I suspect that if I used it from day to day, I&#8217;d find other things I miss. Does OpenSolaris support encrypted file systems? Does it have as much optional software as I can get with Fedora Extras?</p>

<p>I&#8217;ll keep my eye on <a href="http://www.opensolaris.com/">OpenSolaris</a> a little more closely in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/fedora-10-lacks-wow-appeal-opensolaris-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web App Security Statistics</title>
		<link>http://jaredrobinson.com/blog/web-app-security-statistics/</link>
		<comments>http://jaredrobinson.com/blog/web-app-security-statistics/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 15:36:56 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=190</guid>
		<description><![CDATA[Perhaps this is a bit old, but it&#8217;s the first time I&#8217;ve seen it, and I thought it was interesting enough to share. http://www.webappsec.org/projects/statistics/ more than 7% of analyzed sites can be compromised automatically Detailed manual and automated assessment using &#8230; <a href="http://jaredrobinson.com/blog/web-app-security-statistics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Perhaps this is a bit old, but it&#8217;s the first time I&#8217;ve seen it, and I thought it was interesting enough to share.</p>

<p><a href="http://www.webappsec.org/projects/statistics/">http://www.webappsec.org/projects/statistics/</a></p>

<ul>
<li>more than 7% of analyzed sites can be compromised automatically</li>
<li>Detailed manual and automated assessment using white and black box methods shows that probability to detect high severity vulnerability reaches 96.85%.</li>
<li>The most prevalent vulnerabilities are Cross-Site Scripting, Information Leakage, SQL Injection and Predictable Resource Location</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/web-app-security-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>REST versus RPC</title>
		<link>http://jaredrobinson.com/blog/rest-versus-rpc/</link>
		<comments>http://jaredrobinson.com/blog/rest-versus-rpc/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 15:00:13 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=171</guid>
		<description><![CDATA[Have you considered the merits and applicability of RESTful web apps? Here are a few notes I&#8217;ve made. There was quite a discussion about RPC, REST, and message queuing &#8212; they are not the same thing. Each one is needed &#8230; <a href="http://jaredrobinson.com/blog/rest-versus-rpc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you considered the merits and applicability of RESTful web apps? Here are a few notes I&#8217;ve made.</p>

<p>There was quite a <a href="http://steve.vinoski.net/blog/2008/07/13/protocol-buffers-leaky-rpc">discussion about RPC, REST, and message queuing</a> &#8212; they are not the same thing. Each one is needed in a different scenario. All are used in building distributed systems.</p>

<p>Wikipedia&#8217;s <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer">explanation of REST</a> is quite informative, especially their <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer#Example">examples</a> of RPC versus REST.</p>

<p>The poster &#8220;soabloke&#8221; says RPC &#8220;Promotes tightly coupled systems which are difficult to
scale and maintain. Other abstractions have been more successful in building
distributed systems. One such abstraction is message queueing where systems
communicate with each other by passing messages through a distributed queue.
REST is another completely different abstraction based around the concept of a
&#8216;Resource&#8217;. Message queuing can be used to simulate RPC-type calls
(request/reply) and REST might commonly use a request/reply protocol (HTTP) but
they are fundamentally different from RPC as most people conceive it. &#8220;</p>

<p>The <a href="http://rest.blueoxen.net/cgi-bin/wiki.pl?RestFaq">REST FAQ</a> says, &#8220;Most applications that self-identify as using &#8220;RPC&#8221; do not conform to the REST. In particular,
most use a single URL to represent the end-point (dispatch point) instead of using a multitude of
URLs representing every interesting data object. Then they hide their data objects behind method
calls and parameters, making them unavailable to applications built of the Web. REST-based
services give addresses to every useful data object and use the resources themselves as the
targets for method calls (typically using HTTP methods)&#8230; REST is incompatible with
&#8216;end-point&#8217; RPC. Either you address data objects (REST) or you don&#8217;t.&#8221;</p>

<p>RPC: Remote Procedure Call assumes that people agree on what kinds of procedures they would like
to do. RPC is about algorithms, code, etc. that operate on data, rather than about the data
itself. Usually fast. Usually binary encoded. Okay for software designed and consumed by a
single vendor.</p>

<p>REST: All data is addressed using URLs, and is encoded using a standard MIME type. Data that is
made up of other data would simply have URLs pointing to the other data. Assumes that people
won&#8217;t agree on what they want to do with data, so they let people get the data, and act on it
independently, without agreeing on procedures.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/rest-versus-rpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xguest</title>
		<link>http://jaredrobinson.com/blog/xguest/</link>
		<comments>http://jaredrobinson.com/blog/xguest/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 19:01:57 +0000</pubDate>
		<dc:creator>jared</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://jaredrobinson.com/blog/?p=136</guid>
		<description><![CDATA[I just discovered and installed the xguest package for Fedora 8 and 9. Here&#8217;s what it does: Installing this package sets up the xguest user to be used as a temporary account to switch to or as a kiosk user &#8230; <a href="http://jaredrobinson.com/blog/xguest/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just discovered and installed the <em>xguest</em> package for Fedora 8 and 9.  Here&#8217;s what it does:</p>

<blockquote>
  <p>Installing this package sets up the xguest user to be used as a temporary account to switch to or as a kiosk user account. The account is disabled unless SELinux is in enforcing mode. The user is only allowed to log in via gdm [or the fast-user-swiching applet]. The home and temporary directories of the user will be polyinstantiated and mounted on tmpfs.</p>
</blockquote>

<p>Here&#8217;s how to install it:</p>

<pre><code>yum install xguest
</code></pre>

<p>I hit a brick wall when I first tried it. I thought my machine was in SELinux Enforcing mode, when it wasn&#8217;t &#8212; it was in Permissive mode. I fixed it using system-config-selinux.</p>

<p>It&#8217;s possible to change what the xguest user can do using system-config-selinux. I&#8217;ve attached a screenshot showing what capabilities can be granted or revoked.</p>

<p><img src="/blog/wp-content/uploads/2008/08/xguest-SELinux-Admin.png" alt="SELinux Administration for xguest user" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jaredrobinson.com/blog/xguest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

