Move Start section to the top, update commands. (#2006)

This commit is contained in:
Niko 2024-02-01 17:00:32 +01:00 committed by GitHub
parent fe27e16a14
commit bb4af280b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 9 deletions

View File

@ -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 ...]
```

View File

@ -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.