Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fb48eaba
Commit
fb48eaba
authored
Sep 10, 2018
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Encrypt webhook tokens and URLs in the database
parent
1b7fd53a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
0 deletions
+74
-0
app/models/hooks/web_hook.rb
app/models/hooks/web_hook.rb
+44
-0
changelogs/unreleased/51021-more-attr-encrypted.yml
changelogs/unreleased/51021-more-attr-encrypted.yml
+5
-0
db/migrate/20180910115836_add_attr_encrypted_columns_to_web_hook.rb
.../20180910115836_add_attr_encrypted_columns_to_web_hook.rb
+15
-0
db/schema.rb
db/schema.rb
+4
-0
lib/gitlab/import_export/import_export.yml
lib/gitlab/import_export/import_export.yml
+6
-0
No files found.
app/models/hooks/web_hook.rb
View file @
fb48eaba
...
...
@@ -3,6 +3,16 @@
class
WebHook
<
ActiveRecord
::
Base
include
Sortable
attr_encrypted
:token
,
mode: :per_attribute_iv
,
algorithm:
'aes-256-gcm'
,
key:
Settings
.
attr_encrypted_db_key_base_truncated
attr_encrypted
:url
,
mode: :per_attribute_iv
,
algorithm:
'aes-256-gcm'
,
key:
Settings
.
attr_encrypted_db_key_base_truncated
has_many
:web_hook_logs
,
dependent: :destroy
# rubocop:disable Cop/ActiveRecordDependent
validates
:url
,
presence:
true
,
public_url:
{
allow_localhost:
lambda
(
&
:allow_local_requests?
),
...
...
@@ -27,4 +37,38 @@ class WebHook < ActiveRecord::Base
def
allow_local_requests?
false
end
# In 11.4, the web_hooks table has both `token` and `encrypted_token` fields.
# Ensure that the encrypted version always takes precedence if present.
alias_method
:attr_encrypted_token
,
:token
def
token
attr_encrypted_token
.
presence
||
read_attribute
(
:token
)
end
# In 11.4, the web_hooks table has both `token` and `encrypted_token` fields.
# Pending a background migration to encrypt all fields, we should just clear
# the unencrypted value whenever the new value is set.
alias_method
:'attr_encrypted_token='
,
:'token='
def
token
=
(
value
)
self
.
attr_encrypted_token
=
value
write_attribute
(
:token
,
nil
)
end
# In 11.4, the web_hooks table has both `url` and `encrypted_url` fields.
# Ensure that the encrypted version always takes precedence if present.
alias_method
:attr_encrypted_url
,
:url
def
url
attr_encrypted_url
.
presence
||
read_attribute
(
:url
)
end
# In 11.4, the web_hooks table has both `url` and `encrypted_url` fields.
# Pending a background migration to encrypt all fields, we should just clear
# the unencrypted value whenever the new value is set.
alias_method
:'attr_encrypted_url='
,
:'url='
def
url
=
(
value
)
self
.
attr_encrypted_url
=
value
write_attribute
(
:url
,
nil
)
end
end
changelogs/unreleased/51021-more-attr-encrypted.yml
0 → 100644
View file @
fb48eaba
---
title
:
Encrypt webhook tokens and URLs in the database
merge_request
:
21645
author
:
type
:
security
db/migrate/20180910115836_add_attr_encrypted_columns_to_web_hook.rb
0 → 100644
View file @
fb48eaba
# frozen_string_literal: true
class
AddAttrEncryptedColumnsToWebHook
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
add_column
:web_hooks
,
:encrypted_token
,
:string
add_column
:web_hooks
,
:encrypted_token_iv
,
:string
add_column
:web_hooks
,
:encrypted_url
,
:string
add_column
:web_hooks
,
:encrypted_url_iv
,
:string
end
end
db/schema.rb
View file @
fb48eaba
...
...
@@ -2272,6 +2272,10 @@ ActiveRecord::Schema.define(version: 20180917172041) do
t
.
boolean
"job_events"
,
default:
false
,
null:
false
t
.
boolean
"confidential_note_events"
t
.
text
"push_events_branch_filter"
t
.
string
"encrypted_token"
t
.
string
"encrypted_token_iv"
t
.
string
"encrypted_url"
t
.
string
"encrypted_url_iv"
end
add_index
"web_hooks"
,
[
"project_id"
],
name:
"index_web_hooks_on_project_id"
,
using: :btree
...
...
lib/gitlab/import_export/import_export.yml
View file @
fb48eaba
...
...
@@ -147,6 +147,12 @@ excluded_attributes:
-
:reference
-
:reference_html
-
:epic_id
hooks
:
-
:token
-
:encrypted_token
-
:encrypted_token_iv
-
:encrypted_url
-
:encrypted_url_iv
methods
:
labels
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment