加密软件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 index
	int count(); // returns the number of functions in the list
	MapFunction itemByAddress(uint64 address); // returns a function at the given address
	MapFunction 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 function
	string name(); // returns the name of the function
	ObjectType type(); // returns the type of the function
	References references(); // returns the list of references
};

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

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

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

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

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

相关推荐

  1. python脚本加密

    2024-04-02 13:34:05       28 阅读
  2. python脚本加密

    2024-04-02 13:34:05       33 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-04-02 13:34:05       19 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-04-02 13:34:05       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-04-02 13:34:05       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-04-02 13:34:05       20 阅读

热门阅读

  1. list(链表)容器(二)

    2024-04-02 13:34:05       18 阅读
  2. 如何在 xcode 中使用 string catalogs

    2024-04-02 13:34:05       18 阅读
  3. ubuntu卸载conda

    2024-04-02 13:34:05       13 阅读
  4. springboot集成logback-spring.xml文件

    2024-04-02 13:34:05       18 阅读
  5. Spring之Bean生命周期源码解析

    2024-04-02 13:34:05       23 阅读
  6. 如何找到 rpm 包对应的源码

    2024-04-02 13:34:05       18 阅读
  7. 前端工程师具备的能力(刚入行的前端必看)

    2024-04-02 13:34:05       16 阅读
  8. 为什么Python开发需要精通Git?

    2024-04-02 13:34:05       15 阅读
  9. 2024.4.1力扣(1200-1400)刷题记录

    2024-04-02 13:34:05       18 阅读
  10. TCP服务端主动向客户端发送数据

    2024-04-02 13:34:05       14 阅读
  11. Spring Boot单元测试

    2024-04-02 13:34:05       16 阅读