We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a453405 commit c49e9e8Copy full SHA for c49e9e8
javascript/ql/src/Security/CWE-918/examples/RequestForgeryGood.js
@@ -3,7 +3,7 @@ import http from 'http';
3
const server = http.createServer(function(req, res) {
4
const target = new URL(req.url).searchParams.get("target");
5
6
- const subdomain;
+ let subdomain;
7
if (target === 'EU') {
8
subdomain = "europe"
9
} else {
0 commit comments