mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
74 lines
2.9 KiB
Bash
Executable file
74 lines
2.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
## ###
|
|
# 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 remote gdb
|
|
#@image-opt arg:1
|
|
#@desc <html><body width="300px">
|
|
#@desc <h3>Launch with local <tt>gdb</tt> and connect to a stub (e.g., <tt>gdbserver</tt>)</h3>
|
|
#@desc <p>
|
|
#@desc This will start <tt>gdb</tt> on the local system and then use it to connect to the remote system.
|
|
#@desc For setup instructions, press <b>F1</b>.
|
|
#@desc </p>
|
|
#@desc </body></html>
|
|
#@menu-group remote
|
|
#@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"
|
|
|
|
if [ -d ${GHIDRA_HOME}/ghidra/.git ]
|
|
then
|
|
export PYTHONPATH=$GHIDRA_HOME/ghidra/Ghidra/Debug/Debugger-agent-gdb/build/pypkg/src:$PYTHONPATH
|
|
export PYTHONPATH=$GHIDRA_HOME/ghidra/Ghidra/Debug/Debugger-rmi-trace/build/pypkg/src:$PYTHONPATH
|
|
elif [ -d ${GHIDRA_HOME}/.git ]
|
|
then
|
|
export PYTHONPATH=$GHIDRA_HOME/Ghidra/Debug/Debugger-agent-gdb/build/pypkg/src:$PYTHONPATH
|
|
export PYTHONPATH=$GHIDRA_HOME/Ghidra/Debug/Debugger-rmi-trace/build/pypkg/src:$PYTHONPATH
|
|
else
|
|
export PYTHONPATH=$GHIDRA_HOME/Ghidra/Debug/Debugger-agent-gdb/pypkg/src:$PYTHONPATH
|
|
export PYTHONPATH=$GHIDRA_HOME/Ghidra/Debug/Debugger-rmi-trace/pypkg/src:$PYTHONPATH
|
|
fi
|
|
|
|
declare -a args
|
|
|
|
args+=(-q)
|
|
args+=(-ex "set pagination off")
|
|
args+=(-ex "set confirmation off")
|
|
args+=(-ex "show version")
|
|
args+=(-ex "python import ghidragdb")
|
|
args+=(-ex "set architecture $OPT_ARCH")
|
|
args+=(-ex "set endian $OPT_ENDIAN")
|
|
if [ -n "$1" ]
|
|
then
|
|
args+=(-ex "file '$1'")
|
|
fi
|
|
args+=(-ex "echo Connecting to $OPT_HOST:$OPT_PORT...")
|
|
args+=(-ex "target $OPT_TARGET_TYPE $OPT_HOST:$OPT_PORT")
|
|
args+=(-ex "ghidra trace connect '$GHIDRA_TRACE_RMI_ADDR'")
|
|
args+=(-ex "ghidra trace start")
|
|
args+=(-ex "ghidra trace sync-enable")
|
|
args+=(-ex "ghidra trace sync-synth-stopped")
|
|
args+=(-ex "set confirm on")
|
|
args+=(-ex "set pagination on")
|
|
|
|
"$OPT_GDB_PATH" "${args[@]}"
|