这里就以exit 系统调用为例
首先编写C代码,在GDB中使用 disass _exit 反汇编exit 函数,之后迁移为汇编代码。
section .text global _start _start: xor eax, eax xor ebx, ebx mov al, 0x01 int 0x80
nasm -f elf exit.asm ld exit.o -o exit exit中间可能由于系统问题导致如下问题:
[root@localhost home]# ld exit.o -o exit. ld: i386 architecture of input file `exit.o' is incompatible with i386:x86-64 output
elf32 ELF32 (i386) object files (e.g. Linux) elf ELF (short name for ELF32) elf64 ELF64 (x86_64) object files (e.g. Linux)然后用elf64即可,这里需要和你的系统相匹配,具体可以用uname -a 查看
[root@localhost home]# nasm -f elf64 exit.asm [root@localhost home]# ld exit.o -o exit [root@localhost home]# ./exit然后使用 strace 命令
[root@localhost home]# strace ./exit execve("./exit", ["./exit"], [/* 31 vars */]) = 0 write(0, NULL, 0 <unfinished ... exit status 0>
如果需要建立新的shell的话,则需要用到 execve 系统调用,与之前一样,并设置 SUID (sc为文件名)
sudo chown root sc sudo chmod +s sc
最后的工作就是绑定socket然后发送了
当然如果服务器端是可以用ptrace进行跟踪的,从而防御这种系统调用的攻击