From 346d3b63391201f8974c60acd0809edfec1efce9 Mon Sep 17 00:00:00 2001 From: Reyes Lee <87415308+ZakuroSoda@users.noreply.github.com> Date: Thu, 8 Aug 2024 14:23:53 +0800 Subject: [PATCH] Update uuid-insecurities.md for Typo --- pentesting-web/uuid-insecurities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pentesting-web/uuid-insecurities.md b/pentesting-web/uuid-insecurities.md index 00e5a0015..5ef87783d 100644 --- a/pentesting-web/uuid-insecurities.md +++ b/pentesting-web/uuid-insecurities.md @@ -22,7 +22,7 @@ Universally Unique Identifiers (UUIDs) are **128-bit numbers used to uniquely id UUIDs are designed to be unique and **hard to guess**. They are structured in a specific format, divided into five groups represented as 32 hexadecimal digits. There are different versions of UUIDs, each serving different purposes: * **UUID v1** is time-based, incorporating the timestamp, clock sequence, and node ID (MAC address), but it can potentially expose system information. -* **UUID v2** is similar to v1 but includes modifications for local domains (not eidly used). +* **UUID v2** is similar to v1 but includes modifications for local domains (not widely used). * **UUID v3 and v5** generate UUIDs using hash values from namespace and name, with v3 using MD5 and v5 using SHA-1. * **UUID v4** is generated almost entirely randomly, providing a high level of anonymity but with a slight risk of duplicates.