-
CVSS Score
-| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| Passeo | pip | < 1.0.5 | 1.0.5 |
Ongoing coverage of React2Shell
The vulnerability stems from using Python's insecure random module for password generation. The commit diff shows the vulnerable version used random.sample() in the generate function, which was replaced with secrets.choice() in the patched version. This matches the CWE-338 description of using weak PRNGs. No other functions in the diff show direct use of random for security-sensitive operations.