Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
foreman_passwordstate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LiU IT - Infrastructure
foreman_passwordstate
Commits
d909e01d
Verified
Commit
d909e01d
authored
5 months ago
by
Alexander Olofsson
Browse files
Options
Downloads
Patches
Plain Diff
Retune password salt generation
Should be more secure, and avoid generating potentially confusing data
parent
51125257
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#142292
canceled
5 months ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/models/orchestration/passwordstate.rb
+3
-3
3 additions, 3 deletions
app/models/orchestration/passwordstate.rb
with
3 additions
and
3 deletions
app/models/orchestration/passwordstate.rb
+
3
−
3
View file @
d909e01d
...
...
@@ -37,10 +37,10 @@ module Orchestration
pw
=
PasswordCrypt
.
passw_crypt
(
pw
.
password
,
password_hash
)
else
seed
=
[
passwordstate_facet
.
id
,
id
,
passwordstate_server
.
id
,
passwordstate_facet
.
password_list_
id
,
pw
.
password
_
id
pw
.
password_id
,
passwordstate_facet
.
password_list_
id
,
passwordstate_facet
.
id
,
id
,
password
state_server
.
id
].
join
':'
seed
=
Base64
.
strict_encode64
(
Digest
::
SHA1
.
digest
(
seed
)).
tr
(
'+'
,
'.'
)
seed
=
Base64
.
strict_encode64
(
Digest
::
SHA1
.
digest
(
seed
)).
gsub
(
%r{[^a-zA-Z0-9./]}
,
'.'
)
puts
"Encrypting
#{
pw
.
password
}
with
#{
seed
}
(
#{
password_hash
}
)"
pw
=
pw
.
password
.
crypt
(
"
#{
PasswordCrypt
::
ALGORITHMS
[
password_hash
]
}#{
seed
}
"
)
end
...
...
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