首页
社区
课程
招聘
[旧帖] [求助]这段代码怎么显示关闭窗口? 0.00雪花
发表于: 2013-2-15 16:55 1352

[旧帖] [求助]这段代码怎么显示关闭窗口? 0.00雪花

2013-2-15 16:55
1352
写出的shellcode的源代码如下:

  #include

  int main()

  HINSTANCE LibHandle;

  char dllbuf11= "user32.dll";

  LibHandle = LoadLibrary(dllbuf);

  _asm

  sub sp,0x440

  xor ebx,ebx

  push ebx // cut string

  push 0x74736577

  push 0x6C696166//push failwest

  mov eax,esp //load address of failwest

  push ebx

  push eax

  push eax

  push ebx

  mov eax,0x77D804EA // address should be reset in different OS

  call eax //call MessageboxA

  push ebx

  mov eax,0x7C81CDDA

  call eax //call exit(0)

[课程]Linux pwn 探索篇!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 20
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
原文:
http://tech.hexun.com/2009-06-21/118843037.html
2013-2-15 16:56
0
雪    币: 5
活跃值: (108)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
这个是SHELLCODE吗??
好像是汇编
而且地址都是固定的
不同的地址API是有不同的地址的!
2013-2-15 19:51
0
游客
登录 | 注册 方可回帖
返回
//