View Full CompTIA SY0-701 Exam Dumps and Practice Test Dumps.
Question 321
Which security technology is designed to identify suspicious activity by analyzing events collected from multiple systems?
- NAC
- WAF
- HSM
- SIEM
Correct Answer: 4
Explanation
A Security Information and Event Management (SIEM) platform collects, centralizes, and correlates security logs and events from multiple systems, applications, servers, and network devices. By analyzing information from different sources, a SIEM can identify suspicious patterns that might not be obvious when examining individual logs. Security teams can use SIEM alerts to investigate potential attacks, monitor user activity, detect anomalies, and support incident response and compliance requirements.
Question 322
Which type of attack attempts to gain unauthorized access by trying many possible passwords against a single account?
- Password spraying
- Phishing
- Session hijacking
- Brute-force attack
Correct Answer: 4
Explanation
A brute-force attack attempts to discover a user’s password by repeatedly trying different password combinations against a single account. Attackers may use automated tools to test thousands or millions of possible combinations. Strong and unique passwords make brute-force attacks more difficult. Additional protections such as account lockouts, rate limiting, multifactor authentication, and monitoring for repeated failed login attempts can further reduce the likelihood of successful unauthorized access.
Question 323
Which security mechanism verifies that a user has permission to access a requested resource?
- Identification
- Authorization
- Accounting
- Auditing
Correct Answer: 2
Explanation
Authorization determines what an authenticated user is allowed to access or perform within a system. After authentication confirms the user’s identity, authorization checks assigned permissions, roles, or access-control policies before allowing the requested action. For example, an employee may be authenticated successfully but still be unauthorized to access confidential financial records. Proper authorization helps enforce least privilege and prevents users from accessing resources beyond their assigned responsibilities.
Question 324
Which component of AAA records information about user activities and resource usage?
- Authentication
- Authorization
- Availability
- Accounting
Correct Answer: 4
Explanation
In the AAA security framework, accounting records information about user activities and resource usage. It can include login and logout times, session duration, commands executed, accessed resources, and other relevant activity details. This information can help organizations investigate security incidents, monitor resource usage, support auditing, and maintain accountability. Authentication verifies identity, while authorization determines permissions. Accounting focuses specifically on recording and tracking activities after access occurs.
Question 325
Which attack involves sending fraudulent text messages that attempt to steal credentials or financial information?
- Vishing
- Spear phishing
- Pretexting
- Smishing
Correct Answer: 4
Explanation
Smishing is a form of phishing that uses SMS or other text messaging services to manipulate victims. Attackers may send messages claiming that an account is locked, a payment failed, or an urgent verification is required. These messages often contain malicious links or requests for sensitive information. Users should avoid clicking unexpected links, verify requests through official channels, and never provide passwords or financial information through suspicious text messages.
Question 326
Which security control can identify unauthorized modifications to important operating system files?
- VPN
- FIM
- NAC
- DNS filtering
Correct Answer: 2
Explanation
File Integrity Monitoring (FIM) tracks important files and detects unauthorized or unexpected modifications. It can monitor system files, configuration files, application files, and other sensitive resources. When a monitored file changes, FIM can generate an alert for administrators or security personnel to investigate. This capability can help identify malware activity, unauthorized configuration changes, and potential system compromise. FIM is especially valuable for protecting critical systems.
Question 327
Which type of malware provides unauthorized remote control of an infected system while attempting to remain hidden?
- Adware
- Worm
- Logic bomb
- Rootkit
Correct Answer: 4
Explanation
A rootkit is malicious software designed to maintain unauthorized access while hiding its presence from users and security tools. Rootkits may conceal files, processes, network connections, or other evidence of compromise. Some rootkits operate with highly privileged system-level access, making them particularly difficult to detect and remove. Security teams can use endpoint protection, integrity monitoring, behavioral analysis, and specialized scanning tools to help identify rootkit activity.
Question 328
Which security technique divides a network into separate zones to restrict unauthorized lateral movement?
- Data aggregation
- Port forwarding
- Network segmentation
- Load balancing
Correct Answer: 3
Explanation
Network segmentation divides a network into separate security zones or segments and applies access controls between them. For example, servers, employee workstations, and sensitive databases can be placed into different network segments. If an attacker compromises one system, segmentation can prevent unrestricted communication with other systems. This limits lateral movement and reduces the potential impact of a breach. Firewalls, VLANs, and access-control rules can support network segmentation.
Question 329
Which type of encryption uses a pair of mathematically related keys?
- Symmetric encryption
- Asymmetric encryption
- Hashing
- Tokenization
Correct Answer: 2
Explanation
Asymmetric encryption uses two mathematically related keys: a public key and a private key. The public key can generally be distributed openly, while the private key must be protected. Depending on the cryptographic operation, one key may be used to encrypt information while the corresponding key is used to decrypt it. Asymmetric cryptography is commonly used for secure communications, digital certificates, and establishing trust between systems.
Question 330
Which security control can block unauthorized applications from executing on a workstation?
- Network segmentation
- Data classification
- SIEM
- Application allowlisting
Correct Answer: 4
Explanation
Application allowlisting is a security control that permits only specifically approved applications or software to execute on a system. Any application that is not included on the approved list can be blocked. This approach can reduce the risk of malware, unauthorized software, and potentially dangerous applications running on endpoints. Organizations can maintain allowlists based on trusted publishers, file hashes, application paths, or other approved identification methods.
Question 331
Which type of attack uses a fake identity or fabricated story to convince an employee to disclose sensitive information?
- DDoS
- Pretexting
- Wardriving
- Replay attack
Correct Answer: 2
Explanation
Pretexting is a social engineering technique in which an attacker creates a believable story or false identity to manipulate a victim. The attacker may pretend to be a manager, technical support employee, vendor, bank representative, or another trusted person. The goal is usually to obtain sensitive information, credentials, or access. Security awareness training and verification procedures can help employees recognize and resist pretexting attempts.
Question 332
Which security technology protects web applications from malicious HTTP and HTTPS requests?
- WAF
- IDS
- NAC
- SIEM
Correct Answer: 1
Explanation
A Web Application Firewall (WAF) monitors and filters HTTP and HTTPS traffic directed toward web applications. It can help detect and block common application-layer attacks, including SQL injection, cross-site scripting, malicious requests, and certain automated attacks. A WAF operates differently from a traditional network firewall because it focuses specifically on web application traffic. Proper WAF configuration can provide an additional security layer around internet-facing applications.
Question 333
Which security principle requires users to receive only the permissions necessary to complete their assigned responsibilities?
- Open access
- Full trust
- Data replication
- Least privilege
Correct Answer: 4
Explanation
The principle of least privilege requires users, applications, and systems to receive only the permissions necessary to perform their legitimate responsibilities. Limiting permissions reduces the potential damage caused by compromised accounts, malware, or accidental actions. For example, a user who only needs to read documents should not receive permission to delete or modify them. Applying least privilege helps organizations reduce attack surfaces and improve overall access control.
Question 334
Which type of attack attempts to manipulate a database query through malicious input?
- XSS
- SQL injection
- CSRF
- Buffer overflow
Correct Answer: 2
Explanation
SQL injection occurs when an attacker inserts malicious SQL commands or syntax into application input that is improperly handled by the application. If the application is vulnerable, the attacker may manipulate database queries to access, modify, or delete information. SQL injection can be reduced through parameterized queries, prepared statements, input validation, and secure application development practices. Proper database permissions should also limit the potential impact of an attack.
Question 335
Which security technology can isolate suspicious files or applications in a controlled environment?
- Firewall
- VPN
- Sandbox
- Proxy ARP
Correct Answer: 3
Explanation
A sandbox provides an isolated and controlled environment where suspicious files, applications, or code can be executed and analyzed without giving them unrestricted access to production systems. Security professionals can observe application behavior, network connections, file changes, and other activities inside the sandbox. This can help identify potentially malicious software before allowing it to interact with critical systems. Sandboxing is commonly used in malware analysis and endpoint security.
Question 336
Which physical security control is designed to stop vehicles from entering a protected area?
- Bollard
- Mantrap
- Badge reader
- Turnstile
Correct Answer: 1
Explanation
Bollards are physical security barriers designed to prevent or restrict unauthorized vehicles from entering protected areas. They are commonly installed around building entrances, pedestrian zones, government facilities, and other sensitive locations. Bollards can be fixed, removable, or designed to rise and lower automatically. A mantrap controls pedestrian access, a badge reader verifies personnel credentials, and a turnstile regulates individual entry through controlled access points.
Question 337
Which security method allows administrators to monitor and control activities performed using privileged accounts?
- SSO
- PAM
- DHCP
- NAT
Correct Answer: 2
Explanation
Privileged Access Management (PAM) is designed to control and monitor accounts with elevated permissions. PAM solutions can provide features such as credential vaulting, privileged-session monitoring, access approval, password rotation, and temporary privilege assignment. These controls help reduce the risk associated with administrator accounts because attackers often target highly privileged credentials. PAM also improves accountability by allowing organizations to track who accessed privileged systems and what actions were performed.
Question 338
Which type of backup contains only data that has changed since the previous backup?
- Differential
- Full
- Archive
- Incremental
Correct Answer: 4
Explanation
An incremental backup stores only the data that has changed since the most recent backup, whether that backup was full or incremental. Because each incremental backup usually contains a smaller amount of data, it can reduce backup time and storage requirements. However, restoring data may require the original full backup and all subsequent incremental backups. A differential backup instead stores changes made since the last full backup.
Question 339
Which security control can prevent an attacker from moving freely between compromised systems on an internal network?
- Tokenization
- Segmentation
- Password hashing
- Data masking
Correct Answer: 2
Explanation
Network segmentation separates systems into different security zones and restricts unnecessary communication between those zones. This can significantly limit an attacker’s ability to move laterally after compromising one system. For example, employee workstations can be separated from database servers using firewalls, VLANs, or access-control policies. Even if one endpoint becomes compromised, segmentation can prevent the attacker from directly reaching sensitive systems and reduce the overall impact of the incident.
Question 340
Which incident response activity focuses on removing malware, malicious accounts, and other threats from affected systems?
- Identification
- Preparation
- Lessons learned
- Eradication
Correct Answer: 4
Explanation
Eradication is the incident response phase focused on removing the root cause and remaining traces of a security incident from affected systems. Activities may include deleting malware, removing persistence mechanisms, disabling compromised accounts, closing exploited vulnerabilities, and eliminating unauthorized access methods. The goal is to ensure the threat is no longer present before systems return to normal operation. After eradication, organizations can proceed with recovery and verify that systems are secure.