Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

API description problem #3224

Open
ocdevops opened this issue Jun 10, 2017 · 6 comments
Open

API description problem #3224

ocdevops opened this issue Jun 10, 2017 · 6 comments

Comments

@ocdevops
Copy link

ocdevops commented Jun 10, 2017

-swagger-ui version
Tested: 3.0.7-3.0.14
If you add a sample code to the API description in "pre" tags, some of the " will replace to ”

"option": {
       “hello":"demo text”
 }
@ocdevops ocdevops changed the title Description problem API description problem Jun 10, 2017
@webron
Copy link
Contributor

webron commented Jun 12, 2017

Can you provide a definition that reproduces it?

@ocdevops
Copy link
Author

I checked it again and it only happens If I add some text before the pre tag:

"summary": "Demo API",
 "description": "Demo<br><pre>{<br/>&#9;\"demo\": \"value\",<br/>&#9;\"demo2\": \"hello\"&#9;<br>}</pre>",
"operationId": "demoAPI",

It returns:

{
  "demo": "value",
  "demo2": “hello”    
}

After I removed "Demo"

        "summary": "Demo API",
        "description": "<pre>{<br/>&#9;\"demo\": \"value\",<br/>&#9;\"demo2\": \"hello\"&#9;<br>}</pre>",
        "operationId": "demoAPI",

It returns correct response:

{
    "demo": "value",
  "demo2": "hello"    
}

@webron
Copy link
Contributor

webron commented Jun 12, 2017

Interesting. This is all probably due to the introduced sanitizer that was introduced in #3165. We had to add to to deal with some XSS issues. Feel free to take a look, and if you have the capacity, submit a PR to improve it.

@heldersepu
Copy link
Contributor

heldersepu commented Feb 4, 2018

I was testing this under Swagger-Net and it seems to output the description a bit different:

"description": 
  "HelloWorld\r\n<pre>{\r\n    \"demo\": \"val\", \r\n    \"demo2\": \"hello\"\r\n}</pre>"

As you can see there are no <br/> or &#9; instead it uses \r\n
@ocdevops I think that could be workaround for your issue.

@heldersepu
Copy link
Contributor

heldersepu commented Feb 6, 2018

@webron I submitted a PR(#4194) that changes the sanitizer...
I really do not want to break any existing functionality, and certainly not open a door for a possible XSS attack. That will look bad on my resume.

Do you have more details on the XSS issues ?

@shockey
Copy link
Contributor

shockey commented Feb 8, 2018

@heldersepu, https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet is a great jumping-off point for more information about XSS attacks!

Also, check out https://reactjs.org/docs/dom-elements.html#dangerouslysetinnerhtml for information on the baseline protection React provides.

# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

4 participants