Self-Improvement
Dictionary File 만들기 및 crunch 본문
*Dictionary File 만들기
1.인터넷에서 수집
구글검색 : "inurl:github fuzzdb"
https://github.com/wick2o/Dump-Monitor-WordLists
https://github.com/danielmiessler/SecLists/tree/master/Passwords
https://archive.org/details/pastebinpastes
https://wiki.skullsecurity.org/Passwords
http://www.leakedin.com/tag/emailpassword-dump
2.kaliLinux에 존재하는 사전파일 통합
#cd /usr/share/wordlists ; ls -l (이외에도 존재)
#cat file1 file2 | sort -u > total
3.명령어로 생성
#crunch --help
#crunch 1 3
#crunch 1 5 user2 > user2.list
#crunch 4 8 abcdefghijklmnopqrstuvwxyz0123456789 -o aa.txt
#crunch 8 8 0123456789 -t user@@@@ -o aa.txt (user뒤에 4개의 모든 경우의 수를 넣는다)
*강력한 암호 확인
대소문자/소문자 + 숫자 + 특수문자 + 공백문자의 최소길이 8자이상
https://howsecureismypassword.net에서 본인의 비밀번호 확인해보기
'Kali Linux > Tools 실습' 카테고리의 다른 글
searchsploit : kali에서 Exploit-DB 사용하기 (0) | 2018.10.20 |
---|---|
John The Ripper 툴을 통해 패스워드 크랙 하기 (Linux shadow 암호 형식) (0) | 2018.10.20 |
setoolkit : 특정 사이트 Clone을 하여 가짜 웹사이트 만들기 (0) | 2018.10.20 |
setoolkit : Site clone인 google을 통한 ID/PASSWD 수집 (2) | 2018.10.20 |
Backdoor-Factory을 이용한 실행 프로그램에 악성 코드 삽입 (0) | 2018.10.20 |