当前位置: 首页 > news >正文

加密软件VMProtect教程:使用脚本-功能

VMProtect是新一代软件保护实用程序。VMProtect支持德尔菲、Borland C Builder、Visual C/C++、Visual Basic(本机)、Virtual Pascal和XCode编译器。

同时,VMProtect有一个内置的反汇编程序,可以与Windows和Mac OS X可执行文件一起使用,并且还可以链接编译器创建的MAP文件,以快速选择要保护的代码片段。

为了轻松实现应用程序保护任务的自动化,VMProtect实现了内置脚本语言。VMProtect完全支持Windows系列的32/64位操作系统(从Windows 2000开始)和Mac OSX(从版本10.6开始)。重要的是,无论目标平台如何,VMProtect都支持所有范围的可执行文件,即Windows版本可以处理Mac OS X版本的文件,反之亦然。

VMProtect最新版下载(qun:766135708)icon-default.png?t=N7T8https://www.evget.com/product/1859/download

一个用于处理函数列表的类:

class MapFunctions {
public:MapFunction item(int index); // returns a function with the given indexint count(); // returns the number of functions in the listMapFunction itemByAddress(uint64 address); // returns a function at the given addressMapFunction itemByName(string name); // returns a function with the given name
};

功能类型:

enum ObjectType {Unknown,Code,Data,Export,Marker,APIMarker,Import,String
};

一个与函数配合的类:

class MapFunction {
public:uint64 address(); // returns the address of the functionstring name(); // returns the name of the functionObjectType type(); // returns the type of the functionReferences references(); // returns the list of references
};

一个处理参考文献列表的类:

class References {
public:Reference item(int index); // returns a reference with the given indexint count(); // returns the number of references in the list
};

一个与参考文献一起工作的类:

class Reference {
public:uint64 address(); // returns the address of the commanduint64 operandAddress(); // returns the address of the references
};  

获取完整>>>vmprotect 中文支持手册

http://www.lryc.cn/news/332127.html

相关文章:

  • 51单片机入门_江协科技_21.1_开发板USB口连接建议
  • 基于Spring Boot 3 + Spring Security6 + JWT + Redis实现登录、token身份认证
  • Kubernetes(k8s):精通 Pod 操作的关键命令
  • 【随笔】Git 高级篇 -- 相对引用2(十三)
  • xilinx AXI CAN驱动开发
  • Python:百度AI开放平台——OCR图像文字识别应用
  • OpenEuler/Centos制作离线软件源
  • 论文笔记:基于多粒度信息融合的社交媒体多模态假新闻检测
  • 攻防世界 xff_referer 题目解析
  • open-cd框架调试记录
  • 【算法刷题day17】Leetcode:110.平衡二叉树、257. 二叉树的所有路径、404.左叶子之和
  • Linux云计算之Linux基础2——Linux发行版本的安装
  • C++:赋值运算符(17)
  • Spring Boot | Spring Boot的“数据访问“、Spring Boot“整合MyBatis“
  • ActiViz中的数据集vtkPolyData
  • 【测试篇】测试用例
  • Shell学习 - 2.24 Shell let命令:对整数进行数学运算
  • langchain Chroma 构建本地向量数据库
  • Rust 中的字符串类型:`str` 和 `String`
  • Visual Studio(VS) 搭建 QT 开发环境
  • Qt模拟面试(超硬核)
  • 某眼实时票房接口获取
  • cesium键盘控制相机位置和姿态
  • 基于ArrayList实现简单洗牌
  • Paddle实现人脸对比
  • 挖一挖:PostgreSQL Java里的double类型存储到varchar精度丢失问题
  • 函数对象基本使用
  • 浅谈HTTP
  • HarmonyOS NEXT应用开发之@Provide装饰器和\@Consume装饰器:与后代组件双向同步
  • Docker 安装 | 部署MySQL 8.x 初始设置