shell系列產生隨機數的方法

來源:互聯網
上載者:User

標籤:shell

一: RANDOM

echo $RANDOM

RANDOM的隨機數是有範圍的1--32767,一般用它是可以被破解的

1.2  產生八位元的隨機密碼:

echo $(($RANDOM+11111111))

二:MD5sum 隨機加密方法 產生的密碼較長

取9位元密碼:

echo $RADDOM |md5sum|cut -c 2-9

三:通過openssl產生隨機數

[[email protected] tmp]# openssl rand -base64 8

hInfIvtfOSk=

[[email protected] tmp]# openssl rand -base64 10

t67TCWO4DquFjA==

[[email protected] tmp]# 

四:通過時間擷取隨機數

date +%s%N (s 秒 N )

[[email protected] tmp]# date +%s%N

1494493822328919977

[[email protected] tmp]# 

五:mkpasswd 

要用mkpasswd首先下載expect

yum install expect -y

[[email protected] scripts]# mkpasswd -l 10

\dhr(V56zpT

[[email protected] scripts]# mkpasswd -l 18

uxtxtiLuk09wzDd[ga

[[email protected] scripts]# 

六:裝置:/dev/urandom|cksum

[[email protected] scripts]# head /dev/urandom|cksum

3839730751 3262

[[email protected] scripts]# 

七:uuid碼全稱是通用的唯一識別碼:

[[email protected] scripts]# cat /proc/sys/kernel/random/uuid

dbe7d254-11c2-42cc-b541-3f2a990daa8e

[[email protected] scripts]# 




shell系列產生隨機數的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.