<?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>Cupfighter.net &#187; linux</title>
	<atom:link href="http://www.cupfighter.net/index.php/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cupfighter.net</link>
	<description>A blog by Schuberg Philis colleagues</description>
	<lastBuildDate>Thu, 09 Feb 2012 14:27:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Defcon talk: USB Attacks, Fun with Plug and 0wn – By Rafael Dominguez Vega</title>
		<link>http://www.cupfighter.net/index.php/2009/08/defcon-plug-and-0wn/</link>
		<comments>http://www.cupfighter.net/index.php/2009/08/defcon-plug-and-0wn/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:18:33 +0000</pubDate>
		<dc:creator>Frank Breedijk</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Defcon]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.cupfighter.net/?p=438</guid>
		<description><![CDATA[This talk explained and demonstrated an exploitable Linux Kernel USB driver vulnerability and explained the fuzzing process used to find it. Unfortunately due to legal issues, the details could not be attacks. While the speaker did not test windows, it is highly likely that these flaws exist in Windows as well.]]></description>
			<content:encoded><![CDATA[<p>This talk explained and demonstrated an exploitable Linux Kernel USB driver vulnerability and explained the fuzzing process used to find it. Unfortunately due to legal issues, the details could not be attacks.</p>
<p>While the speaker did not test windows, it is highly likely that these flaws exist in Windows as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cupfighter.net/index.php/2009/08/defcon-plug-and-0wn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A fascinating Linux kernel vulnerability</title>
		<link>http://www.cupfighter.net/index.php/2009/07/a-fascinating-linux-kernel-vulnerability/</link>
		<comments>http://www.cupfighter.net/index.php/2009/07/a-fascinating-linux-kernel-vulnerability/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 15:32:40 +0000</pubDate>
		<dc:creator>Frank Breedijk</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[SOurce Code]]></category>

		<guid isPermaLink="false">http://www.cupfighter.net/?p=373</guid>
		<description><![CDATA[My collegue Otto Jongerius pointed me to this interesting story from the Internet Storm Center. Source code for a exploit of a Linux kernel vulnerability has been posted by Brad Spengler (Brad is the author of grsecurity). I have to tell you right now – this was one of the most fascinating bugs I&#8217;ve read [...]]]></description>
			<content:encoded><![CDATA[<p>My collegue Otto Jongerius pointed me to <a title="ISC article" href="http://isc.sans.org/diary.html?storyid=6820" target="_blank">this</a> interesting story from the Internet Storm Center.</p>
<p>Source code for a exploit of a Linux kernel vulnerability has been posted by Brad Spengler (Brad is the author of grsecurity). I have to tell you right now – this was one of the most fascinating bugs I&#8217;ve read about lately.</p>
<p>Why is it so fascinating? Because a source code audit of the vulnerable code would never find this vulnerability (well, actually, it is possible but I assure you that almost everyone would miss it). However, when you add some other variables into the game, the whole landscape changes.</p>
<p>While technical details about this are a bit complex, generally what&#8217;s happening can be easily explained. The vulnerable code is located in the net/tun implementation. Basically, what happens here is that the developer initialized a variable (sk in the code snippet below) to a certain value that can be NULL. The developer correctly checked the value of this new variable couple of lines later and, if it is 0 (NULL), he just returns back an error. The code looks like this:</p>
<p>struct sock *sk = tun-&gt;sk;  // initialize sk with tun-&gt;sk<br />
…<br />
if (!tun)<br />
return POLLERR;  // if tun is NULL return error</p>
<p>This code looks perfectly ok, right? Well, it is, until the compiler takes this into its hands. While optimizing the code, the compiler will see that the variable has already been assigned and will actually remove the if block (the check if tun is NULL) completely from the resulting compiled code. In other words, the compiler will introduce the vulnerability to the binary code, which didn&#8217;t exist in the source code. This will cause the kernel to try to read/write data from 0&#215;00000000, which the attacker can map to userland – and this finally pwns the box. There are some other highly technical details here so you can check your favorite mailing list for details. Here is a video of the exploit:</p>
<p><a href="http://www.cupfighter.net/index.php/2009/07/a-fascinating-linux-kernel-vulnerability/"><em>Click here to view the embedded video.</em></a></p>
<p>Brad was able to even bypass SELinux protections with this and LSM.</p>
<p>The fix for this is relatively easy, the check has to be done before assigning the value to the sk structure.<br />
Fascinating research that again shows how security depends on every layer, and how even very expensive source code audit can result in missed vulnerabilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cupfighter.net/index.php/2009/07/a-fascinating-linux-kernel-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kerberos Based SSO and Apache</title>
		<link>http://www.cupfighter.net/index.php/2009/06/kerberos-based-sso-and-apache/</link>
		<comments>http://www.cupfighter.net/index.php/2009/06/kerberos-based-sso-and-apache/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:51:33 +0000</pubDate>
		<dc:creator>Roeland Kuipers</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sso]]></category>

		<guid isPermaLink="false">http://www.cupfighter.net/?p=275</guid>
		<description><![CDATA[Similar as OpenSSH Authentication Using Kerberos, but now Transparent Kerberos Authentication via Apache against Active Directory using mod_auth_kerb. This enables SSO from IE and Firefox on Apache, IE and Firefox configurations to enable this are also described in the document. Abstract:  The Apache authentication module mod_auth_kerb allows Apache to authenticate users against a Kerberos KDC [...]]]></description>
			<content:encoded><![CDATA[<p>Similar as<a href="http://www.cupfighter.net/index.php/2009/06/openssh-authentication-using-kerberos/" target="_blank"> OpenSSH Authentication Using Kerberos</a>, but now Transparent Kerberos Authentication via Apache against Active Directory using mod_auth_kerb. This enables SSO from IE and Firefox on Apache, IE and Firefox configurations to enable this are also described in the document.</p>
<blockquote><p><strong>Abstract</strong>:  The Apache authentication module mod_auth_kerb allows Apache to authenticate users against a Kerberos KDC including one from ActiveDirectory. Kerberos itself can be fairly complex to set up. This guide will attempt to show the specific steps required to make this possible as well as discuss security limitations specific to the interoperability matters. This guide assumes a basic understanding of Kerberos V and that the Active Directory domain controller is properly configured prior to starting this process.</p></blockquote>
<p><a href="http://port25.technet.com/archive/2008/01/25/technical-analysis-apache-with-mod-auth-kerb-and-windows-server.aspx" target="_blank">Technical Analysis: Apache with mod_auth_kerb and Windows Server</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cupfighter.net/index.php/2009/06/kerberos-based-sso-and-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSSH Authentication using Kerberos</title>
		<link>http://www.cupfighter.net/index.php/2009/06/openssh-authentication-using-kerberos/</link>
		<comments>http://www.cupfighter.net/index.php/2009/06/openssh-authentication-using-kerberos/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:07:09 +0000</pubDate>
		<dc:creator>Roeland Kuipers</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Interoperability]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cupfighter.net/?p=269</guid>
		<description><![CDATA[An interesting paper on how to authenticate against Active Directory using Kerberos and OpenSSH. This will enable SSO capabilities between Linux and windows, if used in combination with an Kerberos enabled SSH. And maybe even 2-factor authentication if combined with smartcards, haven&#8217;t tested this but should be working in theory if you use an SSH [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting paper on how to authenticate against Active Directory using Kerberos and OpenSSH. This will enable SSO capabilities between Linux and windows, if used in combination with an Kerberos enabled SSH. And maybe even 2-factor authentication if combined with smartcards, haven&#8217;t tested this but should be working in theory if you use an SSH client from windows at least.</p>
<p>Components used:</p>
<p>On linux:</p>
<ul>
<li>openssh</li>
<li>openssh-server</li>
<li>samba-common</li>
<li>samba-client</li>
<li>krb5-workstation</li>
<li>krb5-libs</li>
</ul>
<p>On Windows:</p>
<ul>
<li>Windows Support Tools</li>
</ul>
<p><a href="http://port25.technet.com/Videos/research/OpenSSH%20on%20Linux%20using%20Windows.pdf" target="_blank">OpenSSH on Linux using Windows/Kerberos for Authentication</a></p>
<p><a href="http://www.helpdesk.umd.edu/topics/applications/kerberos/4775/" target="_blank">Putty With Kerberos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cupfighter.net/index.php/2009/06/openssh-authentication-using-kerberos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

