Kali Linux Interview Questions and Answers
Ques 26. Explain the purpose of the 'tcpdump' command in Kali Linux.
'tcpdump' is a command-line packet analyzer that captures and displays network traffic for analysis or debugging purposes.
Example:
Capturing packets on interface eth0 with 'tcpdump'.
Is it helpful?
Add Comment
View Comments
Ques 27. What is the role of 'iptables' in Kali Linux?
'iptables' is a user-space utility that allows a system administrator to configure IP packet filter rules to control network traffic.
Example:
Creating a rule to allow incoming traffic on port 22: iptables -A INPUT -p tcp --dport 22 -j ACCEPT
Is it helpful?
Add Comment
View Comments
Ques 28. How do you use 'John the Ripper' to crack Unix passwords?
Using 'John the Ripper' to crack Unix passwords involves providing the password hashes from the '/etc/shadow' file.
Example:
Cracking Unix password hashes: unshadow /etc/passwd /etc/shadow > passwordfile.txt
john passwordfile.txt
Is it helpful?
Add Comment
View Comments
Ques 29. Explain the purpose of 'GPG' (GNU Privacy Guard) in Kali Linux.
'GPG' is a cryptographic software tool used for secure communication and data integrity verification through the use of public and private keys.
Example:
Encrypting a file with 'GPG': gpg --output encrypted_file.gpg --encrypt --recipient recipient_key file_to_encrypt
Is it helpful?
Add Comment
View Comments
Most helpful rated by users:
- What is the default username and password in Kali Linux?
- How can you check the IP address in Kali Linux?
- How can you update Kali Linux?