<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Cyber Issues EU</title>
        <link>http://cyberissues.eu/</link>
        <description>This site holds publications, comments and links for cyberissues, cyberlaw, e-commerce, cybercrime, online privacy and cyber-rights. Please browse through and comment where appropriate.</description>
        <language>en-us</language>
        <copyright>Copyright 2012</copyright>
        <lastBuildDate>Wed, 28 Mar 2012 17:57:37 +0000</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>MySQL Dump from the Linux Command line</title>
            <description><![CDATA[<p>Sometimes you would like a quick and easy way to export all MySQL databases from the command line to avoid all of the hassles of web interfaces and an array of tools.</p>

<p>From the command line you can just run this:</p>

<p>mysqldump &#8212;user=<em>mysqlusername</em> &#8212;password=<em>yourpassword</em> &#8212;all-databases > filename.sql</p>

<p>Easy.</p>

<p><em>Remember - this with everything on this site is for reference only and I&#8217;m not responsible for you etc&#8230;</em></p>
]]></description>
            <link>http://cyberissues.eu/2012/03/mysql-dump-from-the-linux-comm.html</link>
            <guid>http://cyberissues.eu/2012/03/mysql-dump-from-the-linux-comm.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Beginners</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Web Server</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">commands</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">mysql</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">mysqldump</category>
            
            <pubDate>Wed, 28 Mar 2012 17:57:37 +0000</pubDate>
        </item>
        
        <item>
            <title>Count Lines in a file from Linux Command Line</title>
            <description><![CDATA[<p>Sometimes you have a csv that is massive on your server and all you want to know is the number of rows without crashing your PC&#8217;s spreadsheet package. Try this:</p>

<p>wc -l <em>filename</em></p>

<p>This will output the number of lines of the file.</p>

<p>Try <em>man wc</em> for more things you can do with this simple and useful command.</p>
]]></description>
            <link>http://cyberissues.eu/2012/03/count-lines-in-a-file-from-lin.html</link>
            <guid>http://cyberissues.eu/2012/03/count-lines-in-a-file-from-lin.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Linux</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">commands</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
            <pubDate>Tue, 27 Mar 2012 15:53:36 +0000</pubDate>
        </item>
        
        <item>
            <title>Spamassassin stops working after Plesk upgrade [SOLVED]</title>
            <description><![CDATA[<h1>Symptoms</h1>

<ul>
<li>Increase in spam after Plesk upgrade</li>
<li>psa-spamassassin installed and service is running</li>
<li>extended mail headers don&#8217;t have any reference to spam scores</li>
</ul>

<p>Others have reported that it works for some mailboxes and not others. Also issues surrounding ignoring white/black lists</p>

<h1>Tested Scenario</h1>

<ul>
<li>Upgrade from 9.01 -> 9.54</li>
</ul>

<h1>Fixes</h1>

<ul>
<li>In the control panel: Server -> Spam filter Settings -> uncheck &#8220;Apply individual settings to spam filtering&#8221;</li>
<li>Save</li>
<li>Send a test email and see if the spam scores are now in the extended headers</li>
</ul>

<p>I didn&#8217;t come across this fix when attempting to find a solution but it seams to work.</p>

<p>This is a known bug (apparently). Many seem to try upgrading to v10 to solve, but others have reported that it was this upgrade that has resulted in the problem occuring.</p>
]]></description>
            <link>http://cyberissues.eu/2011/05/spamassassin-stops-working-aft.html</link>
            <guid>http://cyberissues.eu/2011/05/spamassassin-stops-working-aft.html</guid>
            
            
            <pubDate>Sun, 08 May 2011 22:19:21 +0000</pubDate>
        </item>
        
        <item>
            <title>Asterisk Configuration Settings for outgoing calls - UK BT ISDN2e BRI</title>
            <description><![CDATA[<h3>The scenario:</h3>

<ul>
<li>You&#8217;re using Asterisk / FreePBX / Elastix / Trixbox</li>
<li>You&#8217;re attaching to UK BT BRI (ISDN2e) lines</li>
<li>Incoming BRI calls work</li>
<li>Outgoing BRI calls don&#8217;t work</li>
<li>When dialling using an outbound route you may hear, &#8220;All circuits are busy now&#8221; (Elastix you will)</li>
</ul>

<h3>You may see errors such as:</h3>

<ul>
<li>Ext: 1  Cause: Unallocated (unassigned) number (1), class = Normal Event (0) ]</li>
<li>&#8220;TRUNK Dial failed due to CHANUNAVAIL (hangupcause: 1) - failing through to other trunks&#8221;) in new stack</li>
</ul>

<h3>Potential Resolution:</h3>

<p>Add to your dhadi-channels.conf the following for each span (we use Xorcom&#8217;s Astribank for BRI):</p>

<p>pridialplan=unknown</p>

<p>prilocaldialplan=unknown</p>

<p>Then just gracefully restart asterisk. To wait for an empty call volume, you can use this command in the asterisk terminal:</p>

<p>restart when convenient</p>
]]></description>
            <link>http://cyberissues.eu/2011/02/asterisk-configuration-setting.html</link>
            <guid>http://cyberissues.eu/2011/02/asterisk-configuration-setting.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Telephony</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">asterisk</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">astribank</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">bt</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">elastix</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">isdn</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">server admin</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">telephony</category>
            
            <pubDate>Sun, 13 Feb 2011 20:12:20 +0000</pubDate>
        </item>
        
        <item>
            <title>Find a value or string in all files</title>
            <description><![CDATA[<p>This useful command will find all files where a given string, word, value etc is contained within the file. It will search recursively through all directories from where you are presently within the file system:</p>

<p>find RANGE -iname &#8216;RULES&#8217; | xargs grep &#8216;STRING&#8217; -GREP_ARGUMENTS</p>

<ul>
<li>RANGE = where you are searching. Using a . (full stop) will search all from where you presently are</li>
<li>RULES = elements of a filename. For instance, &#8216;*.doc&#8217; will only look through files ending in .doc - * is used as a wildcard</li>
<li>STRING = the needle in the haystack that we are looking for </li>
</ul>

<p><strong>Typical Grep Arguments Used</strong></p>

<ul>
<li>-s is the same as &#8212;no-messages. From man grep: &#8220;Suppress error messages about nonexistent or  unreadable files.&#8221;</li>
<li>-l, &#8212;files-with-matches. From man grep: &#8220;Suppress normal output; instead  print the name of each input file from which output would normally have  been printed. The scanning will stop on the first match.&#8221; Basically this just outputs the filename.</li>
<li>See man grep for more</li>
</ul>

<p><em>The Final Result Example (I tend to use this a lot):</em></p>

<p><strong>find . -iname &#8216;*php&#8217; | xargs grep &#8216;needle&#8217; -sl</strong></p>

<p>This looks for the value &#8216;needle&#8217; in php files only and will only display the file names.</p>
]]></description>
            <link>http://cyberissues.eu/2011/01/find-a-value-or-string-in-all.html</link>
            <guid>http://cyberissues.eu/2011/01/find-a-value-or-string-in-all.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Beginners</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Linux</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">development</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">find</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">grep</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">needle in a haystack</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">server admin</category>
            
            <pubDate>Mon, 03 Jan 2011 13:50:44 +0000</pubDate>
        </item>
        
        <item>
            <title>Adding a Date to a Tar file in Linux</title>
            <description><![CDATA[<p>You may want to add the day&#8217;s date to a backup file, especially if you are running it as a cron job. The following code example will Gzip Tar the files into a compressed archive with the date inserted:</p>

<p>tar czvf /backups/backup-<code>date +%y%m%d</code>.tgz /files-to-backup/.</p>

<p>where:</p>

<p>%d = day (2 digit)
%m = month (2 digit)
%y = year (2 digit)</p>
]]></description>
            <link>http://cyberissues.eu/2010/11/adding-a-date-to-a-tar-file-in.html</link>
            <guid>http://cyberissues.eu/2010/11/adding-a-date-to-a-tar-file-in.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Linux</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">cron</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">date</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">gzip</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">tar</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">tgz</category>
            
            <pubDate>Thu, 18 Nov 2010 13:36:44 +0000</pubDate>
        </item>
        
        <item>
            <title>BT ISDN 2e Boxes - BRI</title>
            <description><![CDATA[<p>Here are a few notes about BT ISDN 2e (BRI) lines that when I was first learning about phone systems configuration could really have done with being laid out. I hope it helps somebody in the UK (I&#8217;m assuming that this kit isn&#8217;t available in its exact form elsewhere).</p>

<ul>
<li>There are two types of ISDN line offered by BT: BRI and PRI (ISDN 30).</li>
<li>BT&#8217;s ISDN 2e is BRI</li>
<li>This is the same standard known as EuroISDN</li>
<li>Each box on the wall supports two channels (lines)</li>
<li>There are two RJ-45 connectors in the bottom of the present units. These exist so that you can plug two handsets directly into the box. (These are not standard PSTN handsets. The jacks are different - don&#8217;t try and force them!)</li>
<li><strong>Each RJ45 socket carries both lines</strong> i.e. you only need to plug in one of them for a PBX</li>
<li>The type of cable required to fix in here is a standard Cat5 cable (or above).</li>
</ul>
]]></description>
            <link>http://cyberissues.eu/2010/10/bt-isdn-2e-boxes-bri.html</link>
            <guid>http://cyberissues.eu/2010/10/bt-isdn-2e-boxes-bri.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Beginners</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Telephony</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">bt</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">isdn</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">telephony</category>
            
            <pubDate>Sun, 24 Oct 2010 23:34:51 +0000</pubDate>
        </item>
        
        <item>
            <title>Restarting Apache2 on Linux</title>
            <description><![CDATA[<p>Just a shot note as this is something that I&#8217;ve been asked about recently. Hopefully the distinction I make below will help a beginner somewhere!</p>

<p>To restart apache from the command line, the command is (typically):</p>

<p>sudo /etc/init.d/apache2 restart</p>

<p>There are some errors that you may get whilst running various commands. Below are a list of commands, associated errors and their explanations;</p>

<p>/etc/init.d/apache2 restart<br />
<em>You may get an error for not using &#8216;sudo&#8217;</em></p>

<p>sudo /etc/init.d/apache2 restart<br />
Not in sudoers file<br />
<em>Your user must have appropriate sudo priveledges</em></p>

<p>apache2 restart<br />
<em>or</em> sudo apache2 restart<br />
Usage: apache2 [-D name] [-d directory] [-f file]<br />
               [-C &#8220;directive&#8221;] [-c &#8220;directive&#8221;]<br />
               &#8230;etc&#8230;<br />
<em>Typically this error will occur if you have navigated to the /etc/init.d directory. *This will not work!*</em></p>

<p>apache2 -k restart<br />
apache2: bad user name ${APACHE<em>RUN</em>USER}<br />
<em>You don&#8217;t need to put the -k in. Also see above if you are trying this having navigated to the /etc/init.d directory</em></p>
]]></description>
            <link>http://cyberissues.eu/2010/10/restarting-apache2-on-linux.html</link>
            <guid>http://cyberissues.eu/2010/10/restarting-apache2-on-linux.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Beginners</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Linux</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Web Server</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">apache</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">apache2</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">beginners guide</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">commands</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">linux</category>
            
            <pubDate>Sun, 24 Oct 2010 19:48:07 +0000</pubDate>
        </item>
        
        <item>
            <title>Facebook Privacy Vulnerability</title>
            <description><![CDATA[<p>Today I found a Facebook privacy vulnerability affecting dates of birth. The scenario:</p>

<ul>
<li>The Facebook user hides their date of birth from view</li>
<li>When today&#8217;s birthdays are viewed, those who choose to publish their year of birth have their age displayed. Those who have opted to hide their year of birth in their privacy settings do not have their age published. ( http://www.facebook.com/?sk=bd )</li>
</ul>

<p>However&#8230;</p>

<ul>
<li>When viewed via the Facebook mobile site, their age is published ( http://m.facebook.com/birthdays.php )</li>
</ul>

<p>Obviously from this, the individual&#8217;s date of birth can be easily calculated.</p>

<p>UPDATE: I have of course notified Facebook of this privacy flaw.</p>
]]></description>
            <link>http://cyberissues.eu/2010/10/facebook-privacy-vulnerability.html</link>
            <guid>http://cyberissues.eu/2010/10/facebook-privacy-vulnerability.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Privacy</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Vulnerability</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">birthday</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">facebook</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">fail</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">privacy</category>
            
            <pubDate>Fri, 08 Oct 2010 21:21:07 +0000</pubDate>
        </item>
        
        <item>
            <title>Google bosses convicted in Italy for User Content</title>
            <description><![CDATA[<p>In a bizarre display of Italian privacy protection, Google bosses have been found guilty for infringing the privacy of an individual who was attacked, videoed and shared online using the Google Video Service. <a href="http://news.bbc.co.uk/1/hi/technology/8533695.stm">BBC News Article Here</a>.</p>

<p>Italy of course have now an interesting set of cases making various parts of &#8216;normal&#8217; web activity illegal. Remember when then made all blogs illegal as they amounted to <a href="http://www.theregister.co.uk/2008/09/26/italian_law_kills_blog/">&#8220;clandestine&#8221; press</a>?</p>

<p>So - what are the options now for ISPs? The technological approach could mean the masking of faces from videos automatically, using similar face recognition technology employed in Google Street View. Costly and only for the big firms. Option 2, pull out of Italy; again costly but easiest. Thirdly appeal.</p>

<p>This is the best option. As far as I can determine (with my limited Italian - awaiting a good translation of the judgement to land in my inbox), the judgement goes against the <a href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=CELEX:32000L0031:EN:HTML">European Directive 2000/31/EC of the European Parliament and of the Council of 8 June 2000 on certain legal aspects of information society services, in particular electronic commerce, in the Internal Market (&#8216;Directive on electronic commerce&#8217;) </a> article which states that&#8230;</p>

<h2>Article 12</h2>

<p><strong>&#8220;Mere conduit&#8221;</strong></p>

<ol>
<li>Where an information society service is provided that consists of the transmission in a communication network of information provided by a recipient of the service, or the provision of access to a communication network, Member States shall ensure that the service provider is not liable for the information transmitted, on condition that the provider:</li>
</ol>

<p>(a) does not initiate the transmission;</p>

<p>(b) does not select the receiver of the transmission; and</p>

<p>(c) does not select or modify the information contained in the transmission.</p>

<ol>
<li><p>The acts of transmission and of provision of access referred to in paragraph 1 include the automatic, intermediate and transient storage of the information transmitted in so far as this takes place for the sole purpose of carrying out the transmission in the communication network, and provided that the information is not stored for any period longer than is reasonably necessary for the transmission.</p></li>
<li><p>This Article shall not affect the possibility for a court or administrative authority, in accordance with Member States&#8217; legal systems, of requiring the service provider to terminate or prevent an infringement.</p></li>
</ol>

<p><strong>NB</strong> <em>This is implemented in the UK as the <a href="http://195.99.1.70/si/si2002/20022013.htm">The Electronic Commerce (EC Directive) Regulations 2002</a>.</em></p>
]]></description>
            <link>http://cyberissues.eu/2010/02/google-bosses-convicted-in-ita.html</link>
            <guid>http://cyberissues.eu/2010/02/google-bosses-convicted-in-ita.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Comment</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyberlaw</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Privacy</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">european</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">google</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">italy</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">mere conduit</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">privacy</category>
            
            <pubDate>Wed, 24 Feb 2010 20:57:20 +0000</pubDate>
        </item>
        
        <item>
            <title>IIS7 + Zend Core PHP 5 + Windows Server 2008 x64</title>
            <description><![CDATA[<p>We had this problem, so I thought I would publish the solution as I could not find it anywhere else on the internet!</p>

<p>If you receive a 500 Error with Error Code 0x800700c1 for zendenabler.php:</p>

<ol>
<li>Go to IIS</li>
<li>Handler Mappings</li>
<li>Find the .php Zend entry</li>
<li>Change the file from x64 to the &#8216;non&#8217; x64 version
5 .Ok</li>
<li>Restart IIS</li>
</ol>

<p>That will now work!</p>

<p>Incidentally if you also have WSUS enabled and get server error 500.16, you may need to disable a particular compression file which will then allow 32bit apps to run.</p>

<p>Hope this helps!</p>
]]></description>
            <link>http://cyberissues.eu/2009/09/iis7-zend-core-php-5-windows-s.html</link>
            <guid>http://cyberissues.eu/2009/09/iis7-zend-core-php-5-windows-s.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Technical: Web Server</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">iis</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">iis7</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">php</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">zend</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">zend core</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">zendcore</category>
            
            <pubDate>Wed, 30 Sep 2009 11:10:22 +0000</pubDate>
        </item>
        
        <item>
            <title>Online Privacy &amp; Education</title>
            <description><![CDATA[<p>I do not post that I am going on holiday to any social networking site. Nor do I stand on my rooftop and shout it through a loud speaker there either. The second statement sounds obvious, but @EnglishFolkFan is quite right - people freely do this on the internet. This is far from &#8216;digital gumption&#8217;, more a lack of education.</p>

<p>The firms that have made the internet what it is today, allowing users to express themselves, do so in the knowledge that they will one day be able to earn from people&#8217;s disclosures through trending analysis and the like. Why educate to change behaviour when it will affect your bottom line? The privacy groups stance has typically been to lobby government and corporations, where the more effective solution may be to petition the user.</p>

<p>Social networking sites may feel much of this burden of responsibility as it is through their services that such information is relayed. However, with the controversy over Facebook&#8217;s agreements this is unlikely to happen soon. Besides&#8230;. any blogger can simply state all of this information wherever they are! Right? Wrong. Sort of.</p>

<p>This goes back to educating the user. If the user is educated, they won&#8217;t publish information. If they <em>are</em> educated, they may still publish the information if they feel &#8216;safe&#8217; in the online environment where they are sharing. This may again be argued as a failure of education. For example, a Facebook event is posted online, assuming that only friends and associated people will see it, and then the Police turn up. They saw it on Facebook as did potentially many delinquents. Now there presents a problem - too much suspicion in these social services and they become unusable; too little and disaster may ensue. The trick in online privacy is attaining the correct balance of usability and privacy where you trust the provider.</p>

<p>Of course, if you have a virus on your computer, all of this may be useless advice.</p>

<p><em>Posted in response to <a href="http://www.bbc.co.uk/blogs/digitalrevolution/2009/08/chris-anderson-on-free-and-pri.shtml">BBC Digital Revolution Blog</a></em></p>
]]></description>
            <link>http://cyberissues.eu/2009/08/online-privacy-education.html</link>
            <guid>http://cyberissues.eu/2009/08/online-privacy-education.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Privacy</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">education</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">privacy</category>
            
            <pubDate>Thu, 27 Aug 2009 14:51:28 +0000</pubDate>
        </item>
        
        <item>
            <title>Switching off the Web</title>
            <description><![CDATA[<p>If one is to take the narrow, technical definition, the ‘internet’ is a series of (essentially) peer-to-peer systems which communicate as defined by the TCP/IP protocol. So in this respect, as long as two or more systems are connected and not controlling, the internet exists. Assuming the broader definition of internet - the many layers and international free-flow of information and global access, it is therefore not unreasonable to assert that the internet (and web) as we perceive it could well be ‘switched off’ internationally. This may be achieved through denial of service attacks or cables being cut (the FLAG FEA, SMW4, and SMW3 lines as example last year http://bit.ly/r0O8). But more simply through political intervention.</p>

<p>The example which I cite is Turkey, where approximately 2,000 websites have now been blocked through the courts. This is achieved by banning ISPs from delivering certain content. And let us not forget the &#8220;Great Firewall of China&#8221;. But what many people don’t realise is that the UK’s IWF provides a list of websites which are voluntarily opted in to by most ISPs. Similar services exist in other countries too. This societal desire to restrict content to users enforces the views of a few onto the many. Is this merely switching people off, or is it switching off nations to content?</p>

<p>Whilst China seems to be relaxing internet access controls, many (if not most) are increasing controls to access. We don’t live in a world of free information and access, we live in one which can be restricted nationally or completely switched off by ISPs, Governments or anyone with a good hacksaw.</p>

<p><em>Prepared in response to <a href="http://www.bbc.co.uk/blogs/digitalrevolution/2009/08*/why-cant-we-just-switch-it-off.shtml">BBC Digital Revolution Post</a></em></p>
]]></description>
            <link>http://cyberissues.eu/2009/08/switching-off-the-web.html</link>
            <guid>http://cyberissues.eu/2009/08/switching-off-the-web.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyberlaw</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">control</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">government</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">internet</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">turkey</category>
            
            <pubDate>Thu, 27 Aug 2009 14:12:30 +0000</pubDate>
        </item>
        
        <item>
            <title>BBC Reporting on US man who stole 130m card numbers</title>
            <description><![CDATA[<p>Quick note on the <a href="http://news.bbc.co.uk/1/hi/world/americas/8206305.stm">BBC News article, &#8220;US man &#8216;stole 130m card numbers&#8217;&#8221;</a></p>

<p>This article outlines how relaxed US institutions are when it comes to security. It will be interesting to find out how much social engineering was employed in gaining information. But to the point of this comment, ignore all paraphrasing in the article which concerns how the attack was carried out. The author should read some of the following articles:</p>

<p><a href="http://en.wikipedia.org/wiki/SQL_injection">Wikipedia Entry</a></p>

<p><a href="http://unixwiz.net/techtips/sql-injection.html">For the code savvy who want to see worked examples</a></p>

<p><a href="http://www1.cs.columbia.edu/~locasto/projects/candidacy/papers/boyd2004sqlrand.pdf">Preventing SQL attacks - Paper from Univ. Columbia</a></p>

<p>(NB: We don&#8217;t condone hacking!)</p>
]]></description>
            <link>http://cyberissues.eu/2009/08/bbc-reporting-on-us-man-who-st.html</link>
            <guid>http://cyberissues.eu/2009/08/bbc-reporting-on-us-man-who-st.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Comment</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cybercrime</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyberlaw</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">fraud</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">sql injection</category>
            
            <pubDate>Tue, 18 Aug 2009 12:33:01 +0000</pubDate>
        </item>
        
        <item>
            <title>The rise of the eNation: Is eBay a Nation State?</title>
            <description><![CDATA[<p>In response to the @BBCDigRev <a href="http://www.bbc.co.uk/blogs/digitalrevolution/2009/08/the-rise-of-the-enation.shtml">BBC Digital Revolution blog post</a>, &#8220;The rise of the eNation&#8221;, cyberissues.eu has posted the following response;</p>

<p>There are many arguments against the view that eBay has become a nation state.</p>

<p>Firstly, the communications platform, Skype is governed by the jurisdiction of each nation under which its various legitimate entities are registered. In the UK, Skype Limited is registered in Luxembourg and so are bound by the domestic courts. Furthermore, if the assets are distributed globally, the nation which houses the controlling firm (i.e. eBay US) has a wide span of control for controlling and taxing the activities of its subsidiaries. Whilst the firm can exert pressure on some nations by way of avoiding or changing regulation, it can only do so within a certain framework, typically akin to the regulations of the ‘top’ host nation. Where eBay has its main advantage is that it can, in theory, change its ‘top’ host nation to a ‘friendly’ jurisdiction (think tax breaks from Eastern European countries after the fall of the command economies).</p>

<p>However, for Paypal to operate in each jurisdiction, it must comply with local regulations, hence why there are various incarnations of Paypal worldwide. HMRC and others are right to be concerned, but it Paypal presents no more concern for legitimate or illegitimate business than other tax avoidance techniques. Merely the medium has changed. Of course in Europe, Paypal is a bank and is (again) registered in Luxembourg having formerly been registered in the UK. This jurisdiction choosing may have short term advantages, but in the long run are still constrained by the laws of nation states.</p>

<p>It should be noted that Paypal does not operate its own currency; accounts are linked to banks and the exchange rates are determined by the market. This is by no means similar to World of Warcraft banking.</p>

<p>And finally, the fostering of a community does not incur a nation state. It has been found time and again by Sociologists, Psychologists and Anthropologists that the differences within a society are far greater than the differences found between societies. It therefore makes sense that a close community of people all brought together through choice are from different places.</p>

<p>However, trans-national firms are brining a homogeneity toward the jurisdictional difficulties of the internet. Eventually, nations will be forced to operate in a similar fashion to one another. For instance in the UK, recent legislation (such as the Criminal Justice and Immigration Act 2008) is tending toward applying the onus on the consumer rather than the producer of materials. This allows the courts to prosecute domestic individuals where previously the foreign perpetrator would have gone unpunished. In an ever changing digital world, the battle for retaining hetrogeny between societies will be the difficult task, especially where firms such as eBay as attempting to impose their self-defined standards across the globe.</p>
]]></description>
            <link>http://cyberissues.eu/2009/08/the-rise-of-the-enation-is-eba.html</link>
            <guid>http://cyberissues.eu/2009/08/the-rise-of-the-enation-is-eba.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyber Issues</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cyberlaw</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">bbc</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">digital revolution</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">ebay</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">jurisdiction</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">paypal</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">skype</category>
            
            <pubDate>Thu, 06 Aug 2009 16:38:25 +0000</pubDate>
        </item>
        
    </channel>
</rss>

