Seregon/Hermes

Hermes/Dyforge is a program written in c++ allows you to inject a dll that can analyze all processes in a program, can be used for mod and reverse engeneering

C/3.8 KB/No license
build_libs.bat
Hermes / build_libs.bat
1@echo off
2setlocal enabledelayedexpansion
3 
4echo Compilazione delle librerie necessarie...
5 
6:: Crea le directory necessarie
7if not exist "DyMain\lib" mkdir "DyMain\lib"
8 
9:: Compila Capstone
10echo Compilazione di Capstone...
11if not exist "capstone" (
12 git clone https://github.com/capstone-engine/capstone.git
13 cd capstone
14 git checkout 4.0.2
15) else (
16 cd capstone
17 git fetch
18 git checkout 4.0.2
19)
20 
21if not exist "build" mkdir build
22cd build
23cmake -G "Visual Studio 17 2022" -A x64 ..
24cmake --build . --config Release
25copy Release\capstone.lib ..\..\DyMain\lib\
26cd ..\..
27 
28:: Compila Detours
29echo Compilazione di Detours...
30if not exist "Detours" (
31 git clone https://github.com/microsoft/Detours.git
32 cd Detours
33) else (
34 cd Detours
35)
36 
37if not exist "build" mkdir build
38cd build
39cmake -G "Visual Studio 17 2022" -A x64 ..
40cmake --build . --config Release
41copy Release\detours.lib ..\..\DyMain\lib\
42cd ..\..
43 
44echo Compilazione completata!
45echo Le librerie sono state copiate in DyMain\lib