mirror of
https://github.com/github/codeql.git
synced 2026-04-25 16:55:19 +02:00
JS: Record some missing alerts in FileAccessToHttp
This commit is contained in:
@@ -11,7 +11,7 @@ function PostCode(codestring) {
|
||||
'output_format': 'json',
|
||||
'output_info': 'compiled_code',
|
||||
'warning_level' : 'QUIET',
|
||||
'js_code' : codestring // $ Alert - passing data from file to the request json body
|
||||
'js_code' : codestring // $ MISSING: Alert - passing data from file to the request json body
|
||||
});
|
||||
|
||||
// An object of options to indicate where to post to
|
||||
@@ -34,7 +34,7 @@ function PostCode(codestring) {
|
||||
});
|
||||
});
|
||||
|
||||
post_req.write(post_data); // $ Alert - post the data from file to request body
|
||||
post_req.write(post_data); // $ MISSING: Alert - post the data from file to request body
|
||||
post_req.end();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user