User007
User007

Reputation: 1559

Does using uuid as part of url leaks information about the server?

For example, does using uuid.uuid1() (which uses MAC address) makes services more vulnerable? I just want to create a unique id for my asyn tasks.

Thanks.

Upvotes: 2

Views: 552

Answers (1)

Jonathon Reinhart
Jonathon Reinhart

Reputation: 137477

I don't think it's really a problem leaking the MAC address of the server, because no one will be on the same local subnet as the server where you could do anything malicious.

But if you are concerned, why not use one of the other UUIDs in python?

Upvotes: 2

Related Questions