#include <sys/mman.h>
//printf_my_code就是printf_my函数
unsigned char printf_my_code[59] = {
0x55,0x89,0xe5,0x53,0x83,0xec,0x20,0xc7,0x45,0xeb,
0x74,0x65,0x73,0x74,0xc7,0x45,0xef,0x20,0x6c,0x64,
0x20,0xc7,0x45,0xf3,0x61,0x64,0x64,0x72,0xc7,0x45,
0xf7,0x65,0x73,0x73,0x0a,0xc6,0x45,0xfb,0x00,0x8d,
0x45,0xeb,0x8b,0x55,0x08,0x89,0xd3,0x50,0xff,0xd3,
0x83,0xc4,0x04,0x83,0xc4,0x20,0x5b,0x5d,0xc3 };
void (*pprintf_my)(void*);
int main(int argc, char** argv) {
int fd;
void *pcode;
fd=open("/tmp/tmpcodes",O_CREAT|O_RDWR|O_TRUNC,0644);
ftruncate(fd,100);
pcode=mmap(NULL,100,PROT_READ|PROT_WRITE|PROT_EXEC,MAP_SHARED,fd,0);
memmove(pcode,printf_my_code,59); //printf_my_code就是printf_my函数,复制到pcode是因为这块内存可执行。这样呢你就可以把函数放到你指定的地址上了,前提是这个地址要可执行。
pprintf_my=pcode;
pprintf_my((void*)printf);
munmap(pcode,100);
close(fd);
return (EXIT_SUCCESS);
} |