remove redundant telescope mentions (#2784)

pull/2798/head
k4lizen 9 months ago committed by GitHub
parent 461ac6214a
commit f795d5d6b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -93,7 +93,6 @@
- [contextunwatch](context/contextunwatch.md) Removes an expression previously added to be watched.
- [contextwatch](context/contextwatch.md)
- [regs](context/regs.md) Print out all registers and enhance the information.
- [xinfo](xinfo/xinfo.md) Shows offsets of the specified address from various useful locations.
## Register
@ -110,8 +109,6 @@
- [mmap](mmap/mmap.md)
- [mprotect](mprotect/mprotect.md)
- [p2p](p2p/p2p.md) Pointer to pointer chain search. Searches given mapping for all pointers that point to specified mapping.
- [telescope](p2p/ts.md) Recursively dereferences pointers starting at the specified address.
- [telescope](peda/xprint.md) Recursively dereferences pointers starting at the specified address.
- [probeleak](probeleak/probeleak.md)
- [search](search/search.md) Search memory for byte sequences, strings, pointers, and integer values.
- [telescope](telescope/telescope.md) Recursively dereferences pointers starting at the specified address.

@ -1,32 +0,0 @@
# telescope
## Description
Recursively dereferences pointers starting at the specified address.
## Usage:
```bash
usage: telescope [-h] [-r] [-f] [-i] [address] [count]
```
## Positional Arguments
|Positional Argument|Help|
| :--- | :--- |
|`address`|The address to telescope at. (default: %(default)s)|
|`count`|The number of lines to show. (default: %(default)s)|
## Optional Arguments
|Short|Long|Default|Help|
| :--- | :--- | :--- | :--- |
|`-h`|`--help`||show this help message and exit|
|`-r`|`--reverse`||Show <count> previous addresses instead of next ones (default: %(default)s)|
|`-f`|`--frame`||Show the stack frame, from rsp to rbp (default: %(default)s)|
|`-i`|`--inverse`||Show the stack reverse growth (default: %(default)s)|

@ -1,32 +0,0 @@
# telescope
## Description
Recursively dereferences pointers starting at the specified address.
## Usage:
```bash
usage: telescope [-h] [-r] [-f] [-i] [address] [count]
```
## Positional Arguments
|Positional Argument|Help|
| :--- | :--- |
|`address`|The address to telescope at. (default: %(default)s)|
|`count`|The number of lines to show. (default: %(default)s)|
## Optional Arguments
|Short|Long|Default|Help|
| :--- | :--- | :--- | :--- |
|`-h`|`--help`||show this help message and exit|
|`-r`|`--reverse`||Show <count> previous addresses instead of next ones (default: %(default)s)|
|`-f`|`--frame`||Show the stack frame, from rsp to rbp (default: %(default)s)|
|`-i`|`--inverse`||Show the stack reverse growth (default: %(default)s)|

@ -48,7 +48,3 @@ def xuntil(target) -> None:
gdb.execute("continue", from_tty=False)
else:
gdb.execute("run", from_tty=False)
xinfo = pwndbg.commands.context.context
xprint = pwndbg.commands.telescope.telescope

Loading…
Cancel
Save