<?xml version="1.0" encoding="utf-8" ?>

<?xml-stylesheet type="text/xsl" href="/templates/2k11/rss.xsl" media="screen" ?>
<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Daniel Lange's blog (Entries tagged as passwords)</title>
    <link>https://daniel-lange.com/</link>
    <description>agrep -pB IT /dev/life</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.6.0 - http://www.s9y.org/</generator>
    <pubDate>Sun, 09 Aug 2015 17:44:49 GMT</pubDate>

    <image>
    <url>//daniel-lange.com/uploads/Avatar_Blog_144_234.png</url>
    <title>RSS: Daniel Lange's blog - agrep -pB IT /dev/life</title>
    <link>https://daniel-lange.com/</link>
    <width>144</width>
    <height>234</height>
</image>

<item>
    <title>Generate an indexed list of passwords</title>
    <link>https://daniel-lange.com/archives/107-Generate-an-indexed-list-of-passwords.html</link>
            <category>Other</category>
    
    <comments>https://daniel-lange.com/archives/107-Generate-an-indexed-list-of-passwords.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=107</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=107</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;Generating an indexed list of passwords without complex perl or python:&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;pwgen &lt;span style=&quot;color: #660033;&quot;&gt;-y&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;20&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;30&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;nl&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-w&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-n&lt;/span&gt; rz &lt;span style=&quot;color: #660033;&quot;&gt;-s&lt;/span&gt; -&lt;/div&gt;

&lt;p&gt;&lt;em&gt;Explanation:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;pwgen: -y = complex passwords (including symbols) ; 20 = length of password; 30 = number of passwords to generate&lt;/p&gt;

&lt;p&gt;nl: -w 2 = zero pad to a width of two characters; -n rz = print right-justified; -s - = use dash as a separator&lt;/p&gt;

&lt;p&gt;&lt;!-- s9ymdb:616 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;394&quot; height=&quot;471&quot;  src=&quot;https://daniel-lange.com/uploads/entries/150809_generate_indexed_list_of_passwords.png&quot; title=&quot;nl ... old but golden&quot; alt=&quot;screenshot of pwgen | nl&quot; /&gt;&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 09 Aug 2015 17:31:58 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/107-guid.html</guid>
    <category>bash</category>
<category>passwords</category>
<category>security</category>
<category>shell</category>

</item>
<item>
    <title>Security by policy does not work</title>
    <link>https://daniel-lange.com/archives/86-Security-by-policy-does-not-work.html</link>
            <category>Management</category>
    
    <comments>https://daniel-lange.com/archives/86-Security-by-policy-does-not-work.html#comments</comments>
    <wfw:comment>https://daniel-lange.com/wfwcomment.php?cid=86</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>https://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=86</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;The laptop systems aboard the International Space Station (ISS) have been infected by computer viruses and worms &lt;a href=&quot;http://www.wired.com/threatlevel/2008/08/virus-infects-s/&quot; title=&quot;Wired: Virus Infects Space Station Laptops (Again)&quot;&gt;multiple times&lt;/a&gt;.
The &lt;a href=&quot;http://www.symantec.com/security_response/writeup.jsp?docid=2007-082706-1742-99&quot; title=&quot;Symantec virus database: W32.Gammima.AG information&quot;&gt;W32.Gammima.AG&lt;/a&gt; virus made it to space in July 2008. And it happily spread from laptop to laptop onboard the ISS.
The virus has been written to steal credentials for some common games. It is unknown how many of these were run in orbit. The latency would kill the experience for sure.&lt;/p&gt;

&lt;p&gt;I am sure there have been policies in place to prevent astronauts carrying personal soft- and hardware up to the ISS. Personal items must be explicitly applied for and will only be approved after severe scrutiny of each item. Even beyond the obvious security considerations, this is necessary as the launch weight needs to be calculated exactly.&lt;br /&gt;
NASA and Roscosmos both have very strict policies for their personnel and strict training to make sure they know and follow policy.
The group of astronauts primarily affected by the policy is very well known and counts a few dozen heads.&lt;/p&gt;

&lt;p&gt;Still at least one infected USB stick made it up to the ISS and could spread its malware. Other infections have happened and we can assume similar infection vectors.&lt;/p&gt;

&lt;p&gt;So the policy has proven unenforceable. It is broken. It is still correct per se. There is nothing wrong with prohibiting personal soft- and hardware in a high risk environment. So the policy stays in place. NASA still needed to make sure to rely much less on its effectiveness.&lt;/p&gt;

&lt;p&gt;Hence NASA did the only sane thing: Move from an unenforceable policy to a technically feasible solution, significantly reducing the security exposure. In May 2013 NASA &lt;a href=&quot;http://www.theinquirer.net/inquirer/news/2267703/nasa-migrates-iss-laptops-from-windows-to-linux&quot; title=&quot;The Inquirer: NASA migrates ISS laptops from Windows to Linux&quot;&gt;announced&lt;/a&gt; the ISS laptops are being migrated to Debian 6. Imagine how much pressure Microsoft must have put up to prevent such a technical decision due to the adverse marketing message it provides along the way. And still the engineers at NASA saw this as the best way forward.&lt;/p&gt;

&lt;p&gt;The take-away message here is: &lt;strong&gt;Security by policy does not work&lt;/strong&gt;.&lt;/p&gt;
 &lt;a class=&quot;block_level&quot; href=&quot;https://daniel-lange.com/archives/86-Security-by-policy-does-not-work.html#extended&quot;&gt;Continue reading &quot;Security by policy does not work&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 12 Nov 2013 15:00:00 +0000</pubDate>
    <guid isPermaLink="false">https://daniel-lange.com/archives/86-guid.html</guid>
    <category>nasa</category>
<category>passwords</category>
<category>policy</category>
<category>security</category>
<category>strategy</category>
<category>updated</category>
<category>viruses</category>

</item>

</channel>
</rss>
