Skip to content

extensible packet manipulation system for an online game

Notifications You must be signed in to change notification settings

roohat/CabalPacketBridge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CabalPacketBridge

This project showcases an extensible packet manipulation system for an online game.

CPB hooks the encryption and decryption functions in the game and allows plugins to modify and view incoming and outgoing packets in real time.

Plugins can be placed in a directory named "mod" inside the game executable's directory.

Plugin DLLs must export the following:

void Initialize(void* injectSend);
void SendHook(void* socket, void* packet, int len);
void RecvHook(void* socket, void* packet, int len);
void Terminate();

Plugins may inject packets by calling the function pointer passed into Initialize. The function protorype is as follows:

void InjectSend(void* socket, void* packet, int len);

About

extensible packet manipulation system for an online game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published