Unit 5: System Hacking and Post Exploitation - Practice Quiz

INT245 — Penetration Testing 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which cryptographic technique involves adding a random string of characters to a password before hashing it to defend against rainbow table attacks?

A. Padding
B. Peppering
C. Salting
D. Stretching

2 In the context of Windows password cracking, why is the LM (LAN Manager) hash considered significantly weaker than NTLM?

A. It is salted by default.
B. It uses AES encryption.
C. It supports passwords up to 128 characters.
D. It splits the password into two 7-character chunks.

3 What is the primary purpose of a 'Rainbow Table' in password cracking?

A. To encrypt passwords using a reversible algorithm.
B. To offer a time-memory trade-off for faster hash lookup.
C. To perform an online brute force attack.
D. To salt hashes automatically.

4 Which command is used in Linux to list all users currently on the system?

A. ls /home
B. cat /etc/passwd
C. net user
D. cat /etc/shadow

5 During a system hacking engagement, an attacker gains access to a machine but has limited privileges. The attacker uses a kernel vulnerability to gain root access. What is this process called?

A. Lateral Movement
B. Pivoting
C. Vertical Privilege Escalation
D. Horizontal Privilege Escalation

6 Which of the following is a specific type of attack where a hacker hides malicious code inside a legitimate file or program?

A. Wrappers/Binders
B. Steganography
C. Rootkit
D. Polymorphism

7 In the context of Reverse Engineering, what is the function of a Disassembler?

A. It converts machine code into assembly language.
B. It converts high-level code to machine code.
C. It modifies the source code dynamically.
D. It executes the code step-by-step.

8 Which hexadecimal value represents the NOP (No Operation) instruction in x86 architecture, often used in buffer overflow exploits?

A. 0x90
B. 0x00
C. 0xFF
D. 0x80

9 What is the primary characteristic of a Reverse Shell?

A. The victim machine initiates a connection back to the attacker's machine.
B. The attacker connects to the victim's listening port.
C. It only works over UDP.
D. It requires the victim to have a public IP address.

10 Which tool is commonly used to extract passwords and hashes from memory (LSASS) on a Windows system?

A. Mimikatz
B. Nmap
C. Wireshark
D. John the Ripper

11 In Linux Privilege Escalation, what does the SUID bit allow?

A. It prevents the file from being deleted.
B. It allows the file to run automatically at startup.
C. It allows a user to execute a file with the permissions of the file owner.
D. It makes the file hidden.

12 Which Windows command is used to manipulate file attributes to hide files as part of maintaining persistence?

A. attrib +h file.txt
B. chown hidden file.txt
C. chmod +h file.txt
D. hide file.txt

13 What is DLL Hijacking?

A. Decrypting a DLL file.
B. Injecting code into a running process.
C. Deleting system DLLs to cause a crash.
D. Replacing a legitimate DLL with a malicious one in a directory searched by the application.

14 Which type of rootkit operates at the same privilege level as the Operating System kernel (Ring 0)?

A. Kernel-mode Rootkit
B. Application-level Rootkit
C. Library-level Rootkit
D. User-mode Rootkit

15 Which Python library is most frequently used for network interaction and crafting custom packets in scripting exploits?

A. Matplotlib
B. NumPy
C. Pandas
D. Scapy

16 When analyzing exploit code, what is the purpose of the payload?

A. To find the vulnerability.
B. To crash the service.
C. To encrypt the connection.
D. The code that runs on the target system after exploitation.

17 What is the specific vulnerability related to 'Unquoted Service Paths' in Windows?

A. Services that cannot be stopped.
B. Paths containing spaces not enclosed in quotes allow execution of arbitrary executables.
C. Services running without a password.
D. Services running as LocalSystem.

18 Which Linux command helps identify commands a user can run as another user (often root) without a password?

A. cat /etc/sudoers
B. sudo -l
C. su root
D. whoami

19 What does the technique Steganography entail?

A. Cracking passwords using GPU.
B. Flooding a server with requests.
C. Intercepting network traffic.
D. Hiding data within another file, such as an image or audio file.

20 Which Metasploit payload executes a payload within the memory of the compromised process without writing to the disk?

A. Meterpreter
B. Command Shell
C. Bind Shell
D. VNC Inject

21 In a brute-force attack, if the password length is and the character set size is , what is the complexity of the attack?

A.
B.
C.
D.

22 Which registry key is commonly targeted for maintaining persistence on Windows so that malware runs on user login?

A. HKLM\Software\Microsoft\Windows\CurrentVersion\Run
B. HKLM\System\CurrentControlSet\Services
C. HKLM\SAM\SAM
D. HKCU\Control Panel\Desktop

23 What is NTFS Data Hiding using Alternate Data Streams (ADS)?

A. Hiding a file inside another file's metadata stream on NTFS filesystems.
B. Moving files to a hidden partition.
C. Deleting the file allocation table.
D. Encrypting the hard drive.

24 Which of the following tools is a popular open-source reverse engineering framework developed by the NSA?

A. Ghidra
B. OllyDbg
C. Radare2
D. IDA Pro

25 What is Dirty COW (CVE-2016-5195)?

