Kali Linux 面试题与答案
问题 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'.
这有帮助吗?
添加评论
查看评论
问题 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
这有帮助吗?
添加评论
查看评论
问题 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
这有帮助吗?
添加评论
查看评论
问题 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
这有帮助吗?
添加评论
查看评论
用户评价最有帮助的内容:
- 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?
- What is Kali Linux?