-
Notifications
You must be signed in to change notification settings - Fork 1
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
Exclude injection alerts where the input data type is not String #115
Conversation
javascript/frameworks/cap/test/queries/loginjection/log-injection-type-sanitized/srv/service.js
Fixed
Show fixed
Hide fixed
javascript/frameworks/cap/test/queries/loginjection/log-injection-type-sanitized/srv/service.js
Fixed
Show fixed
Hide fixed
@@ -0,0 +1,11 @@ | |||
using { advanced_security.log_injection.sample_entities as db_schema } from '../db/schema'; | |||
|
|||
service Service @(path: '/service') { |
Check warning
Code scanning / CodeQL
Entity exposed without authentication Medium test
|
||
service Service @(path: '/service') { | ||
/* Entity to send READ/GET about. */ | ||
entity ServiceEntity as projection on db_schema.Entity2 excluding { Attribute4 } |
Check warning
Code scanning / CodeQL
Entity exposed without authentication Medium test
entity ServiceEntity as projection on db_schema.Entity2 excluding { Attribute4 } | ||
|
||
/* API to talk to Service. */ | ||
action send ( |
Check warning
Code scanning / CodeQL
Entity exposed without authentication Medium test
…/codeql-sap-js into mbaluda/type_sanitizer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
Add an FP test case where the user payload is not of built-in type
String
. The log injection query should not alert on the sink in this case.