<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>密码 &#8211; 悠然居</title>
	<atom:link href="https://wordpress.youran.me/tag/%e5%af%86%e7%a0%81/feed/" rel="self" type="application/rss+xml" />
	<link>https://wordpress.youran.me</link>
	<description>极客技术博客</description>
	<lastBuildDate>Sat, 06 Dec 2014 09:20:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.8</generator>
	<item>
		<title>从命令行获得随机密码的几种方法</title>
		<link>https://wordpress.youran.me/get-random-password-console/</link>
					<comments>https://wordpress.youran.me/get-random-password-console/#comments</comments>
		
		<dc:creator><![CDATA[youran]]></dc:creator>
		<pubDate>Tue, 14 May 2013 09:54:01 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[密码]]></category>
		<category><![CDATA[随机]]></category>
		<guid isPermaLink="false">http://wordpress.youran.me/?p=417</guid>

					<description><![CDATA[有时候可能需要提供一个临时密码，并且要求复杂度足够高，这时候除了绞尽脑汁想一个以外，还有很多种从linux命令行直接获得临时复杂密码的方式。下面一一介绍。 最无脑的： date &#124; md5sum 只是当前日期时间的md5。虽然这种方式有可能会被识破，但不啻是安全级别要求低的时候最方便的临时密码获取方式，而且生成的密码已经足够随机。 下面这个是用linux的伪随机数生成器，生成一串一般用于密码的字母数字混合字符： cat /dev/urandom tr -dc _A-Z-a-z-0-9 &#124; head -c${1:-16};echo; 下面是精简版的： cat /dev/urandom tr -dc _A-Z-a-z-0-9 &#124; head -c16;echo; 如果你有装openssl(很多发行版自带)，可以用下面简单的方式，效果不错： openssl rand -base64 16 dd命令配合urandom和base64也是个不错的选择： dd if=/dev/urandom bs=1 count=16 2&#62;/dev/null &#8230;]]></description>
		
					<wfw:commentRss>https://wordpress.youran.me/get-random-password-console/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>查看是否有人破解你的ssh密码</title>
		<link>https://wordpress.youran.me/%e6%9f%a5%e7%9c%8b%e6%98%af%e5%90%a6%e6%9c%89%e4%ba%ba%e7%a0%b4%e8%a7%a3%e4%bd%a0%e7%9a%84ssh%e5%af%86%e7%a0%81/</link>
					<comments>https://wordpress.youran.me/%e6%9f%a5%e7%9c%8b%e6%98%af%e5%90%a6%e6%9c%89%e4%ba%ba%e7%a0%b4%e8%a7%a3%e4%bd%a0%e7%9a%84ssh%e5%af%86%e7%a0%81/#respond</comments>
		
		<dc:creator><![CDATA[youran]]></dc:creator>
		<pubDate>Thu, 02 Feb 2012 02:44:25 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[密码]]></category>
		<category><![CDATA[破解]]></category>
		<guid isPermaLink="false">http://wordpress.youran.me/?p=258</guid>

					<description><![CDATA[Redhat/Fedora系： cat /var/log/secure&#124;awk '/Failed/{print $(NF-3)}'&#124;sort&#124;uniq -c&#124;awk '{print $2"="$1;}' Debian/Ubuntu系、其他系： cat /var/log/auth.log&#124;awk '/Failed/{print $(NF-3)}'&#124;sort&#124;uniq -c&#124;awk '{print $2"="$1;}' 不看不知道，一看吓一跳： 我一个名不见经传的小站，也有无聊的人来破解啊，shit! 本文为悠然居(https://wordpress.youran.me/)的原创文章，转载请注明出处！]]></description>
		
					<wfw:commentRss>https://wordpress.youran.me/%e6%9f%a5%e7%9c%8b%e6%98%af%e5%90%a6%e6%9c%89%e4%ba%ba%e7%a0%b4%e8%a7%a3%e4%bd%a0%e7%9a%84ssh%e5%af%86%e7%a0%81/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 25/65 objects using Disk
Page Caching using Disk: Enhanced 
Database Caching 4/14 queries in 0.002 seconds using Disk

Served from: wordpress.youran.me @ 2026-06-29 07:57:38 by W3 Total Cache
-->