mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
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:
parent
49c2010b63
commit
9652e1f19c
@ -1 +1 @@
|
||||
Internet,http://msdl.microsoft.com/download/symbols
|
||||
Internet,https://msdl.microsoft.com/download/symbols
|
||||
|
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user