Template Path With No Corresponding Path Parameter (v3)
- Query id: 561710b1-b845-4562-95ce-2397a05ccef4
- Query name: Template Path With No Corresponding Path Parameter (v3)
- Platform: OpenAPI
- Severity: Info
- Category: Structure and Semantics
- CWE: 20
- URL: Github
Description¶
The template path must have a corresponding path parameter for a given operation
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Positive test num. 1 - yaml file
openapi: 3.0.0
info:
title: Simple API overview
version: 1.0.0
paths:
/users/{test-id}:
get:
parameters:
- in: header
name: test-id
required: true
description: The user ID
schema:
type: integer
minimum: 1
responses:
"200":
description: 200 response
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
content:
application/json:
examples:
foo:
value:
versions:
- status: CURRENT
updated: "2011-01-21T11:33:21Z"
id: v2.0
links:
- href: http://127.0.0.1:8774/v2/
rel: self
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
schema:
type: integer
Positive test num. 2 - json file
{
"openapi": "3.0.0",
"info": {
"title": "Simple API overview",
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"foo": {
"value": {
"versions": [
{
"status": "CURRENT",
"updated": "2011-01-21T11:33:21Z",
"id": "v2.0",
"links": [
{
"href": "http://127.0.0.1:8774/v2/",
"rel": "self"
}
]
}
]
}
}
}
}
}
}
}
},
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "ID of the API version",
"required": true,
"schema": {
"type": "integer"
}
}
]
},
"/users/{blabla}": {
"get": {
"parameters": [
{
"in": "header",
"name": "id",
"required": true,
"description": "The user ID",
"schema": {
"type": "integer",
"minimum": 1
}
}
],
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}
Positive test num. 3 - yaml file
openapi: 3.0.0
info:
title: Simple API overview
version: 1.0.0
paths:
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
content:
application/json:
examples:
foo:
value:
versions:
- status: CURRENT
updated: "2011-01-21T11:33:21Z"
id: v2.0
links:
- href: http://127.0.0.1:8774/v2/
rel: self
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
schema:
type: integer
/people/{id}:
get:
parameters: {}
responses:
"200":
description: 200 response
/users/{id}:
get:
parameters: {}
responses:
"200":
description: 200 response
Positive test num. 4 - json file
{
"openapi": "3.0.0",
"info": {
"title": "Simple API overview",
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"foo": {
"value": {
"versions": [
{
"links": [
{
"href": "http://127.0.0.1:8774/v2/",
"rel": "self"
}
],
"status": "CURRENT",
"updated": "2011-01-21T11:33:21Z",
"id": "v2.0"
}
]
}
}
}
}
}
}
}
},
"parameters": [
{
"required": true,
"schema": {
"type": "integer"
},
"name": "Authorization",
"in": "header",
"description": "ID of the API version"
}
]
},
"/people/{id}": {
"get": {
"parameters": {},
"responses": {
"200": {
"description": "200 response"
}
}
}
},
"/users/{id}": {
"get": {
"parameters": {},
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}
Positive test num. 5 - yaml file
swagger: "2.0"
info:
title: Simple API Overview
version: 1.0.0
contact:
name: contact
url: https://www.google.com/
email: user@gmail.com
paths:
/users/{test-id}:
get:
parameters:
- in: header
name: test-id
required: true
description: The user ID
type: string
responses:
"200":
description: 200 response
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
type: string
Positive test num. 6 - json file
{
"swagger": "2.0",
"info": {
"title": "Simple API Overview",
"version": "1.0.0",
"contact": {
"name": "contact",
"url": "https://www.google.com/",
"email": "user@gmail.com"
}
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response"
}
}
},
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "ID of the API version",
"required": true,
"type": "string"
}
]
},
"/users/{blabla}": {
"get": {
"parameters": [
{
"in": "header",
"name": "id",
"required": true,
"description": "The user ID",
"type": "string"
}
],
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}
Positive test num. 7 - yaml file
swagger: "2.0"
info:
title: Simple API Overview
version: 1.0.0
contact:
name: contact
url: https://www.google.com/
email: user@gmail.com
paths:
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
type: string
/people/{id}:
get:
parameters: {}
responses:
"200":
description: 200 response
/users/{id}:
get:
parameters: {}
responses:
"200":
description: 200 response
Positive test num. 8 - json file
{
"swagger": "2.0",
"info": {
"title": "Simple API Overview",
"version": "1.0.0",
"contact": {
"name": "contact",
"url": "https://www.google.com/",
"email": "user@gmail.com"
}
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response"
}
}
},
"parameters": [
{
"required": true,
"name": "Authorization",
"in": "header",
"description": "ID of the API version",
"type": "string"
}
]
},
"/people/{id}": {
"get": {
"parameters": {},
"responses": {
"200": {
"description": "200 response"
}
}
}
},
"/users/{id}": {
"get": {
"parameters": {},
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}
Code samples without security vulnerabilities¶
Negative test num. 1 - yaml file
openapi: 3.0.0
info:
title: Simple API overview
version: 1.0.0
paths:
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
content:
application/json:
examples:
foo:
value:
versions:
- status: CURRENT
updated: "2011-01-21T11:33:21Z"
id: v2.0
links:
- href: http://127.0.0.1:8774/v2/
rel: self
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
schema:
type: integer
/users/{id}:
get:
parameters:
- in: path
name: id
required: true
description: The user ID
schema:
type: integer
minimum: 1
responses:
"200":
description: 200 response
Negative test num. 2 - json file
{
"openapi": "3.0.0",
"info": {
"title": "Simple API overview",
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"foo": {
"value": {
"versions": [
{
"status": "CURRENT",
"updated": "2011-01-21T11:33:21Z",
"id": "v2.0",
"links": [
{
"href": "http://127.0.0.1:8774/v2/",
"rel": "self"
}
]
}
]
}
}
}
}
}
}
}
},
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "ID of the API version",
"required": true,
"schema": {
"type": "integer"
}
}
]
},
"/users/{id}": {
"get": {
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"description": "The user ID",
"schema": {
"type": "integer",
"minimum": 1
}
}
],
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}
Negative test num. 3 - yaml file
swagger: "2.0"
info:
title: Simple API Overview
version: 1.0.0
contact:
name: contact
url: https://www.google.com/
email: user@gmail.com
paths:
"/":
get:
operationId: listVersionsv2
summary: List API versions
responses:
"200":
description: 200 response
parameters:
- name: Authorization
in: header
description: ID of the API version
required: true
type: string
/users/{id}:
get:
parameters:
- in: path
name: id
required: true
description: The user ID
type: string
responses:
"200":
description: 200 response
Negative test num. 4 - json file
{
"swagger": "2.0",
"info": {
"title": "Simple API Overview",
"version": "1.0.0",
"contact": {
"name": "contact",
"url": "https://www.google.com/",
"email": "user@gmail.com"
}
},
"paths": {
"/": {
"get": {
"operationId": "listVersionsv2",
"summary": "List API versions",
"responses": {
"200": {
"description": "200 response"
}
}
},
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "ID of the API version",
"required": true,
"type": "string"
}
]
},
"/users/{id}": {
"get": {
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"description": "The user ID",
"type": "string"
}
],
"responses": {
"200": {
"description": "200 response"
}
}
}
}
}
}