Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Composr
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Composr ecosystem
Composr
Commits
430f2b81
Commit
430f2b81
authored
7 months ago
by
Patrick Schmalstig
Browse files
Options
Downloads
Patches
Plain Diff
Fixed
MANTIS-5898
(Make get_secure_random_string more secure)
parent
179381c0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sources/crypt.php
+20
-7
20 additions, 7 deletions
sources/crypt.php
sources/forum/phpbb3.php
+1
-1
1 addition, 1 deletion
sources/forum/phpbb3.php
with
21 additions
and
8 deletions
sources/crypt.php
+
20
−
7
View file @
430f2b81
...
...
@@ -93,23 +93,36 @@ function get_site_salt() : string
{
$site_salt
=
get_value
(
'site_salt'
);
if
(
$site_salt
===
null
)
{
$site_salt
=
get_secure_random_string
(
);
$site_salt
=
get_secure_random_string
(
32
);
// We are going to MD5 it so it should be long to increase variability
set_value
(
'site_salt'
,
$site_salt
);
}
return
md5
(
$site_salt
);
}
/**
* Get a randomised string acceptable for use as tokens, etc.
*
Will be 13 bytes long and base16. Do not use for password
s; use get_secure_random_password() instead.
* Get a
URL-safe alphanumeric
randomised string acceptable for use as tokens, etc.
*
Do not use for passwords because it does not contain symbol
s; use get_secure_random_password() instead.
*
* @param integer The length of the string in bytes
* @return string The randomised password
*/
function
get_secure_random_string
()
:
string
function
get_secure_random_string
(
int
$bytes
=
13
)
:
string
{
// md5 used in the below so that we get nice ASCII characters
return
substr
(
md5
(
random_bytes
(
13
)),
0
,
13
);
/*
* We only use lowercase letters due to case sensitivity inconsistencies between operating systems.
* For maximum cryptographic security, the length must be a power of 2.
* Therefore, we took letters + numbers (36) and removed 1/l, and 0/o (32) as they look similar.
*/
$characters
=
'23456789abcdefghijkmnpqrstuvwxyz'
;
$characters_length
=
strlen
(
$characters
);
$random_string
=
''
;
for
(
$i
=
0
;
$i
<
$bytes
;
$i
++
)
{
$random_byte
=
random_bytes
(
1
);
$random_index
=
ord
(
$random_byte
)
%
$characters_length
;
// Convert byte to index
$random_string
.
=
$characters
[
$random_index
];
}
return
$random_string
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
sources/forum/phpbb3.php
+
1
−
1
View file @
430f2b81
...
...
@@ -1461,7 +1461,7 @@ class Forum_driver_phpbb3 extends Forum_driver_base
require_code
(
'crypt'
);
$hash
=
substr
(
get_secure_random_string
(
),
0
,
17
);
$hash
=
get_secure_random_string
(
17
);
$this
->
db
->
query_insert
(
'sessions_keys'
,
[
'key_id'
=>
md5
(
$hash
),
'user_id'
=>
$member_id
,
'last_ip'
=>
strval
(
ip2long
(
get_ip_address
())),
'last_login'
=>
time
()]);
if
(
substr
(
$member_cookie_name
,
0
,
5
)
!=
'cms__'
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment