Use HTTPS for Microsoft symbol server URL

To prevent man-in-the-middle attack, it's better to use HTTPS for symbol
downloading whenever possible. WinDbg also uses
https://msdl.microsoft.com/download/symbols by default.
This commit is contained in:
Xiaoyin Liu 2019-04-07 22:25:01 +08:00
parent 49c2010b63
commit 9652e1f19c
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
Internet,http://msdl.microsoft.com/download/symbols
Internet,https://msdl.microsoft.com/download/symbols

View file

@ -69,7 +69,7 @@ public class PdbScreenShots extends GhidraScreenShotGenerator {
public void testKnownSymbolServerURLsDialog() throws Exception {
List<URLChoice> urlChoices = new ArrayList<URLChoice>();
urlChoices.add(new URLChoice("Internet", "http://msdl.microsoft.com/download/symbols"));
urlChoices.add(new URLChoice("Internet", "https://msdl.microsoft.com/download/symbols"));
urlChoices.add(new URLChoice("My Network", "https://my_symbol_server.my.org"));
final ObjectChooserDialog<URLChoice> urlDialog =