Skip to content
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
4 changes: 4 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
Vue.filter("date", DateFilter);
Vue.filter("error", ErrorFilter);

const queryParams = new URLSearchParams(document.location.search);
const redirectUrl = queryParams.get("url");
document.location = redirectUrl;

Check failure

Code scanning / SonarCloudsquad-6

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarCloud

Check failure

Code scanning / SonarCloudsquad-5

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarCloud

Check failure

Code scanning / SonarCloudsquad-2

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarCloud

Check failure

Code scanning / SonarCloudsquad-3

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarCloud

Check failure

Code scanning / SonarCloudsquad-1

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

Check failure

Code scanning / SonarCloudDev

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

Check failure

Code scanning / SonarCloud

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

Check failure

Code scanning / SonarCloudStaging

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

Check failure

Code scanning / SonarCloudDev6

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

Check failure

Code scanning / SonarCloudDev7

DOM updates should not lead to open redirect vulnerabilities High

Change this code to not perform client-side redirection based on user-controlled data. See more on SonarQube Cloud

ApiService.init();

// Ensure we checked auth before each page load.
Expand Down