Voidgate 开源项目使用教程

Voidgate 开源项目使用教程

VoidgateA technique that can be used to bypass AV/EDR memory scanners. This can be used to hide well-known and detected shellcodes (such as msfvenom) by performing on-the-fly decryption of individual encrypted assembly instructions, thus rendering memory scanners useless for that specific memory page.项目地址:https://gitcode.com/gh_mirrors/vo/Voidgate

1. 项目的目录结构及介绍

Voidgate 项目的目录结构如下:

Voidgate/
├── README.md
├── src/
│   ├── main.c
│   ├── config.h
│   └── utils/
│       ├── encryption.c
│       └── encryption.h
└── Makefile

目录介绍

  • README.md: 项目说明文件,包含项目的基本信息和使用指南。
  • src/: 源代码目录,包含项目的主要源文件。
    • main.c: 项目的启动文件。
    • config.h: 项目的配置文件。
    • utils/: 工具函数目录,包含加密相关的源文件。
      • encryption.c: 加密函数实现。
      • encryption.h: 加密函数头文件。
  • Makefile: 编译项目的 Makefile 文件。

2. 项目的启动文件介绍

项目的启动文件是 src/main.c,它包含了项目的主要逻辑和入口函数。以下是 main.c 的部分代码示例:

#include "config.h"
#include "utils/encryption.h"

int main() {
    // 初始化配置
    init_config();

    // 执行主要逻辑
    execute_main_logic();

    return 0;
}

主要功能

  • init_config(): 初始化配置文件。
  • execute_main_logic(): 执行项目的主要逻辑。

3. 项目的配置文件介绍

项目的配置文件是 src/config.h,它包含了项目的配置参数和常量定义。以下是 config.h 的部分代码示例:

#ifndef CONFIG_H
#define CONFIG_H

// 配置参数
#define MAX_BUFFER_SIZE 1024
#define ENCRYPTION_KEY "my_secret_key"

// 初始化配置
void init_config();

#endif // CONFIG_H

主要配置参数

  • MAX_BUFFER_SIZE: 缓冲区最大大小。
  • ENCRYPTION_KEY: 加密密钥。

初始化配置

  • init_config(): 初始化配置文件中的参数。

以上是 Voidgate 开源项目的使用教程,包含了项目的目录结构、启动文件和配置文件的介绍。希望对您有所帮助。

VoidgateA technique that can be used to bypass AV/EDR memory scanners. This can be used to hide well-known and detected shellcodes (such as msfvenom) by performing on-the-fly decryption of individual encrypted assembly instructions, thus rendering memory scanners useless for that specific memory page.项目地址:https://gitcode.com/gh_mirrors/vo/Voidgate

  • 27
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

俞毓滢

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值