Skip to content

add security note about accessing urls #1600

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions specs/jsonschema-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -1990,6 +1990,12 @@ A malicious schema author could place executable code or other dangerous
material within a `$comment`. Implementations MUST NOT parse or otherwise take
action based on `$comment` contents.

When encountering an IRI that also represents a valid file system or network
location, implementations are discouraged from automatically making an operation to
access that location. Schema authors should take care when configuring
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The audience of the spec isn't schema authors and we shouldn't be speaking directly to them. We've moved away from that in other places and I think we should stick to that as a policy.

We can say the same thing this is saying, but from the perspective of the implementation.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is probably the one place where it should be okay to address the schema author. They should know the risks of using an implementation.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's fine to want to say this to to schema authors. I just don't think the spec is an effective way to do that. Few schema authors will actually read the spec. It's not for them. It's for implementers. Schema authors read documentation. If we want to address schema authors like this, that's the place to do it, not the spec.

I think we can include the same message just shift the language to address the implementer instead of the schema author. For example.

Suggested change
access that location. Schema authors should take care when configuring
access that location. Implementations that choose to support retrieval over untrusted
connections should require users to configure the implementation to enable that
functionality.

implementations to operate over a file system or network as this could expose
the host system.

## IANA Considerations

### `application/schema+json`
Expand Down