mirror of https://github.com/pwndbg/pwndbg
Move Start section to the top, update commands. (#2006)
This commit is contained in:
parent
fe27e16a14
commit
bb4af280b0
|
@ -12,8 +12,9 @@ Assemble shellcode into bytes
|
|||
|
||||
|
||||
```bash
|
||||
usage: asm [-h] [-f {hex,string}] [--arch {powerpc64,aarch64,powerpc,riscv32,riscv64,sparc64,mips64,msp430,alpha,amd64,sparc,thumb,cris,i386,ia64,m68k,mips,s390,none,avr,arm,vax}]
|
||||
[-v AVOID] [-n] [-z] [-i INFILE]
|
||||
usage: asm [-h] [-f {hex,string}]
|
||||
[--arch {powerpc64,aarch64,powerpc,riscv32,riscv64,sparc64,mips64,msp430,alpha,amd64,sparc,thumb,cris,i386,ia64,m68k,mips,s390,none,avr,arm,vax}] [-v AVOID] [-n]
|
||||
[-z] [-i INFILE]
|
||||
[shellcode ...]
|
||||
|
||||
```
|
||||
|
|
|
@ -4,6 +4,13 @@
|
|||
|
||||
# Commands
|
||||
|
||||
## Start
|
||||
|
||||
- [attachp](attachp/attachp.md) Attaches to a given pid, process name or device file.
|
||||
- [entry](start/entry.md)
|
||||
- [sstart](start/sstart.md) Alias for 'tbreak __libc_start_main; run'.
|
||||
- [start](start/start.md)
|
||||
|
||||
## Integrations
|
||||
|
||||
- [ai](ai/ai.md) Ask GPT-3 a question about the current debugging context.
|
||||
|
@ -59,13 +66,6 @@
|
|||
- [tips](tips/tips.md) Shows tips.
|
||||
- [valist](valist/valist.md) Dumps the arguments of a va_list.
|
||||
|
||||
## Start
|
||||
|
||||
- [attachp](attachp/attachp.md) Attaches to a given pid, process name or device file.
|
||||
- [entry](start/entry.md)
|
||||
- [sstart](start/sstart.md) Alias for 'tbreak __libc_start_main; run'.
|
||||
- [start](start/start.md)
|
||||
|
||||
## Stack
|
||||
|
||||
- [canary](canary/canary.md) Print out the current stack canary.
|
||||
|
|
Loading…
Reference in New Issue