mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
72 lines
2.9 KiB
Bash
Executable file
72 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 wine + gdb
|
|
#@image-opt arg:1
|
|
#@desc <html><body width="300px">
|
|
#@desc <h3>Launch with <tt>gdb</tt> and <tt>wine</tt></h3>
|
|
#@desc <p>
|
|
#@desc This will launch the target on the local machine using <tt>gdb</tt> and <tt>wine</tt>.
|
|
#@desc For setup instructions, press <b>F1</b>.
|
|
#@desc </p>
|
|
#@desc </body></html>
|
|
#@menu-group cross
|
|
#@icon icon.debugger
|
|
#@help gdb#wine
|
|
#@enum Endian:str auto big little
|
|
#@arg :file! "Image" "The target binary executable image"
|
|
#@args "Arguments" "Command-line arguments to pass to the target"
|
|
#@env OPT_WINE_PATH:file="/usr/lib/wine/wine64" "Path to wine binary" "The path to the wine executable for your target architecture."
|
|
#@env OPT_GDB_PATH:file="gdb" "gdb command" "The path to gdb. Omit the full path to resolve using the system PATH."
|
|
#@env OPT_ARCH:str="i386:x86-64" "Architecture" "Target architecture"
|
|
#@env OPT_ENDIAN:Endian="auto" "Endian" "Target byte order"
|
|
#@env OPT_EXTRA_TTY:bool=false "Inferior TTY" "Provide a separate terminal emulator for the target."
|
|
#@tty TTY_TARGET if env:OPT_EXTRA_TTY
|
|
|
|
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
|
|
|
|
# NOTE: Ghidra will leave TTY_TARGET empty, which gdb takes for the same terminal.
|
|
|
|
"$OPT_GDB_PATH" \
|
|
-q \
|
|
-ex "set pagination off" \
|
|
-ex "set confirm off" \
|
|
-ex "show version" \
|
|
-ex "python import ghidragdb.wine" \
|
|
-ex "set architecture $OPT_ARCH" \
|
|
-ex "set endian $OPT_ENDIAN" \
|
|
-ex "file \"$OPT_WINE_PATH\"" \
|
|
-ex "set args $@" \
|
|
-ex "set inferior-tty $TTY_TARGET" \
|
|
-ex "starti" \
|
|
-ex "ghidra wine run-to-image \"$1\"" \
|
|
-ex "ghidra trace connect \"$GHIDRA_TRACE_RMI_ADDR\"" \
|
|
-ex "ghidra trace start \"$1\"" \
|
|
-ex "ghidra trace sync-enable" \
|
|
-ex "ghidra trace sync-synth-stopped" \
|
|
-ex "set confirm on" \
|
|
-ex "set pagination on"
|