首页
社区
课程
招聘
[求助]给软件加Themida1.9.1.0的壳,发现一个奇怪的问题。
发表于: 2007-10-4 12:27 4341

[求助]给软件加Themida1.9.1.0的壳,发现一个奇怪的问题。

2007-10-4 12:27
4341
Themida的说明中提到这样一个宏,应该是使用虚拟机技术保护并定义出保护级别的宏

VM Macros with Virtualization Level

VM_START_WITHLEVEL(5)      

' the code here will be mutated with level 5 and converted into virtual machine code  

VM_END   

可是在ThemidaSDK.inc中并没有找到这个宏的定义,一旦在源程序中加入这个宏,即使引入了ThemidaSDK.inc文件,编译也是通不过的。请问有谁能解答下这个问题吗。

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 494
活跃值: (629)
能力值: ( LV9,RANK:1210 )
在线值:
发帖
回帖
粉丝
2
C语言接口有,你试试自己加进去

#define VM_START_WITHLEVEL(x) \
  __asm __emit 0xEB \
  __asm __emit 0x10 \
  __asm __emit 0x57 \
  __asm __emit 0x4C \
  __asm __emit 0x20 \
  __asm __emit 0x20 \
  __asm __emit 0x0C \
  __asm __emit 0x00 \
  __asm __emit 0x00 \
  __asm __emit 0x00 \
  __asm __emit 0x00 \
  __asm __emit x \
  __asm __emit 0x00 \
  __asm __emit 0x00 \
  __asm __emit 0x57 \
  __asm __emit 0x4C \
  __asm __emit 0x20 \
  __asm __emit 0x20 \
2007-10-4 12:50
0
雪    币: 200
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
谢谢版主回了,大家都谈脱壳,很少谈加壳的,难得版主还关注一下。想问版主一下,Themida1.91.0的虚拟机保护技术,是不是也无法阻止别人来HOOK程序中的API啊,我用WPE9.0拦接我程序的封包,尽管我在Virtual API-Wrapper 中已经在将相关API选上了保护,但还是可拦下封包,并查看其内容。
2007-10-4 23:31
0
游客
登录 | 注册 方可回帖
返回
//