<?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>Disenchant's Blog &#187; security</title>
	<atom:link href="http://www.disenchant.ch/blog/category/security/feed" rel="self" type="application/rss+xml" />
	<link>http://www.disenchant.ch/blog</link>
	<description>Blog of Sven Vetsch / Disenchant</description>
	<lastBuildDate>Thu, 22 Oct 2009 16:25:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Incremental Backups of Crypto Containers</title>
		<link>http://www.disenchant.ch/blog/incremental-backups-of-crypto-containers/288</link>
		<comments>http://www.disenchant.ch/blog/incremental-backups-of-crypto-containers/288#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:25:14 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=288</guid>
		<description><![CDATA[If you want to backup your crypto containers, you have mainly two choices:
1.) Open the container on your machine and one on the backup server and than you can start with an incremental backup.
2.) You always transfer the whole crypto container.
From a security point of view it&#8217;s not acceptable to open a container on a [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to backup your crypto containers, you have mainly two choices:<br />
1.) Open the container on your machine and one on the backup server and than you can start with an incremental backup.<br />
2.) You always transfer the whole crypto container.<br />
From a security point of view it&#8217;s not acceptable to open a container on a remote host which is perhaps even not owned by you and of course you don&#8217;t want to backup a 1GB container after you&#8217;ve just added a small *.txt<br />
Here, I&#8217;ll demonstrate how to do incremental backups of crypto containers without even once open them <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code><br />
# backup.sh<br />
echo "Creating patch"<br />
bsdiff disk_of_last_change.tc disk_to_work_with.tc patch.patch<br />
echo "Move patch to server"<br />
mv patch.patch serverSide<br />
cd ./serverSide<br />
echo "Use patch"<br />
bspatch disk_on_the_server.tc disk_on_the_server.tc patch.patch<br />
cd ../<br />
echo "cleanup"<br />
rm ./serverSide/patch.patch<br />
rm disk_of_last_change.tc<br />
cp disk_to_work_with.tc disk_of_last_change.tc</code></p>
<p>Unfortunately, this is not as fast as it could be, even if it&#8217;s much faster than transfering the whole container all the time but I also found a quiet strange way on how to improve the speed of the whole process. You can just use base64 encoding and the normall diff instead of using bsdiff because you can work much faster on plain text files than on binary files. Here&#8217;s how an example could look like:</p>
<p><code># backup64.sh<br />
#<br />
# run once:<br />
# base64 disk_to_work_with.tc > disk_of_last_change_64.tc<br />
base64 disk_to_work_with.tc > disk_to_work_with_64.tc<br />
echo "Creating patch"<br />
diff disk_of_last_change_64.tc disk_to_work_with_64.tc > patch64.patch<br />
echo "Move patch to server"<br />
mv patch64.patch ./serverSide/<br />
cd ./serverSide<br />
echo "Use patch"<br />
patch disk_on_the_server_64.tc patch64.patch<br />
cd ../<br />
echo "cleanup"<br />
#rm disk_of_last_change.tc<br />
#rm disk_of_last_change_64.tc<br />
rm ./serverSide/patch64.patch<br />
mv disk_to_work_with_64.tc disk_of_last_change_64.tc<br />
base64 -d disk_of_last_change_64.tc > disk_to_work_with.tc</code></p>
<p>As you&#8217;ll see, the patches are slightly bigger than the ones with bsdiff but I think you can accept that when you get such a huge performance improvement by using the base64 version.</p>
<p>I know that I didn&#8217;t really explain everything but don&#8217;t hesitate to ask me if there are any questions <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/incremental-backups-of-crypto-containers/288/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teaching John The Ripper how to Crack MD5 Hashes and more</title>
		<link>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277</link>
		<comments>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277#comments</comments>
		<pubDate>Mon, 05 Oct 2009 10:55:16 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=277</guid>
		<description><![CDATA[Long time ago, I posted a guide on how to make John the Ripper able to crack MD5 hashes (http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106). In that posting where some errors and also it&#8217;s not up to date so I made a small shell script which downloads, patches and compile JtR 1.7.3.4 for you automatically
wget http://www.openwall.com/john/g/john-1.7.3.4.tar.gz
tar xvf john-1.7.3.4.tar.gz
wget http://www.openwall.com/john/contrib/john-1.7.3.4-jumbo-1.diff.gz
gunzip john-1.7.3.4-jumbo-1.diff.gz
cp [...]]]></description>
			<content:encoded><![CDATA[<p>Long time ago, I posted a guide on how to make <a href="http://www.openwall.com/john">John the Ripper</a> able to crack MD5 hashes (<a href="http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106">http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes/106</a>). In that posting where some errors and also it&#8217;s not up to date so I made a small shell script which downloads, patches and compile JtR 1.7.3.4 for you automatically</p>
<p><em>wget http://www.openwall.com/john/g/john-1.7.3.4.tar.gz<br />
tar xvf john-1.7.3.4.tar.gz<br />
wget http://www.openwall.com/john/contrib/john-1.7.3.4-jumbo-1.diff.gz<br />
gunzip john-1.7.3.4-jumbo-1.diff.gz<br />
cp john-1.7.3.4-jumbo-1.diff ./john-1.7.3.4<br />
cd ./john-1.7.3.4<br />
patch -p1 &lt; john-1.7.3.4-jumbo-1.diff<br />
cd ./src/<br />
make clean linux-x86-any</em></p>
<p>This patched John the Ripper can attack the following formats:<br />
DES/BSDI/MD5/BF/AFS/LM/NT/XSHA/PO/raw-MD5/IPB2/raw-sha1/md5a/hmac-md5/KRB5/bfegg/nsldap/ssha/openssha/oracle/MYSQL/mysql-sha1/mscash/lotus5/DOMINOSEC/NETLM/NETNTLM/NETLMv2/NETHALFLM/mssql/mssql05/epi/phps/mysql-fast/pix-md5/sapG/sapB/md5ns/HDAA</p>
<p>I hope you enjoy it <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/teaching-john-the-ripper-how-to-crack-md5-hashes-and-more/277/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox Security Tool Kit &#8211; FSTK v4.0</title>
		<link>http://www.disenchant.ch/blog/firefox-security-tool-kit-fstk-v40/265</link>
		<comments>http://www.disenchant.ch/blog/firefox-security-tool-kit-fstk-v40/265#comments</comments>
		<pubDate>Wed, 03 Jun 2009 13:36:22 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=265</guid>
		<description><![CDATA[There&#8217;s a new version of the Firefox Security Tool Kit (FSTK) online 
Download and/or Install the FSTK v4.0 now
You&#8217;ll find more information on the FSTK here but the Extensions have changed.
At this point I also wish to thank Kaspar Brand (the developer of Cert Viewer Plus) for letting me know, that there where some licensing [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new version of the Firefox Security Tool Kit (FSTK) online <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<strong><a href="http://www.disenchant.ch/blog/files/fstk.xpi">Download and/or Install the FSTK v4.0 now</a></strong></p>
<p>You&#8217;ll find more information on the FSTK <a href="http://www.disenchant.ch/blog/firefox-security-tool-kit-fstk/37">here</a> but the Extensions have changed.</p>
<p>At this point I also wish to thank Kaspar Brand (the developer of <a href="https://addons.mozilla.org/en-US/firefox/addon/1964/">Cert Viewer Plus</a>) for letting me know, that there where some licensing problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/firefox-security-tool-kit-fstk-v40/265/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swiss Cyber Storm II</title>
		<link>http://www.disenchant.ch/blog/swiss-cyber-storm-ii/260</link>
		<comments>http://www.disenchant.ch/blog/swiss-cyber-storm-ii/260#comments</comments>
		<pubDate>Wed, 22 Apr 2009 09:56:24 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=260</guid>
		<description><![CDATA[The last weekend, I was in Rapperswil (Switzerland) for a quiet special event. There, the &#8220;Swiss Cyber Storm II&#8221; took place, organized by Compass Security. The SCSII is a hacking wargame contest, where hackers, IT security specialists, computer scientists etc. try to solve security related tasks and get points for them. For example there was [...]]]></description>
			<content:encoded><![CDATA[<p>The last weekend, I was in Rapperswil (Switzerland) for a quiet special event. There, the &#8220;Swiss Cyber Storm II&#8221; took place, organized by <a href="http://www.csnc.ch/">Compass Security</a>. The SCSII is a hacking wargame contest, where hackers, IT security specialists, computer scientists etc. try to solve security related tasks and get points for them. For example there was a crypto attack on Lsrunase.exe, JavaScript Malware analysis, ORACLE DB hacking, DECT sniffing and much more. It was a two day event but the second day wasn&#8217;t as productive as on the first. Anyway, I was quiet successful <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  At the end of the first day, I was on the 1. rank from about 150 people participating. On the 2. and 3. ranks was a team (CrypTom and allotria) so I decided to also form a team for the  second day and my team-partner was Baboo, who&#8217;s also a student at the Bern University of Applied Sciences. At the end we made the 2. rank which I would say is a really good result <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks a lot at this point to <a href="http://www.csnc.ch/">Compass Security</a> for the great event.</p>
<p>Here you&#8217;ll see the final ranking:<br />
<a href="http://www.disenchant.ch/blog/wp-content/uploads/2009/04/scs2_final_ranking.jpg"><img src="http://www.disenchant.ch/blog/wp-content/uploads/2009/04/scs2_final_ranking-300x175.jpg" alt="scs2_final_ranking" title="scs2_final_ranking" width="300" height="175" class="aligncenter size-medium wp-image-261" /></a></p>
<p>PS: Baboo and me had to create a new user called Disenchant_and_Baboo for the second day. As you can see, my user of the first day (Disenchant) is at the end of the second day still on rank 11 <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/swiss-cyber-storm-ii/260/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSWD &#8211; Certified Secure Web Developer</title>
		<link>http://www.disenchant.ch/blog/cswd-certified-secure-web-developer/251</link>
		<comments>http://www.disenchant.ch/blog/cswd-certified-secure-web-developer/251#comments</comments>
		<pubDate>Sun, 08 Mar 2009 10:20:07 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=251</guid>
		<description><![CDATA[Too long ago, I wrote a posting about Certified Secure Web (CSW) and announced to post more information on the specific certifications CSWD and CSWT. Because of the official web site is now also available in English it doesn&#8217;t make sense to copy&#038;paste it into my blog. You&#8217;ll find it at https://www.certifiedsecureweb.com/.
If there are any [...]]]></description>
			<content:encoded><![CDATA[<p>Too long ago, I wrote a posting about Certified Secure Web (CSW) and announced to post more information on the specific certifications CSWD and CSWT. Because of the official web site is now also available in English it doesn&#8217;t make sense to copy&#038;paste it into my blog. You&#8217;ll find it at <a href="https://www.certifiedsecureweb.com/">https://www.certifiedsecureweb.com/</a>.</p>
<p>If there are any questions about CSW, don&#8217;t hesitate to ask <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/cswd-certified-secure-web-developer/251/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Certified Secure Web</title>
		<link>http://www.disenchant.ch/blog/certified-secure-web/233</link>
		<comments>http://www.disenchant.ch/blog/certified-secure-web/233#comments</comments>
		<pubDate>Thu, 25 Dec 2008 19:29:21 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=233</guid>
		<description><![CDATA[Hi everyone out there, I know that it was a long time since I wrote my last blog posting but as most of you know, time is always rare. Anyway, I&#8217;ll try to write more in the feature, especially because there is really stuff, I think it&#8217;s worth to write about. So today I&#8217;d like [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone out there, I know that it was a long time since I wrote my last blog posting but as most of you know, time is always rare. Anyway, I&#8217;ll try to write more in the feature, especially because there is really stuff, I think it&#8217;s worth to write about. So today I&#8217;d like to talk about one big project, I was involved during about the last year at my workplace at <a href="http://www.dreamlab.net/">Dreamlab Technologies</a>, it&#8217;s the CSW certification.</p>
<p>You might ask yourself now: What the hell is CSW? CSW is short for <em>Certified Secure Web</em>, which is a security certification framework for the web. Actually we&#8217;ve got two certification types, the CSWT where T is short for Technology which means certification of web applications and we&#8217;ve got also a CSWD, which&#8217;s thought to stand for Developers. Before I go more into more details, I have to say that the CSW certification framework is thought to be open and not just for Dreamlab Technologies. We&#8217;re only a part of the CSW, the real certification is done by an independent party which is in our case a backend, built of educational organizations like for example universities, combined with partners like us. So this is not just poor advertising, we&#8217;re really looking for people/companies who&#8217;re interested in this all over the world.</p>
<p>Normally I would say, go to <a href="https://www.certifiedsecureweb.com/">https://www.certifiedsecureweb.com/</a>, where you can find all the information you need but unfortunately, the site is still only available in German, even if the English version is afaik ready.</p>
<p>So, what is CSW: &#8220;Certified Secure Web is an initiative to increase the overall security of web applications and also to provide a certification for Technology (Applications) and Developers.&#8221; (A free translation of the text on the CSW website, from German into English). It&#8217;s based on the <a href="http://www.osstmm.org/">OSSTMM</a> by ISECOM, the Threat Classification of the <a href="http://www.webappsec.org/">WASC</a> and on different resources, provided by the <a href="http://www.owasp.org/">OWASP</a>. With these different resources we think, that we can really provide a certification, which is worth the paper it&#8217;s printed on, even if we know that also the CSW certification can&#8217;t be perfect at all. Something which is also special on CSW is, that we don&#8217;t want to say that an application is secure and &#8220;hacker safe&#8221; (oops, sorry guys <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) but we would like to certify a security baseline for web applications and help companies getting a more secure application.</p>
<p>I could go on with this for hours but I think it&#8217;s better to write my next two postings directly on CSWT and CSWD because it will say much more on what we&#8217;d like to achieve and in which way.</p>
<p>For specific questions or if you&#8217;d like to get involved, please just contact me or leave a comment <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>&#8230; and of course merry Christmas and a happy new year <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/certified-secure-web/233/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve got a backlink from example.com &#8211; RFC 2606</title>
		<link>http://www.disenchant.ch/blog/ive-got-a-backlink-from-examplecom-rfc-2606/228</link>
		<comments>http://www.disenchant.ch/blog/ive-got-a-backlink-from-examplecom-rfc-2606/228#comments</comments>
		<pubDate>Fri, 24 Oct 2008 04:00:20 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=228</guid>
		<description><![CDATA[Many of my readers will know, that example.com, example.net and example.org are reserved for use in documentation, according to RFC 2606. If you surf to any of these sites, there will be just the same information I wrote before and also a link to the RFC 2606. So it&#8217;s quiet interesting, why according to my [...]]]></description>
			<content:encoded><![CDATA[<p>Many of my readers will know, that example.com, example.net and example.org are reserved for use in documentation, according to <a href="http://www.rfc-editor.org/rfc/rfc2606.txt">RFC 2606</a>. If you surf to any of these sites, there will be just the same information I wrote before and also a link to the RFC 2606. So it&#8217;s quiet interesting, why according to my statistics, example.com has a link on it, pointing to my website. I don&#8217;t no why this happened but it&#8217;s quiet interesting an if somebody can tell me what happened, I&#8217;m glad to know.</p>
<p>Here&#8217;s a proof (even if it only a line of text <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ):</p>
<p><a href="http://www.disenchant.ch/blog/wp-content/uploads/2008/10/linkexamplecom.jpg"><img src="http://www.disenchant.ch/blog/wp-content/uploads/2008/10/linkexamplecom.jpg" alt="" title="linkexamplecom" width="500" height="140" class="aligncenter size-full wp-image-229" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/ive-got-a-backlink-from-examplecom-rfc-2606/228/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>hackIt.js &#8211; A hidden Phishing Method</title>
		<link>http://www.disenchant.ch/blog/hackitjs-a-hidden-phishing-method/215</link>
		<comments>http://www.disenchant.ch/blog/hackitjs-a-hidden-phishing-method/215#comments</comments>
		<pubDate>Tue, 21 Oct 2008 20:22:48 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=215</guid>
		<description><![CDATA[It&#8217;s much later than I wanted to post this but finally here is my demonstration I&#8217;ve done for the Security-Zone 2008. Because there are so much resources about XSS and SQL Injections out there already, this posting is just about the hidden phishing method.
How it works:

Attacker needs a XSS vulnerability at example.com
Configuration of the hackIt.js [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s much later than I wanted to post this but finally here is my demonstration I&#8217;ve done for the Security-Zone 2008. Because there are so much resources about XSS and SQL Injections out there already, this posting is just about the hidden phishing method.</p>
<p>How it works:</p>
<ol>
<li>Attacker needs a XSS vulnerability at example.com</li>
<li>Configuration of the hackIt.js and include it to example.com by inserting it through a script-Tag</li>
<li>hackIt.js knows because of it&#8217;s configuration where the login page of example.com is</li>
<li>The script replaces the content of the infected page at example.com with a copy of the login page which will be loaded through a XML HTTP Request</li>
<li>hackIt.js will automatically find the login form and it&#8217;s input fields in &#8220;faked&#8221; login page</li>
<li>The submit button of the login form will become a normal button without it&#8217;s submit functionality but it will now have a onclick-function</li>
<li>As soon as the user clicks on the submit button to login, an image will become dynamically added to the DOM tree, which points to a server side script at evil.com, including the values of the login fields as attributes.</li>
<li>Because of as soon as an image becomes loaded, a HTTP GET request will be sent to the image&#8217;s location, the attacked user&#8217;s login credentials will be sent to evil.com in cleartext, where an attacker can now store it</li>
<li>Last but not least, the hackIt.js normally submits the login form to it&#8217;s originally thought location.</li>
<li>If the user has no Proxy or other tamper mechanism in place, he/she will never find out, that the login credentials have been sent to evil.com</li>
</ol>
<p>I know it sounds quiet complex but it&#8217;s really easy if you get the point. If there are any questions, I&#8217;m glad to answer these as a comment or in an email <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Because of I&#8217;m not sure if it&#8217;s a good idea to post the source code (even if it&#8217;s really easy to write it on your own), I decided to not make it available through my blog but if you&#8217;d like to receive the code, just let me know directly. Anyway, below you can watch a small video which demonstrates the attack, performed by the script.</p>
<p><img src="http://www.disenchant.ch/blog/wp-content/plugins/flash-video-player/default_video_player.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/hackitjs-a-hidden-phishing-method/215/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Security-Zone 2008 &#8211; Let&#8217;s call it a Success</title>
		<link>http://www.disenchant.ch/blog/security-zone-2008-lets-call-it-a-success/204</link>
		<comments>http://www.disenchant.ch/blog/security-zone-2008-lets-call-it-a-success/204#comments</comments>
		<pubDate>Wed, 01 Oct 2008 17:58:09 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[OWASP]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=204</guid>
		<description><![CDATA[The Security-Zone is as far as I know, the most important and biggest security event in Switzerland and like last year I was there to present some stuff. Also like the last time, I wasn&#8217;t alone, there where Pascal Mittner from Astalavista IT Engineering and Pascal C. Kocher from Defcon Switzerland (I&#8217;ll write something about [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.security-zone.info/">Security-Zone</a> is as far as I know, the most important and biggest security event in Switzerland and like last year I was there to present some stuff. Also like the last time, I wasn&#8217;t alone, there where Pascal Mittner from <a href="http://www.astalavista.ch/">Astalavista IT Engineering</a> and Pascal C. Kocher from Defcon Switzerland (I&#8217;ll write something about this very soon <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). It was the first time, that there was a workshop at a Security-Zone and so we where quiet exited but we also thought, that this would be easy stuff. First, a 20min slot for each of us three to just talk and afterwards, about three hours of really presenting stuff and also let people getting some hand-on experience. Unfortunately, the first part about how to write an exploit for an FTP server by Pascal C. Kocher failed because something I still don&#8217;t know about. There where just a few lines of Perl code but for any reason, the final exploit didn&#8217;t work. Also the last part about using a security management system to identify and track risks on your systems failed because of the participants weren&#8217;t able to test the virtual machines Pascal Mittner brought to the security zone. Even there we&#8217;re not sure what was the problem but we think it could have been a problem of by switch or some crappy Ethernet wires. Anyway, this means, that my part was the only one, that worked without any problems (thanks at this point to the <a href="http://www.venganza.org/">FSM</a> <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ). I was first presenting a simple XSS but not only the standard alert(123) no, I wanted to show the attending people, that you can do much more an so I decided to show a website defacement. Afterwards, I bypassed a login mechanism by a standard SQL Injection and last but not least, I presented something which was quiet a bit complicated (a combination of XSS and CSRF) but I&#8217;ll write another blog posting (hopefully) during the next days about this demo.</p>
<p>For me it was good to see once more, that still many people are interested in the basic stuff and it makes me very happy if I&#8217;ve got the chance just like at the Security-Zone to help people to understand, what web application security is about and why it&#8217;s important.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/security-zone-2008-lets-call-it-a-success/204/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Counter-Terrorism advertising campaign launched</title>
		<link>http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171</link>
		<comments>http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171#comments</comments>
		<pubDate>Fri, 26 Sep 2008 07:20:45 +0000</pubDate>
		<dc:creator>Disenchant</dc:creator>
				<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.disenchant.ch/blog/?p=171</guid>
		<description><![CDATA[I totally forgot to click publish for this blog posting but better now then never  
The Metropolitan Police Service launched a Counter-Terrorism campaign and unfortunately it seems to be real and not just a joke.
The following is copied from here:

The five-week campaign asks members of the public to report any suspicious behaviour in confidence [...]]]></description>
			<content:encoded><![CDATA[<p>I totally forgot to click publish for this blog posting but better now then never <img src='http://www.disenchant.ch/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The Metropolitan Police Service launched a Counter-Terrorism campaign and unfortunately it seems to be real and not just a joke.</p>
<p>The following is copied from <a href="http://www.met.police.uk/campaigns/campaign_ct_2008.htm">here</a>:</p>
<blockquote><p>
The five-week campaign asks members of the public to report any suspicious behaviour in confidence to the Anti-Terrorist Hotline on 0800 789 321.</p>
<p>Press advertising will appear in London&#8217;s major newspapers and on the City&#8217;s main commercial radio stations.</p>
<p>Camera posterThe press ads seek to raise awareness of some of the items/activities which may be needed by, or be of use to, terrorists. It asks the public to consider whether they have seen any activity connected with them which may have made them suspicious.</p>
<p>Radio advertising has been devised to complement the press ads and features an individual thinking out loud about concerns she has around some suspicious behaviour. She is reassured that she should call the confidential Anti-Terrorist Hotline on 0800 789 321 and that any information will be considered by specialist officers.</p>
<p>Advertising will also run in the Greater Manchester, West Yorkshire and the West Midlands.
</p></blockquote>

<a href='http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171/ct_camera_2008' title='ct_camera_2008'><img width="150" height="150" src="http://www.disenchant.ch/blog/wp-content/uploads/2008/09/ct_camera_2008-150x150.jpg" class="attachment-thumbnail" alt="" title="ct_camera_2008" /></a>
<a href='http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171/ct_door_2008' title='ct_door_2008'><img width="150" height="150" src="http://www.disenchant.ch/blog/wp-content/uploads/2008/09/ct_door_2008-150x150.jpg" class="attachment-thumbnail" alt="" title="ct_door_2008" /></a>
<a href='http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171/ct_phone_2008' title='ct_phone_2008'><img width="150" height="150" src="http://www.disenchant.ch/blog/wp-content/uploads/2008/09/ct_phone_2008-150x150.jpg" class="attachment-thumbnail" alt="" title="ct_phone_2008" /></a>

<p>At least there is already an alternative poster:</p>
<p><a href="http://www.disenchant.ch/blog/wp-content/uploads/2008/09/ct_other_2008.jpg"><img src="http://www.disenchant.ch/blog/wp-content/uploads/2008/09/ct_other_2008-238x300.jpg" alt="" title="ct_other_2008" width="238" height="300" class="alignnone size-medium wp-image-179" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.disenchant.ch/blog/counter-terrorism-advertising-campaign-launched/171/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
