Skip to content

Commit

Permalink
Some small changes for some files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hornos3 committed Aug 31, 2024
1 parent 3a15cca commit 92cda44
Show file tree
Hide file tree
Showing 10 changed files with 75 additions and 83 deletions.
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion sources/GhidraDocs/GhidraClass/Debugger/A2-UITour.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ If you are in a system library, e.g., `ld-linux`, then this is the expected beha
You may optionally import it, as suggested by the Debug Console, but this is covered later.
You may also try typing into the Terminal, *one command at a time*, checking for errors after each:

```gdb
```
break main
continue
```
Expand Down
2 changes: 1 addition & 1 deletion sources/GhidraDocs/GhidraClass/Debugger/A3-Breakpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The breakpoint on `rand` will help us find the algorithm that places the mines.

In the Terminal, type the GDB commands to set breakpoints on `srand` and `rand`:

```gdb
```
break srand
break rand
```
Expand Down
6 changes: 3 additions & 3 deletions sources/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ See the help (press **`F1`** on the **gdb via ssh** menu item for advantages and
Chances are, GDB embeds the same Python, so they become importable from GDB.
Test using `gdb` on the target system:

```gdb
```
python import ghidragdb
```

Expand Down Expand Up @@ -147,7 +147,7 @@ ldd $(which gdb)

Or, inside `gdb`:

```gdb
```
(gdb) python-interactive
>>> import sys
>>> sys.version
Expand Down Expand Up @@ -193,7 +193,7 @@ The configuration and result here are similar to using Trace RMI over SSH, but w
1. Click **Listen**, and then take note of the acceptor's port number in the Connections window, e.g., "12345."
1. Now, on the remote system, start `gdb` and type:

```gdb
```
python import ghidragdb
file termmines
# set args, if you'd like
Expand Down
Loading

0 comments on commit 92cda44

Please sign in to comment.