mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Update (drei)
This commit is contained in:
parent
70168855f9
commit
1e03b23ccb
11 changed files with 104 additions and 98 deletions
2
thirdparty/fcrypt/fcrypt.py
vendored
2
thirdparty/fcrypt/fcrypt.py
vendored
|
|
@ -573,7 +573,7 @@ In practice, you would read the password using something like the
|
|||
getpass module, and generate the salt randomly:
|
||||
|
||||
>>> import random, string
|
||||
>>> saltchars = string.letters + string.digits + './'
|
||||
>>> saltchars = string.ascii_letters + string.digits + './'
|
||||
>>> salt = random.choice(saltchars) + random.choice(saltchars)
|
||||
|
||||
Note that other ASCII characters are accepted in the salt, but the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue