Study sets
English

Fundamental Information Technology Engineer Examination (FE) | Subject A Authentication, Cryptography, and Network Defense Questions 01

1 / 100.0s

Problem 1

A membership site wants the stored database values for users A and B to differ even if they happen to choose the same password. The original passwords never need to be recovered.

Which password-storage method is most appropriate?

View explanation

A per-user salt and a suitable password-hashing scheme produce different stored values even for identical passwords and make reuse of precomputed attack results more difficult. A salt is not a secret value, and a shared salt would again reveal equal passwords through equal hashes. This also differs from storing reversibly encrypted passwords.

Problem 2

An authentication server sends a challenge to a device, which computes a response from the challenge and a shared secret. The system must prevent an attacker from recording a valid challenge-response pair and replaying the response later.

Which server-side design is most appropriate?

View explanation

A nonce that differs and is not reused binds the response to one authentication attempt. Replaying an old response fails because it does not correspond to the current nonce. A fixed challenge permits the same response to be reused, so merely using a challenge-response format would not provide replay resistance.

Problem 3

Sender S attaches a digital signature generated with S's private key to plaintext contract data. The recipient verifies it with S's public key obtained through a trusted method. The contract data itself is not encrypted.

Which combination of properties can this signature verification establish?

View explanation

A digital signature is generated with the signer's private key and verified with the corresponding public key, supporting signer authenticity and data integrity. Because the plaintext is not encrypted, the signature does not provide confidentiality. A signature alone also provides neither a timestamp nor a nonce and therefore does not guarantee replay prevention.

Problem 4

Companies X and Y generate and verify MACs for order data using a symmetric key known only to the two companies. A matching MAC lets them detect modification in transit.

Which statement correctly describes this arrangement?

View explanation

A MAC uses a shared secret key to verify data authenticity and integrity. An attacker without the key cannot recompute a valid MAC after intentionally changing the data. However, because both X and Y can generate the same MAC, it is unsuitable for proving to a third party that only X created it, and separate encryption is needed for confidentiality.

Problem 5

A biometric system is tested. It incorrectly rejects 20 of 1,000 comparisons made by enrolled genuine users and incorrectly accepts 1 of 500 comparisons made by impostors. Calculate the false rejection rate (FRR) and false acceptance rate (FAR) using the respective attempt totals.

Which pair correctly gives FRR and FAR?

View explanation

FRR divides the 20 false rejections by 1,000 genuine attempts, giving 2%. FAR divides the 1 false acceptance by 500 impostor attempts, giving 0.2%. The two rates use different populations as their denominators, so their attempt totals must not be swapped.

Problem 6

To detect forged responses from DNS cache poisoning, a resolver must validate signatures on DNS data and confirm that the data came from the legitimate zone without modification. Confidentiality of DNS queries is handled separately.

Which technology meets this requirement?

View explanation

DNSSEC verifies signatures on DNS data to establish its origin and integrity. It is suited to detecting forged DNS responses, but it does not encrypt queries or responses to hide their contents. DKIM signs email, while S/MIME encrypts or signs email, so neither addresses validation of DNS responses.

Problem 7

An email displays billing.example in its From field but uses bounce.vendor.net as its envelope From domain. SPF passes for vendor.net, there is no DKIM signature, and the two domains do not share an organizational domain. billing.example publishes a DMARC policy requesting rejection of messages that fail.

Which DMARC evaluation is appropriate?

View explanation

To pass DMARC through SPF, the SPF-authenticated domain must align with the displayed From domain. Here vendor.net does not align with billing.example, and there is no aligned DKIM signature as an alternative, so DMARC fails. DMARC is not an encryption method; it lets a domain owner publish a requested policy for handling authentication failures.

Problem 8

At a network boundary, an organization wants a device placed in the traffic path that not only alerts administrators when it detects a known attack pattern but also blocks the matching traffic in real time.

Which device best meets the requirement?

View explanation

An IPS detects signs of intrusion and can block attack traffic while operating in the traffic path. An IDS focuses on detection, logging, and notification and is not inherently required to block traffic itself. A SIEM collects and correlates logs, while a honeypot attracts attackers for observation, so neither directly satisfies the real-time blocking requirement.

Problem 9

Ransomware infects a file server and encrypts a continuously connected backup location as well. Backup jobs had reported success, but restoration had never been tested.

Which improvement most increases recoverability from a similar incident?

View explanation

A continuously connected replica may be encrypted or deleted through the same credentials or path as production. Offline or immutable generations that the attacker cannot alter, combined with regular restoration tests, improve recoverability. A successful job record does not prove either data integrity or the effectiveness of the restoration procedure.

Problem 10

Sender A needs to transmit a large file confidentially and efficiently to recipient B without a pre-shared secret key. A has B's trusted public key, and only B holds the corresponding private key.

Which procedure correctly uses hybrid encryption?

View explanation

The large payload is processed efficiently with symmetric encryption, while encrypting its temporary symmetric key with B's public key ensures that only B can recover it with the private key. Sending the symmetric key in plaintext destroys confidentiality. Applying A's private key is the signature direction and does not keep the data secret from holders of A's public key.