Skip to content

Commit

Permalink
Update HTTP link to HTTPS
Browse files Browse the repository at this point in the history
http://www.nvidia.com redirects to https://www.nvidia.com/, so linking to http is reduntant.
More importantly, it could be considered a security issue, do to the nature of plain http. An attacker could perform a MITM attack and redirect the HTTP request to a malicious website.
```
> GET / HTTP/1.1
> Host: www.nvidia.com

Response:
< HTTP/1.1 307 Temporary Redirect
< Location: https://www.nvidia.com/
```
  • Loading branch information
alcaparra authored and aritger committed May 25, 2022
1 parent ce3d74f commit 570b630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nvidia-modeset/src/nvkms-framelock.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static NVFrameLockEvoPtr AllocFrameLockEvo(NVDevEvoPtr pDevEvo,
nvEvoLogDev(pDevEvo, EVO_LOG_ERROR, "The firmware on this Quadro Sync "
"card is not compatible with the GPUs connected to it."
" Please visit "
"<http://www.nvidia.com/object/quadro-sync.html> "
"<https://www.nvidia.com/object/quadro-sync.html> "
"for instructions on installing the correct firmware.");
goto fail;
}
Expand Down

0 comments on commit 570b630

Please sign in to comment.