龙马谷

 找回密码
 立即注册

QQ登录

只需一步,快速开始

龙马谷VIP会员办理客服QQ:82926983(如果临时会话没有收到回复,请先加QQ好友再发。)
1 [已完结] GG修改器新手入门与实战教程 31课 2 [已完结] GG修改器美化修改教程 6课 3 [已完结] GG修改器Lua脚本新手入门教程 12课
4 [已完结] 触动精灵脚本新手入门必学教程 22课 5 [已完结] 手游自动化脚本入门实战教程 9课 6 [已完结] C++射击游戏方框骨骼透视与自瞄教程 27课
7 [已完结] C++零基础UE4逆向开发FPS透视自瞄教程 29课 8 [已完结] C++零基础大漠模拟器手游自动化辅助教程 22课
以下是天马阁VIP教程,本站与天马阁合作,赞助VIP可以获得天马阁对应VIP会员,名额有限! 点击进入天马阁论坛
1 [已完结] x64CE与x64dbg入门基础教程 7课 2 [已完结] x64汇编语言基础教程 16课 3 [已完结] x64辅助入门基础教程 9课
4 [已完结] C++x64内存辅助实战技术教程 149课 5 [已完结] C++x64内存检测与过检测技术教程 10课 6 [已完结] C+x64二叉树分析遍历与LUA自动登陆教程 19课
7 [已完结] C++BT功能原理与x64实战教程 29课 8 [已完结] C+FPS框透视与自瞄x64实现原理及防护思路
查看: 1647|回复: 0

C++ VMP加壳宏 VMP加壳必备代码

[复制链接]

19

主题

0

回帖

28

积分

编程入门

Rank: 1

龙马币
94



C++ VMP加壳宏 VMP加壳必备代码

  1. #define VMP_BEGINV \  
  2. _asm _emit 0xEB \  
  3. _asm _emit 0x10 \  
  4. _asm _emit 0x56 \  
  5. _asm _emit 0x4D \  
  6. _asm _emit 0x50 \  
  7. _asm _emit 0x72 \  
  8. _asm _emit 0x6F \  
  9. _asm _emit 0x74 \  
  10. _asm _emit 0x65 \  
  11. _asm _emit 0x63 \  
  12. _asm _emit 0x74 \  
  13. _asm _emit 0x20 \  
  14. _asm _emit 0x62 \  
  15. _asm _emit 0x65 \  
  16. _asm _emit 0x67 \  
  17. _asm _emit 0x69 \  
  18. _asm _emit 0x6E \  
  19. _asm _emit 0x01   
  20.   
  21. #define VMP_BEGINM \  
  22. _asm _emit 0xEB \  
  23. _asm _emit 0x10 \  
  24. _asm _emit 0x56 \  
  25. _asm _emit 0x4D \  
  26. _asm _emit 0x50 \  
  27. _asm _emit 0x72 \  
  28. _asm _emit 0x6F \  
  29. _asm _emit 0x74 \  
  30. _asm _emit 0x65 \  
  31. _asm _emit 0x63 \  
  32. _asm _emit 0x74 \  
  33. _asm _emit 0x20 \  
  34. _asm _emit 0x62 \  
  35. _asm _emit 0x65 \  
  36. _asm _emit 0x67 \  
  37. _asm _emit 0x69 \  
  38. _asm _emit 0x6E \  
  39. _asm _emit 0x02   
  40.   
  41.   
  42. #define VMP_BEGINU \  
  43. _asm _emit 0xEB \  
  44. _asm _emit 0x10 \  
  45. _asm _emit 0x56 \  
  46. _asm _emit 0x4D \  
  47. _asm _emit 0x50 \  
  48. _asm _emit 0x72 \  
  49. _asm _emit 0x6F \  
  50. _asm _emit 0x74 \  
  51. _asm _emit 0x65 \  
  52. _asm _emit 0x63 \  
  53. _asm _emit 0x74 \  
  54. _asm _emit 0x20 \  
  55. _asm _emit 0x62 \  
  56. _asm _emit 0x65 \  
  57. _asm _emit 0x67 \  
  58. _asm _emit 0x69 \  
  59. _asm _emit 0x6E \  
  60. _asm _emit 0x03   
  61.   
  62. #define VMP_BEGIN \  
  63. _asm _emit 0xEB \  
  64. _asm _emit 0x10 \  
  65. _asm _emit 0x56 \  
  66. _asm _emit 0x4D \  
  67. _asm _emit 0x50 \  
  68. _asm _emit 0x72 \  
  69. _asm _emit 0x6F \  
  70. _asm _emit 0x74 \  
  71. _asm _emit 0x65 \  
  72. _asm _emit 0x63 \  
  73. _asm _emit 0x74 \  
  74. _asm _emit 0x20 \  
  75. _asm _emit 0x62 \  
  76. _asm _emit 0x65 \  
  77. _asm _emit 0x67 \  
  78. _asm _emit 0x69 \  
  79. _asm _emit 0x6E \  
  80. _asm _emit 0x00   
  81.   
  82. #define VMP_END \  
  83. _asm _emit 0xEB \  
  84. _asm _emit 0x0E \  
  85. _asm _emit 0x56 \  
  86. _asm _emit 0x4D \  
  87. _asm _emit 0x50 \  
  88. _asm _emit 0x72 \  
  89. _asm _emit 0x6F \  
  90. _asm _emit 0x74 \  
  91. _asm _emit 0x65 \  
  92. _asm _emit 0x63 \  
  93. _asm _emit 0x74 \  
  94. _asm _emit 0x20 \  
  95. _asm _emit 0x65 \  
  96. _asm _emit 0x6E \  
  97. _asm _emit 0x64 \  
  98. _asm _emit 0x00
复制代码


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

龙马谷| C/C++辅助教程| 安卓逆向安全| 论坛导航| 免责申明|Archiver|
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表龙马谷立场!
任何人不得以任何方式翻录、盗版或出售本站视频,一经发现我们将追究其相关责任!
我们一直在努力成为最好的编程论坛!
Copyright© 2018-2021 All Right Reserved.
在线客服
快速回复 返回顶部 返回列表