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
| 1 | #pragma once |
| 2 | |
| 3 | #include <string> |
| 4 | |
| 5 | namespace DyForge { |
| 6 | |
| 7 | enum class CommandType { |
| 8 | START_ANALYSIS, |
| 9 | STOP_ANALYSIS, |
| 10 | LOAD_MOD, |
| 11 | UNLOAD_MOD, |
| 12 | LIST_MODS, |
| 13 | LIST_HOOKS |
| 14 | }; |
| 15 | |
| 16 | struct Command { |
| 17 | CommandType type; |
| 18 | std::string parameters; |
| 19 | }; |
| 20 | |
| 21 | enum class ResponseType { |
| 22 | SUCCESS, |
| 23 | ERROR |
| 24 | }; |
| 25 | |
| 26 | struct Response { |
| 27 | ResponseType type; |
| 28 | std::string message; |
| 29 | }; |
| 30 | |
| 31 | } // namespace DyForge |