Bash 랜덤 패스워드 생성

Jmnote (토론 | 기여)님의 2021년 6월 9일 (수) 01:38 판 (→‎같이 보기)

1 개요

random complex password generator
랜덤 패스워드 생성
testuser@localhost:~$ cat /dev/urandom | tr -cd "[:alnum:]" | head -c 16; echo
hdjOc1gjcaOGUE2G
testuser@localhost:~$ cat /dev/urandom | tr -cd "[:alnum:]" | head -c 32; echo
88PUO0LiJNSYhmkxhGQzRTmUlQwNMEWz
testuser@localhost:~$ cat /dev/urandom | tr -cd "[:alnum:][:graph:]" | head -c 16; echo
N~#:+?sf}`J8Q)O5
testuser@localhost:~$ cat /dev/urandom | tr -cd "[:alnum:][:graph:]" | head -c 32; echo
~MlO~{rMH-Q>~KN}L&f$FzH!PP];&Jl$

2 관리자도 알 수 없는 랜덤 패스워드 지정

명령어
echo '계정명:$(cat /dev/urandom | tr -cd "[:alnum:][:graph:]" | head -c 16) | chpasswd
실행예시
[root@zetawiki ~]# echo 'testuser:$(cat /dev/urandom | tr -cd "[:alnum:][:graph:]" | head -c 16) | chpasswd
Changing password for user testuser.
passwd: all authentication tokens updated successfully.

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}