2

我正在尝试学习一些堆栈溢出技术并在其中使用 shellcode。我能够成功使用一些基本的 shellcode。然后我开始exeve在汇编中使用并调用ls -l它,再次成功。现在我正在尝试使用相对寻址并摆脱代码中的空值。因此,我尝试了一个简单的自修改代码。我知道代码段是只读的,所以我尝试调用mprotect使其可写。我的代码仍然无法正常工作,并且在movb %al, 0x7(%esi). 如果有人可以让我深入了解我的代码中的错误之处,我将不胜感激。

.text
.globl _start

_start:
  jmp StartPoint

  execvecall:
  popl %esi    # the address of string

  #calling mprotect to make the memory writable
  movl $0x7d, %eax
  movl %esi, %ebx
  movl $0x20, %ecx
  movl $7, %edx
  int $0x80

  xorl %eax, %eax

  movb %al, 0x7(%esi)  #putting zero for at the end of /bin/ls
  movb %al, 0xa(%esi)  #putting another zero at the end of -l

  #this part forms an array ending with for the second parameter of execve
  movl %esi, 0xb(%esi)
  movl %esi, %ebx
  addl $8, %ebx
  movl %ebx, 0xf(%esi)
  movl %eax, 0x13(%esi)

  movl %esi, %ebx
  leal 0xb(%esi), %ecx
  leal 0x13(%esi), %edx

  movb $11, %al
  int $0x80

StartPoint:
  call execvecall
SomeVarHere:
  .ascii "/bin/ls0-l0111122223333"
4

1 回答 1

5

man mprotect说:

该实现可能要求它addr是由 . 返回的页面大小的倍数sysconf()

这显然是您机器上的情况。假设您有 4 KiB 页面(在 x86 上,没有 PSE),您可以通过执行向下舍入地址

and $0xfffff000, %ebx

movl %esi, %ebx

准备打电话的时候mprotect

请注意,调用mprotect会更改整个页面的保护。

于 2015-09-22T16:02:45.257 回答