mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00

Change name of symbolserver 'remote' property to 'untrusted' to reflectits intended usage.Add column in config table to allow user to toggle trusted status onhttp:// symbol servers (the only type that currently supports thisconcept)
44 lines
1.6 KiB
Java
44 lines
1.6 KiB
Java
/* ###
|
|
* IP: GHIDRA
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
//Example preScript to configure the PDB symbol server service to use the ~/symbols directory
|
|
//as the location to store symbol files, and to search Microsoft's public
|
|
//symbol server.
|
|
//The ~/symbols directory should already exist and be initialized as a symbol
|
|
//storage location.
|
|
//@category PDB
|
|
import java.io.File;
|
|
import java.util.List;
|
|
|
|
import ghidra.app.script.GhidraScript;
|
|
import pdb.PdbPlugin;
|
|
import pdb.symbolserver.*;
|
|
|
|
public class PdbSymbolServerExamplePrescript extends GhidraScript {
|
|
|
|
@Override
|
|
protected void run() throws Exception {
|
|
File homeDir = new File(System.getProperty("user.home"));
|
|
File symDir = new File(homeDir, "symbols");
|
|
LocalSymbolStore localSymbolStore = new LocalSymbolStore(symDir);
|
|
HttpSymbolServer msSymbolServer =
|
|
HttpSymbolServer.createTrusted("https://msdl.microsoft.com/download/symbols/");
|
|
SymbolServerService symbolServerService =
|
|
new SymbolServerService(localSymbolStore, List.of(msSymbolServer));
|
|
|
|
PdbPlugin.saveSymbolServerServiceConfig(symbolServerService);
|
|
}
|
|
}
|
|
|