What is the name of the career role that is legally employed to find vulnerabilities in applications?
Penetration Tester
What is the name of the role whose job is to identify attacks against an organization?
security analyst
In the Burp Suite Program that ships with Kali Linux, what mode would you use to manually send a request (often repeating a captured request numerous times)?
Repeater
What hash format are modern Windows login passwords stored in?
NTLM
Modern Windows login passwords are stored in the NTLM (NT LAN Manager) hash format. Specifically, Windows uses the NT hash (also known as the NTLM hash or simply NTLM) to store passwords.
The NT hash is derived from the user's password using the MD4 hashing algorithm. Unlike older LM (LAN Manager) hashes, which were used in earlier versions of Windows and were much less secure, NTLM hashes do not truncate or convert the password to uppercase, making them more secure, though they are still vulnerable to certain types of attacks, such as brute force and rainbow table attacks.
What are automated tasks called in Linux?
Cron Jobs
In Linux, automated tasks are typically referred to as cron jobs. These tasks are scheduled and managed using a tool called cron.
Cron allows users to schedule scripts or commands to run at specified intervals, such as daily, weekly, or monthly. The schedules for these tasks are defined in a file called a crontab (short for "cron table"). Each user can have their own crontab file, and there is also a system-wide crontab for tasks that require root privileges.
SCP is a tool used to copy files from one computer to another. What switch would you use to copy an entire directory?
-r
(resource on Geeks4Geeks)fdisk is a command used to view and alter the partitioning scheme used on your hard drive. What switch would you use to list the current partitions?
-l
resourcenano is an easy-to-use text editor for Linux. There are arguably better editors (Vim, being the obvious choice); however, nano is a great one to start with. What switch would you use to make a backup when opening a file with nano?
-B
resourceNetcat is a basic tool used to manually send and receive network requests. What command would you use to start netcat in listen mode, using port 12345?
nc -l -p 12345
How to use netcat commands - resource
Thank you for reading through my article. You can leave any questions or comments on how I can improve my learning journey and the THM challenges. We can also connect more on LinkedIn or X