We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current implementation does not provide automated escaping of SPARQL inputs.
Example:
const result = await SELECT` select * where { ?s rdfs:label ?x. FILTER( ?x = "${str}" ) }`
The problem here is that if str variable comes from the user and not sanitized it could lead to SPARQL injection.
str
The text was updated successfully, but these errors were encountered:
vsimko
No branches or pull requests
The current implementation does not provide automated escaping of SPARQL inputs.
Example:
The problem here is that if
str
variable comes from the user and not sanitized it could lead to SPARQL injection.The text was updated successfully, but these errors were encountered: