More AWS questions

Created also the file for Grafana questions.
This commit is contained in:
abregman
2021-11-22 19:29:57 +02:00
parent ed45cd1213
commit 63a3b2ef2d
8 changed files with 205 additions and 7 deletions

View File

@@ -389,7 +389,23 @@ MAC address flooding attack (CAM table flooding attack) is a type of network att
<summary>What is Cache Poisoned Denial of Service?</summary><br><b>
CPDoS or Cache Poisoned Denial of Service. It poisons the CDN cache. By manipulating certain header requests, the attacker forces the origin server to return a Bad Request error which is stored in the CDNs cache. Thus, every request that comes after the attack will get an error page.
</b></details>
<details>
<summary>What is the difference if any between SSL and TLS?</summary><br><b>
</b></details>
<details>
<summary>What is SNI (Server Name Indication)?</summary><br><b>
[Wikipedia](https://en.wikipedia.org/wiki/Server_Name_Indication): "an extension to the Transport Layer Security (TLS) computer networking protocol by which a client indicates which hostname it is attempting to connect to at the start of the handshaking process"
</b></details>
<details>
<summary>What benefits SNI introduces?</summary><br><b>
SNI allows a single server to serve multiple certificates using the same IP and port.<br>
Practically this means that a single IP can server multiple web services/pages, each using a different certificate.
</b></details>
#### Security - Threats