Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
27fa9c3c
Commit
27fa9c3c
authored
Jun 04, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Only allow POST and PUT for API request
parent
92db6820
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/shrpx_api_downstream_connection.cc
src/shrpx_api_downstream_connection.cc
+11
-0
No files found.
src/shrpx_api_downstream_connection.cc
View file @
27fa9c3c
...
...
@@ -73,6 +73,7 @@ int APIDownstreamConnection::send_reply(unsigned int http_status,
switch
(
http_status
)
{
case
400
:
case
405
:
case
413
:
resp
.
fs
.
add_header_token
(
StringRef
::
from_lit
(
"connection"
),
StringRef
::
from_lit
(
"close"
),
false
,
...
...
@@ -89,6 +90,7 @@ int APIDownstreamConnection::send_reply(unsigned int http_status,
int
APIDownstreamConnection
::
push_request_headers
()
{
auto
&
req
=
downstream_
->
request
();
auto
&
resp
=
downstream_
->
response
();
if
(
req
.
path
!=
StringRef
::
from_lit
(
"/api/v1alpha1/backend/replace"
))
{
send_reply
(
404
,
StringRef
::
from_lit
(
"404 Not Found"
));
...
...
@@ -96,6 +98,15 @@ int APIDownstreamConnection::push_request_headers() {
return
0
;
}
if
(
req
.
method
!=
HTTP_POST
&&
req
.
method
!=
HTTP_PUT
)
{
resp
.
fs
.
add_header_token
(
StringRef
::
from_lit
(
"allow"
),
StringRef
::
from_lit
(
"POST, PUT"
),
false
,
-
1
);
send_reply
(
405
,
http2
::
get_status_string
(
downstream_
->
get_block_allocator
(),
405
));
return
0
;
}
// This works with req.fs.content_length == -1
if
(
req
.
fs
.
content_length
>
static_cast
<
int64_t
>
(
get_config
()
->
api
.
max_request_body
))
{
...
...
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