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 "DyMain.h" |
| 4 | #include <windows.h> |
| 5 | #include <winsock2.h> |
| 6 | #include <ws2tcpip.h> |
| 7 | #include <string> |
| 8 | #include <vector> |
| 9 | #include <functional> |
| 10 | |
| 11 | namespace DyMain::WebServer { |
| 12 | /** |
| 13 | * Avvia il server web sulla porta specificata |
| 14 | * @param port Porta su cui avviare il server |
| 15 | * @return true se il server è stato avviato correttamente |
| 16 | */ |
| 17 | bool StartWebServer(int port); |
| 18 | |
| 19 | /** |
| 20 | * Ferma il server web |
| 21 | */ |
| 22 | void StopWebServer(); |
| 23 | |
| 24 | void BroadcastEvent(const std::string& event); |
| 25 | } |