A. A Windows SMB exploit.
B. A Linux kernel privilege escalation vulnerability.
C. A method for SQL injection.
D. A password cracking tool.

26 In the context of scripting for pen-testing, what is Bash primarily used for?

A. Developing web applications.
B. Reverse engineering binaries.
C. Windows kernel exploitation.
D. Automating tasks in Unix/Linux environments.

27 Which attack involves capturing the NTLM hash of a user and using it to authenticate without cracking the password?

A. Golden Ticket
B. Dictionary Attack
C. Brute Force
D. Pass the Hash

28 What is the purpose of timestomping in post-exploitation?

A. Crashing the system time service.
B. Slowing down the CPU to evade detection.
C. Modifying file timestamps (access, modify, create) to hide malicious activity.
D. Scheduling tasks for the future.

29 Which command allows you to view the currently loaded modules and their memory addresses in a Windows debugging environment like OllyDbg?

A. Call Stack
B. Memory Map
C. Executable Modules
D. CPU Registers

30 What does the command chmod 4755 filename do in Linux?

A. Sets the file to read-only.
B. Deletes the file.
C. Hides the file.
D. Sets the SUID bit on the file.

31 Which tool is primarily designed for performing online password attacks against network services (FTP, SSH, Telnet)?

A. Ophcrack
B. John the Ripper
C. Hashcat
D. Hydra

32 In a Buffer Overflow attack, the attacker attempts to overwrite the EIP register. What does EIP stand for?

A. Extended Internal Process
B. Extended Instruction Pointer
C. Extended Index Pointer
D. Extended Immediate Pointer

33 Which of the following is a method of covering tracks on a Windows system?

A. Using wevtutil cl to clear event logs.
B. Creating a new user.
C. Running ipconfig.
D. Running whoami.

34 What is the primary function of a Keylogger?

A. To record every keystroke made by the user.
B. To log network traffic.
C. To encrypt user files.
D. To log into the system automatically.

35 Which Windows feature can be exploited by pressing the SHIFT key 5 times?

A. Mouse Keys
B. Filter Keys
C. Toggle Keys
D. Sticky Keys

36 What is the purpose of Pivoting in penetration testing?

A. Rotating the screen display.
B. Changing the password frequently.
C. Using a compromised system to attack other systems in the same network.
D. Switching from Linux to Windows.

37 Which PowerShell command is used to download a file from a remote server?

A. wget
B. Download-File
C. Invoke-WebRequest
D. Get-File

38 Which component of the Metasploit Framework stores information about targets, loot, and collected data?

A. msfconsole
B. msfvenom
C. Meterpreter
D. The Database (PostgreSQL)

39 What distinguishes Static Analysis from Dynamic Analysis in malware analysis?

A. Static analysis runs the code; dynamic analysis does not.
B. Static analysis examines code without execution; dynamic analysis observes code behavior during execution.
C. Static analysis is for Linux; dynamic analysis is for Windows.
D. Static analysis uses debuggers; dynamic analysis uses disassemblers.

40 Which script allows an attacker to automate the search for privilege escalation vectors on a Linux system?

A. PowerView
B. WinPEAS
C. BloodHound
D. LinPEAS

41 What is a Logic Bomb?

A. Malware that explodes the hardware.
B. A DoS attack tool.
C. Code intentionally inserted into a software system that sets off a malicious function when specified conditions are met.
D. A script that brute forces logical ports.

42 In the context of enumerating assets, what information does SNMP (Simple Network Management Protocol) primarily provide if misconfigured (public community string)?

A. Encrypted passwords.
B. Web application source code.
C. Network statistics, system information, and user accounts.
D. Firewall rules.

43 Which type of shellcode is typically used when the target system is behind a firewall that blocks incoming connections?

A. Null TCP
B. Reverse TCP
C. Loopback TCP
D. Bind TCP

44 What is the SAM file in Windows?

A. Secure Access Module
B. System Access Method
C. System Admin Manager
D. Security Account Manager

45 Which of the following describes a Dictionary Attack?

A. Using a rainbow table.
B. Using a pre-defined list of likely passwords.
C. Capturing the handshake and decrypting it.
D. Trying every possible combination of characters.

46 When creating a persistent backdoor using Windows Scheduled Tasks, which command is used?

A. taskmgr
B. at (deprecated)
C. cron
D. schtasks

47 What is the main purpose of Ruby in the context of the Metasploit Framework?

A. It is used for database management.
B. It is the language used to write Metasploit modules.
C. It is used for network scanning only.
D. It is the GUI framework.

48 Which vulnerability allows an attacker to escalate privileges by exploiting a program that runs with higher privileges but insecurely loads libraries from the current directory?

A. SQL Injection
B. DLL Hijacking
C. XSS
D. Buffer Overflow

49 What does the Sticky Bit do on a directory in Linux?

A. It keeps files in memory.
B. It shares files with everyone.
C. It prevents users from deleting files they do not own.
D. It makes files executable.

50 Which tool allows for the creation of custom wordlists based on the content of a target website?

A. Wireshark
B. Netcat
C. CeWL
D. Nmap