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
d40003af
Commit
d40003af
authored
Sep 01, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/security/gitlab@13-3-stable-ee
parent
a986819a
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
97 additions
and
8 deletions
+97
-8
app/services/applications/create_service.rb
app/services/applications/create_service.rb
+10
-1
changelogs/unreleased/security-add-presence-validation-oauth-apps.yml
...nreleased/security-add-presence-validation-oauth-apps.yml
+5
-0
spec/controllers/admin/applications_controller_spec.rb
spec/controllers/admin/applications_controller_spec.rb
+14
-2
spec/controllers/oauth/applications_controller_spec.rb
spec/controllers/oauth/applications_controller_spec.rb
+21
-2
spec/features/admin/admin_manage_applications_spec.rb
spec/features/admin/admin_manage_applications_spec.rb
+17
-1
spec/features/profiles/user_manages_applications_spec.rb
spec/features/profiles/user_manages_applications_spec.rb
+13
-0
spec/services/applications/create_service_spec.rb
spec/services/applications/create_service_spec.rb
+17
-2
No files found.
app/services/applications/create_service.rb
View file @
d40003af
...
...
@@ -11,7 +11,16 @@ module Applications
# EE would override and use `request` arg
def
execute
(
request
)
Doorkeeper
::
Application
.
create
(
params
)
@application
=
Doorkeeper
::
Application
.
new
(
params
)
unless
params
[
:scopes
].
present?
@application
.
errors
.
add
(
:base
,
_
(
"Scopes can't be blank"
))
return
@application
end
@application
.
save
@application
end
end
end
...
...
changelogs/unreleased/security-add-presence-validation-oauth-apps.yml
0 → 100644
View file @
d40003af
---
title
:
Add scope presence validation to OAuth Application creation
merge_request
:
author
:
type
:
security
spec/controllers/admin/applications_controller_spec.rb
View file @
d40003af
...
...
@@ -40,7 +40,7 @@ RSpec.describe Admin::ApplicationsController do
describe
'POST #create'
do
it
'creates the application'
do
create_params
=
attributes_for
(
:application
,
trusted:
true
,
confidential:
false
)
create_params
=
attributes_for
(
:application
,
trusted:
true
,
confidential:
false
,
scopes:
[
'api'
]
)
expect
do
post
:create
,
params:
{
doorkeeper_application:
create_params
}
...
...
@@ -63,7 +63,7 @@ RSpec.describe Admin::ApplicationsController do
context
'when the params are for a confidential application'
do
it
'creates a confidential application'
do
create_params
=
attributes_for
(
:application
,
confidential:
true
)
create_params
=
attributes_for
(
:application
,
confidential:
true
,
scopes:
[
'read_user'
]
)
expect
do
post
:create
,
params:
{
doorkeeper_application:
create_params
}
...
...
@@ -75,6 +75,18 @@ RSpec.describe Admin::ApplicationsController do
expect
(
application
).
to
have_attributes
(
create_params
.
except
(
:uid
,
:owner_type
))
end
end
context
'when scopes are not present'
do
it
'renders the application form on errors'
do
create_params
=
attributes_for
(
:application
,
trusted:
true
,
confidential:
false
)
expect
do
post
:create
,
params:
{
doorkeeper_application:
create_params
}
end
.
not_to
change
{
Doorkeeper
::
Application
.
count
}
expect
(
response
).
to
render_template
:new
end
end
end
describe
'PATCH #update'
do
...
...
spec/controllers/oauth/applications_controller_spec.rb
View file @
d40003af
...
...
@@ -123,7 +123,8 @@ RSpec.describe Oauth::ApplicationsController do
invalid_uri_params
=
{
doorkeeper_application:
{
name:
'foo'
,
redirect_uri:
'javascript://alert()'
redirect_uri:
'javascript://alert()'
,
scopes:
[
'api'
]
}
}
...
...
@@ -133,6 +134,23 @@ RSpec.describe Oauth::ApplicationsController do
end
end
context
'when scopes are not present'
do
render_views
it
'shows an error for blank scopes'
do
invalid_uri_params
=
{
doorkeeper_application:
{
name:
'foo'
,
redirect_uri:
'http://example.org'
}
}
post
:create
,
params:
invalid_uri_params
expect
(
response
.
body
).
to
include
'Scopes can't be blank'
end
end
it_behaves_like
'redirects to login page when the user is not signed in'
it_behaves_like
'redirects to 2fa setup page when the user requires it'
end
...
...
@@ -172,7 +190,8 @@ RSpec.describe Oauth::ApplicationsController do
{
doorkeeper_application:
{
name:
'foo'
,
redirect_uri:
'http://example.org'
redirect_uri:
'http://example.org'
,
scopes:
[
'api'
]
}
}
end
...
...
spec/features/admin/admin_manage_applications_spec.rb
View file @
d40003af
...
...
@@ -7,7 +7,7 @@ RSpec.describe 'admin manage applications' do
sign_in
(
create
(
:admin
))
end
it
do
it
'creates new oauth application'
do
visit
admin_applications_path
click_on
'New application'
...
...
@@ -16,6 +16,7 @@ RSpec.describe 'admin manage applications' do
fill_in
:doorkeeper_application_name
,
with:
'test'
fill_in
:doorkeeper_application_redirect_uri
,
with:
'https://test.com'
check
:doorkeeper_application_trusted
check
:doorkeeper_application_scopes_read_user
click_on
'Submit'
expect
(
page
).
to
have_content
(
'Application: test'
)
expect
(
page
).
to
have_content
(
'Application ID'
)
...
...
@@ -43,4 +44,19 @@ RSpec.describe 'admin manage applications' do
end
expect
(
page
.
find
(
'.oauth-applications'
)).
not_to
have_content
(
'test_changed'
)
end
context
'when scopes are blank'
do
it
'returns an error'
do
visit
admin_applications_path
click_on
'New application'
expect
(
page
).
to
have_content
(
'New application'
)
fill_in
:doorkeeper_application_name
,
with:
'test'
fill_in
:doorkeeper_application_redirect_uri
,
with:
'https://test.com'
click_on
'Submit'
expect
(
page
).
to
have_content
(
"Scopes can't be blank"
)
end
end
end
spec/features/profiles/user_manages_applications_spec.rb
View file @
d40003af
...
...
@@ -15,6 +15,7 @@ RSpec.describe 'User manages applications' do
fill_in
:doorkeeper_application_name
,
with:
'test'
fill_in
:doorkeeper_application_redirect_uri
,
with:
'https://test.com'
check
:doorkeeper_application_scopes_read_user
click_on
'Save application'
expect
(
page
).
to
have_content
'Application: test'
...
...
@@ -41,4 +42,16 @@ RSpec.describe 'User manages applications' do
end
expect
(
page
.
find
(
'.oauth-applications'
)).
not_to
have_content
'test_changed'
end
context
'when scopes are blank'
do
it
'returns an error'
do
expect
(
page
).
to
have_content
'Add new application'
fill_in
:doorkeeper_application_name
,
with:
'test'
fill_in
:doorkeeper_application_redirect_uri
,
with:
'https://test.com'
click_on
'Save application'
expect
(
page
).
to
have_content
(
"Scopes can't be blank"
)
end
end
end
spec/services/applications/create_service_spec.rb
View file @
d40003af
...
...
@@ -6,9 +6,24 @@ RSpec.describe ::Applications::CreateService do
include
TestRequestHelpers
let
(
:user
)
{
create
(
:user
)
}
let
(
:params
)
{
attributes_for
(
:application
)
}
subject
{
described_class
.
new
(
user
,
params
)
}
context
'when scopes are present'
do
let
(
:params
)
{
attributes_for
(
:application
,
scopes:
[
'read_user'
])
}
it
{
expect
{
subject
.
execute
(
test_request
)
}.
to
change
{
Doorkeeper
::
Application
.
count
}.
by
(
1
)
}
end
context
'when scopes are missing'
do
let
(
:params
)
{
attributes_for
(
:application
)
}
it
{
expect
{
subject
.
execute
(
test_request
)
}.
not_to
change
{
Doorkeeper
::
Application
.
count
}
}
it
'includes blank scopes error message'
do
application
=
subject
.
execute
(
test_request
)
expect
(
application
.
errors
.
full_messages
).
to
include
"Scopes can't be blank"
end
end
end
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