## ### # 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. ## #@title gdb remote #@image-opt arg:1 #@desc
#@desc#@desc This will start gdb on the local system and then use it to connect to the remote system. #@desc For setup instructions, press F1. #@desc
#@desc #@menu-group gdb #@icon icon.debugger #@help gdb#remote #@enum TargetType:str remote extended-remote #@enum Endian:str auto big little #@arg :file "Image" "The target binary executable image (a copy on the local system)" #@env OPT_TARGET_TYPE:TargetType="remote" "Target" "The type of remote target" #@env OPT_HOST:str="localhost" "Host" "The hostname of the target" #@env OPT_PORT:int=9999 "Port" "The host's listening port" #@env OPT_GDB_PATH:file="gdb" "gdb command" "The path to gdb on the local system. Omit the full path to resolve using the system PATH." #@env OPT_ARCH:str="auto" "Architecture" "Target architecture override" #@env OPT_ENDIAN:Endian="auto" "Endian" "Target byte order" . ..\support\gdbsetuputils.ps1 $pypathTrace = Ghidra-Module-PyPath "Debug/Debugger-rmi-trace" $pypathGdb = Ghidra-Module-PyPath "Debug/Debugger-agent-gdb" $Env:PYTHONPATH = "$pypathGdb;$pypathTrace;$Env:PYTHONPATH" $arglist = Compute-Gdb-Remote-Args ` -TargetImage $args[0] ` -TargetCx "$Env:OPT_TARGET_TYPE $Env:OPT_HOST`:$Env:OPT_PORT" ` -RmiAddress "$Env:GHIDRA_TRACE_RMI_ADDR" Start-Process -FilePath $arglist[0] -ArgumentList $arglist[1..$arglist.Count] -NoNewWindow -Wait