T6 Flashcards

1
Q

Why is password quality verification important in security?

A

It limits intrusions and data leaks, ensuring stronger authentication and encryption key derivation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is John the Ripper (JtR)?

A

An open-source password cracking tool available in free and pro versions for multiple platforms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you download and install John the Ripper (JtR)?

A

Download with wget, extract with tar, configure, and compile with make.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the two files in UNIX systems that store user and password information?

A

/etc/passwd (usernames) and /etc/shadow (hashed passwords).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you extract user and password hashes for John the Ripper?

A

./unshadow passwd-fake shadow-fake > passwd.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the fastest mode in JtR for cracking weak passwords?

A

Single crack mode: ./john –single passwd.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which mode in JtR uses dictionaries to crack passwords?

A

Wordlist mode: ./john –wordlist=password.lst passwd.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does incremental mode work in JtR?

A

Incremental mode performs brute-force attacks by testing all possible passwords: ./john –incremental passwd.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you apply word variations to password cracking in JtR?

A

Use wordlist with rules: ./john –wordlist=password.lst –rules passwd.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you show cracked passwords in JtR?

A

./john passwd.1 -show

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you extract PDF password hashes for cracking in JtR?

A

./pdf2john.pl <filename>.pdf > hash.txt</filename>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you crack PDF passwords with JtR?

A

./john –format=pdf hash.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What tool provides better GPU-based password cracking than JtR?

A

Hashcat (https://hashcat.net)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Why are GPUs better for password cracking?

A

GPUs excel at parallel processing, speeding up password recovery tasks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly