mirror of
https://github.com/github/codeql.git
synced 2026-06-18 11:21:07 +02:00
6 lines
130 B
Python
6 lines
130 B
Python
import random
|
|
|
|
def generatePassword():
|
|
# BAD: the random is not cryptographically secure
|
|
return random.random() # $ Alert
|