I know that GUIDs are theoretically unique with a very low chance of collision. However, if I understand correctly that some uniqueness is available, because it is sown from the information on the computer used to generate it, depending on the algorithm used.
How likely is it that given the GUID, the user could guess the other GUIDs in the table?
As an example, if you have newsletter subscribers with the unsubscribe function, you can simply send it to example.com/subscriber/unsubscribe/{id}
With the whole identity, this is obviously a bad idea. A user with ID 1000 can unsubscribe from your entire database in seconds, guessing the identifiers.
If the identifier column is the GUID initialized for newid (), how likely is it that your user can guess the correct identifiers if they know them?
source
share