Brute-force cryptanalytic attack


Introduction to SSL I

https://www.codeguru.com/cpp/i-n/internet/securesocketlayerssl/article.php/c6187/An-Introduction-to-SSL.htm

Introduction to SSL II

https://developer.mozilla.org/en-US/docs/Introduction_to_SSL

Attack Descriptions:

https://www.owasp.org/index.php/Category:Attack

Consider the following threats to Web Security and describe in some detail how each is countered by a particular feature of SSL.

1. Brute-force cryptanalytic attack: An exhaustive search of the key space for a conventional encryption algorithm.

2. Known-plaintext dictionary attack: Many messages will contain predictable plaintext, such as the HTTP GET command, An attacker constructs a dictionary containing every possible encryption of the known-plaintext message. When an encrypted message is intercepted, the attacker takes the portion containing the encrypted known plaintext and looks up the ciphertext in the dictionary. The ciphertext should match against an entry that was encrypted with the same secret key.

If there are several matches, each of these can be tried against the full ciphertext to determine the right one. This attack is especially effective against small key sizes (e.g., 40-bit keys).

3. Replay attack: Earlier SSL handshake messages are replayed.

4. Man-in-the-middle attack: An attacker interposes during key exchange, acting as the client to the server and as the server to the client.

5. Password sniffing: Passwords in HTTP or other application traffic are eavesdropped.

6. IP spoofing: Uses forged IP addresses to fool a host into accepting bogus data.

7. IP hijacking: An active, authenticated connection between two hosts is disrupted and the attacker takes the place of one of the hosts.

8. SYN flooding: An attacker sends TCP SYN messages to request a connection but does not respond to the final message to establish the connection fully.

The attacked TCP module typically leaves the ‘half-open connection’ around for a few minutes. Repeated SYN messages can clog the TCP module.

Deliverables: Provide detailed answers for each threat. Please make sure that your response is prepared and enabled for viewing via a browser.

Request for Solution File

Ask an Expert for Answer!!
Other Subject: Brute-force cryptanalytic attack
Reference No:- TGS01438057

Expected delivery within 24 Hours