<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Generate Random Passwords on the Command Line</title>
	<atom:link href="http://dancingpenguinsoflight.com/2007/07/generate-random-passwords-on-command/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingpenguinsoflight.com/2007/07/generate-random-passwords-on-command/</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 14:28:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Improved random password generator script &#124; tail -f findings.out</title>
		<link>http://dancingpenguinsoflight.com/2007/07/generate-random-passwords-on-command/comment-page-1/#comment-23653</link>
		<dc:creator>Improved random password generator script &#124; tail -f findings.out</dc:creator>
		<pubDate>Sun, 07 Nov 2010 15:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/2007/07/02/generate-random-passwords-on-the-command-line/#comment-23653</guid>
		<description>[...] have been using this script I wrote about a few years back to generate random passwords. It works, but it&#8217;s limited. [...]</description>
		<content:encoded><![CDATA[<p>[...] have been using this script I wrote about a few years back to generate random passwords. It works, but it&#8217;s limited. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://dancingpenguinsoflight.com/2007/07/generate-random-passwords-on-command/comment-page-1/#comment-10</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Mon, 16 Jul 2007 08:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/2007/07/02/generate-random-passwords-on-the-command-line/#comment-10</guid>
		<description>The length limit is down to uuencode which produces output like :&lt;br/&gt;mgHZWDhtXSgIh6JR0Jh45Z0t/GRS2z52keGQIbT2NnpBGUF8IEcvEnczh/St&lt;br/&gt;yFCO3yxO2UbpZ39dwFoFRiIbskU6AXPkSskcB9fjYsqRhOVjxeo2CsOtkwtz&lt;br/&gt;qlOoXXd82BnuGsbgm4ho60lG1+7AZoU/DMJ3rilMTebYHw==&lt;br/&gt;====&lt;br/&gt;so when your take the next to last line you get some number of characters less than 60. My first though was that it might have been line breaks in the initial random string so switched to using &#039;dd&#039;. &lt;br/&gt;&lt;br/&gt;My script ended up like :&lt;br/&gt;echo `dd if=/dev/urandom bs=1k count=1 2&gt;/dev/null &#124; tr -dc &#039;0-9a-zA-Z&#039; &#124; head -c ${pw_len}`&lt;br/&gt;&lt;br/&gt;I simply took a fairly long input string, and deleted all the non-alphanumeric characters in it using &#039;tr&#039;.</description>
		<content:encoded><![CDATA[<p>The length limit is down to uuencode which produces output like :<br />mgHZWDhtXSgIh6JR0Jh45Z0t/GRS2z52keGQIbT2NnpBGUF8IEcvEnczh/St<br />yFCO3yxO2UbpZ39dwFoFRiIbskU6AXPkSskcB9fjYsqRhOVjxeo2CsOtkwtz<br />qlOoXXd82BnuGsbgm4ho60lG1+7AZoU/DMJ3rilMTebYHw==<br />====<br />so when your take the next to last line you get some number of characters less than 60. My first though was that it might have been line breaks in the initial random string so switched to using &#8216;dd&#8217;. </p>
<p>My script ended up like :<br />echo `dd if=/dev/urandom bs=1k count=1 2>/dev/null | tr -dc &#8217;0-9a-zA-Z&#8217; | head -c ${pw_len}`</p>
<p>I simply took a fairly long input string, and deleted all the non-alphanumeric characters in it using &#8216;tr&#8217;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

