Coder Social home page Coder Social logo

netredirect-windetour's People

Contributors

alisonrag avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

netredirect-windetour's Issues

[Request] Inject in Ragexe.exe

Hello Alisonrag,

I'm a newbie and i dont know how to inject this in Ragexe. How can i inject this sir? I already tried other options just to run Xkore1 and Xkore0 but still i'm having problem either "Unable to inject NetRedirect", "Waiting for the Ragnarok Online client to connect to X-Kore..." or "Connecting (103.169.66.142:51000)... connected"

How to Coding connect to ragexe.exe

I tried to write a program and get the code from Zeus to apply to get the value and send to client.

Can you tell me which parts of zeus are you using?

`// CRagConnection::SendPacket
int __stdcall hookedSendPacket(size_t size, char* buffer) {

parsePacket(buffer, (int)size, e_PacketType::SENDED);

return SendPacket(instanceR(), size, buffer);

}`

and

`void hook() {
// try to alloc console
alloc_console();

// disable libary call
DisableThreadLibraryCalls(hModule);

// detour stuff
DetourTransactionBegin();
DetourUpdateThread(GetCurrentThread());

//We attach our hooked function the the original 
/* HOOK CUSTOM FUNCTION*/
if (Connection_use_WS2) {
    // WS2_32.dll functions recv/send
    DetourAttach(&(PVOID&)originalRecv, hookedWinsocketRecv);
    DetourAttach(&(PVOID&)originalSend, hookedWinsocketSend);
}
else {
    // Ragexe functions CRagConnection::SendPacket
    SendPacket = (originalSendPacket)(CRagConnection_SendPacket_address);
    DetourAttach(&(PVOID&)SendPacket, hookedSendPacket);

    // Ragexe functions CRagConnection::RecvPacket
    RecvPacket = (oiginalRecvPacket)(CRagConnection_RecvPacket_address);
    DetourAttach(&(PVOID&)RecvPacket, hookedRecvPacket);

    // Ragexe functions CRagConnection::instanceR
    instanceR = (originalInstanceR)(CRagConnection_instanceR_address);

    // Ragexe functions CRagConnection::getPa
    getPacketSize = (originalGetPacketSize)(CRagConnection_instanceR_address);
}

DetourTransactionCommit();

 //initialize packet_db
initializeDB();

}`

or any any code

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.