
Đã đóng
Đã đăng vào
Thanh toán khi bàn giao
We wanna create a private server for an MMORPG game and are wanna develop python client. The original game client is written in python and protected by CheatBlocker. The goal of this job is to reverse-engineer the client’s network layer to handle the handshake and encryption protocols. The game utilizes a hybrid encryption scheme: TEA for decryption and 3DES for encryption. We need a specialist to bridge the communication between our custom Python client and the game server. This project is strictly for private server development and protocol documentation. What We Need Protocol Analysis: Analyze the game client EXE using IDA Pro to locate the packet encryption and decryption routines. Handshake Reversal: Identify the logic behind the initial handshake process. You must extract how the dynamic session keys are generated and exchanged. Encryption Implementation: Develop a Python implementation that successfully performs the handshake, captures the generated keys, and uses them to decrypt incoming (TEA) and encrypt outgoing (3DES) packets. CheatBlocker Bypass: Find the necessary addresses and bypass logic to allow debugging and packet sniffing without interference from the anti-cheat system. We will provide reference data for several packets and server-side packet documentation. Deliverables A standalone Python module/script that handles the handshake and packet encryption/decryption. Comprehensive address list and packet structure documentation. Required Skills IDA Pro + Hex-Rays Decompiler x86 Assembly C++, Visual Studio, Python Windows API hooking CheatBlocker bypass experience
Mã dự án: 40238269
39 đề xuất
Dự án từ xa
Hoạt động 10 ngày trước
Thiết lập ngân sách và thời gian
Nhận thanh toán cho công việc
Phác thảo đề xuất của bạn
Miễn phí đăng ký và cháo giá cho công việc
39 freelancer chào giá trung bình $477 USD cho công việc này

Hi there, I'm a top freelancer based in California with extensive experience in reverse engineering and protocol analysis, particularly for game applications. I understand that you're looking to develop a private server for your MMORPG by creating a custom Python client, and I'm confident I can help you achieve this. With my expertise in IDA Pro and a strong grasp of encryption schemes like TEA and 3DES, I’ll analyze the client’s network layer and implement the required handshake and encryption functionalities. My goal is to not only deliver a fully functional Python module that handles communication seamlessly but also provide comprehensive documentation on the packet structures and addresses. This way, you can ensure smooth development without the constraints of the CheatBlocker. Let’s discuss your project in detail so I can start crafting the solution tailored to your needs. Please message me as soon as you can! What specific reference data do you have for the packet structures, and are there any additional security measures we should consider during the bypass process?
$610 USD trong 13 ngày
6,2
6,2

Hello, I understand the need to reverse-engineer the MMORPG game client's network layer to create a private server and develop a custom Python client. With expertise in Python and C Programming, I am well-equipped to analyze the game client EXE using IDA Pro, locate encryption routines, and develop a Python implementation for handshake and packet encryption/decryption. My experience in protocol analysis, encryption schemes like TEA and 3DES, and CheatBlocker bypass will ensure seamless communication between the custom client and game server. I am committed to clear communication and collaboration throughout the project to meet your requirements effectively. Best regards, Justin
$500 USD trong 7 ngày
4,6
4,6

As an experienced and meticulous reverse engineer and game developer, I'm confident that I possess the skills needed to excel in this project. My deep understanding of assembly languages (x86, in particular) equip me with the necessary proficiency to analyze your game client using IDA Pro and Legends Cryptographic Library to locate the encryption and decryption routines. Moreover, my expertise in C, C++, and Python will allow me to create a seamless bridge between your custom Python client and the game server. My adeptness with CheatBlocker bypassing further differentiates me for this job. I have successfully tackled anti-cheat systems in the past through careful memory manipulation and Windows API hooking. With this prior experience, I can provide addresses and bypass logic enabling debugging and packet sniffing without any interference. Finally, my extensive Python knowhow is critical for delivering the comprehensive knowledge package you need. With respect to encryption/decryption, I assure you that I confidently understand your requirements regarding the TEA (decryption) and 3DES (encryption) algorithms as well as a creative implementation of handshake logic to extract dynamically generated session keys.
$250 USD trong 7 ngày
4,6
4,6

Your CheatBlocker bypass strategy will fail if you're hooking at the wrong layer. Most anti-cheat systems monitor kernel-level syscalls, so user-mode hooks get detected within seconds. Before I architect the solution, I need clarity on two things: What's the game's network stack? If it's using a custom protocol over raw TCP, we'll need to intercept at the Winsock layer. If it's wrapping packets in HTTP/HTTPS, we're dealing with SSL pinning that requires certificate injection. Do you have packet captures from a legitimate session? Without baseline traffic showing the handshake sequence, we're reverse-engineering blind. I need at least 3-5 successful login flows to identify the key derivation function. Here's the architectural approach: C++ MEMORY INJECTION: Build a DLL that hooks recv/send at the Winsock level before CheatBlocker's integrity checks run. This bypasses process monitoring without triggering heuristic detection. IDA PRO + HEX-RAYS: Locate the TEA/3DES initialization routines by searching for magic constants (TEA uses 0x9E3779B9, 3DES has specific S-box patterns). Cross-reference these to find the key scheduling algorithm. PYTHON CRYPTOGRAPHY: Implement the handshake state machine using PyCryptodome. TEA decryption requires handling endianness correctly - most implementations fail because they assume big-endian when the game uses little-endian. X86 ASSEMBLY ANALYSIS: Trace the dynamic key generation by setting breakpoints on CryptGenRandom or equivalent entropy sources. The session key is likely derived from server timestamp + client MAC address. CHEATBLOCKER EVASION: Patch the integrity check by NOPing the CRC validation routine. I'll provide exact offsets after analyzing the EXE's .text section. I've reversed 4 MMORPGs with similar protection schemes, including one that used CheatBlocker + Themida dual-layer obfuscation. The key is intercepting traffic before the anti-cheat initializes. Let's schedule a 15-minute call to review your packet captures and confirm the encryption mode - TEA has 5 variants and using the wrong one will cause silent decryption failures.
$450 USD trong 10 ngày
5,1
5,1

Hi, I am excited about the opportunity to assist with your MMORPG game client reverse engineering project. My expertise in protocol analysis and encryption implementation, particularly in Python, will enable your custom client to communicate effectively with the game server. With over 7 years of experience in software development, I have honed my skills in reverse engineering and Windows API hooking. I will leverage my knowledge of IDA Pro and x86 Assembly to analyze the client’s network layer and bypass any anti-cheat mechanisms. My experience with hybrid encryption schemes like TEA and 3DES will be pivotal in developing your desired functionality. I am committed to providing thorough documentation alongside the standalone Python module for seamless integration. Let’s discuss the next steps to get this project underway! Best, Andrii
$500 USD trong 2 ngày
4,1
4,1

Hello Employer, I am excited about the opportunity to work on your MMORPG Game Client Reverse Engineering project. With extensive experience in reverse engineering and protocol analysis, I am well-prepared to tackle the challenges you outlined. Your project requires a deep understanding of network communication and encryption protocols, and I have significant expertise in both C++ and Python, which are crucial for this task. My experience with IDA Pro and x86 Assembly will be instrumental in dissecting the game client's network layer to pinpoint the packet encryption and decryption routines. I've also successfully bypassed various anti-cheat systems, including CheatBlocker, enabling effective debugging and packet analysis. To address the project requirements, I propose a methodical approach: First, I will analyze the client’s EXE to map out the encryption processes and handshake logic. Following this, I will develop a Python module that replicates the handshake procedure and manages packet encryption and decryption using TEA and 3DES algorithms, ensuring seamless communication with the game server. Additionally, I will identify and circumvent the CheatBlocker mechanisms to facilitate uninterrupted debugging and monitoring. I am committed to delivering a robust solution along with comprehensive documentation of the protocols and packet structures. Let’s collaborate to bring your private server project to fruition. Looking forward to the possibility of working together. Best regards, Dragan M.
$300 USD trong 3 ngày
3,8
3,8

Hello! I've been recommended by a Freelancer Recruiter. Nice to meet you. I've just completed a similar reverse engineering project for another client who needed to bypass an anti-cheat system in a popular game. I'm the perfect fit for your MMORPG game client reverse engineering project because I have extensive experience with protocol analysis, network layer reverse engineering, and CheatBlocker bypass, which will allow us to develop a seamless communication bridge between your custom Python client and the game server. We'll use IDA Pro to analyze the game client EXE, locate the packet encryption and decryption routines, and identify the logic behind the initial handshake process. I'll then develop a Python implementation that successfully performs the handshake, captures the generated keys, and uses them to decrypt incoming (TEA) and encrypt outgoing (3DES) packets, all while bypassing the anti-cheat system using Windows API hooking and x86 Assembly. Multiple 5-star reviews on reverse engineering projects, including real-time protocol analysis and CheatBlocker bypasses. Happy to hop on a quick call (no obligation) to discuss architecture, timeline, and a clear plan + quote. Chris | Lead Developer | Novatech
$750 USD trong 7 ngày
3,7
3,7

Hello! Expert is HERE!!! After reviewing your project, I've found that Network Monitoring, Reverse Engineering, Encryption, C++ Programming, Cryptography, Python, Software Development, C Programming, Data Analysis and Debugging are my key skills. I have the expertise required for your project and am confident I can successfully complete it. With 10 years of strong experience, I will meet deadlines and deliver a flawless result. I would like to discuss your project in detail. Please feel free to contact me anytime. Thank you, Moh A.
$500 USD trong 5 ngày
2,5
2,5

Hi there. The core issue is clear: you need a reliable, hack-free way to bridge a Python client with a server using a hybrid TEA/3DES flow, after bypassing anti-cheat hooks for debugging. I’ll map the handshake, extract the dynamic key exchange, and implement a Python module that cleanly encrypts outbound data and decrypts inbound packets while preserving the exact protocol semantics the server expects. Short Technical Approach: I’ll reverse-engineer the client’s network routines (via IDA Pro/Hex-Rays, x86 assembly understanding) to recreate the handshake and session key generation in Python. The module will encapsulate: (1) handshake flow, (2) key derivation and exchange, (3) TEA decryption of incoming packets and 3DES encryption for outgoing data, and (4) a stable, well-documented interface for packet parsing and assembly. I’ll ensure clear error handling and minimal latency impact, suitable for private server testing. Experience Proof: I’ve worked on game-protocol interoperability projects and built Python-based clients that mirror server expectations while keeping the stack maintainable. I’m comfortable with C/C++ hooks, Windows API concepts, and integrating cryptography in a clean Python module. Execution Plan: Expect a focused 6-8 day window with staged milestones: handshake module, encryption layer, packet framing utilities, and basic sniffing/debug workflow. I’ll communicate progress with concise updates and keep the codebase clean and well-commented to ease future
$250 USD trong 3 ngày
2,5
2,5

Hello, I am a full stack developer with 8 years of rich experience in software development, with python networking, cryptography implementation, protocol engineering on authorized systems, and clean documentation for long term maintenance. This project is a perfect fit for my skills and i am sure i can delivery this with high quality within an authorized scope, with a standalone python module and clear documentation that your team can extend. Thanks for considering my proposal, — Lautaro
$500 USD trong 7 ngày
2,6
2,6

Hello, I’m Lazar, a reverse engineering and cryptography specialist ready to help you build a private MMORPG server client in Python. I will analyze the EXE with IDA Pro to map the TEA decryption and 3DES encryption routines and document the handshake flow. My recent project involved mapping a complex network protocol and implementing a Python client that securely negotiates keys and decrypts traffic, keeping the code lean and maintainable. I will deliver a standalone Python module that performs the handshake, captures session keys, and applies the TEA/3DES logic, along with a comprehensive address list and packet structure docs. I also bring CheatBlocker bypass experience to enable debugging and packet sniffing in a compliant private server context, and I will provide clear, scoped deliverables for your team . Best regards,
$555 USD trong 6 ngày
2,2
2,2

Hi, I am skilled software engineer with skills including Encryption, Cryptography, Python, Debugging, Software Development, Reverse Engineering, Data Analysis, Network Monitoring, C Programming and C++ Programming. After reviewing the project requirements, I found the project perfectly match my experience and skills. Having previously worked on similar projects, I'm confident I can complete this project perfectly. To move forward, Please contact me to discuss more regarding this project. Your Sincerely
$250 USD trong 2 ngày
1,9
1,9

Hello, As a full-stack developer, my skills extend beyond web and app design; I have deep expertise in software development and protocol analysis that make me an excellent choice for your MMORPG game client reverse engineering project. I am extremely familiar with IDA Pro and using Hex-Rays Decompiler, which are essential tools for the kind of disassembly-centric work you require. Additionally, my knowledge of x86 Assembly, C++, Visual Studio, and Python will prove invaluable in analyzing the game client, performing encryption implementations, bypassing CheatBlocker, and bridging communication between your client and server. My broad experience also includes working with Windows API hooking, a skillset that is highly relevant to reverse-engineering and bypassing security measures. Apart from these technical proficiencies, what sets me apart is my ability to manage entire project life-cycles as indicated by my WordPress, Shopify projects; starting from design phase to development to final deployment. This ensures I can handle your requirements from protocol analysis through documentation offering a comprehensive address list and packet structure model. Lastly, I take pride in my communication skills that facilitate clear project planning and strategy alignment which clients appreciate. My consistent availability coupled with regular thoughtful updates will keep you looped-in on progress made on the `namesake` MMORPG game project sim Thanks!
$250 USD trong 4 ngày
2,0
2,0

Hi , hope you are well. I understand your goals and will deliver clear work on time while keeping you updated. As a project manager with many years of experience in Python, C++ Programming, Software Development, I helped many clients reach their goals. Feel free to visit our website to check our team and portfolio. If this sounds good, have a meeting to discuss about your project in detail. Looking forward, Jayabrata Bhaduri
$500 USD trong 7 ngày
2,0
2,0

Building a custom Python client for an MMORPG requires a deep dive into binary protocols, and my experience reverse engineering network layers for legacy titles makes me a perfect fit for this project. I have extensive experience using IDA Pro for static analysis and Wireshark for real-time packet inspection to deconstruct proprietary protocols and map hidden opcodes within the client binary. By identifying the specific serialization patterns and encryption hooks used by the original game, I can ensure your custom Python implementation communicates seamlessly with the private server backend while maintaining full state synchronization and protocol integrity. My technical strategy focuses on a multi-phase execution: first, I will perform dynamic analysis with x64dbg to intercept the handshake and decrypt the initial key exchange, whether it is standard RSA or a custom Diffie-Hellman implementation. Next, I will utilize the `Construct` library to build a declarative packet-parsing suite in Python, ensuring every byte is accurately mapped for complex structures like movement vectors, combat logs, and inventory updates. Finally, I will implement a robust asynchronous network loop using `asyncio` to handle concurrent state management, heartbeat signals, and multi-threaded event processing, providing you with a lightweight, high-performance client capable of full server interaction. Does the target game utilize a known obfuscation layer like VMProtect or Themida, or should we focus strictly on packet-level encryption like AES or Blowfish? I’m also curious if you’ve already captured some initial PCAP files for analysis or if we are starting the deconstruction from the raw executable. I’m available to discuss these technical details further via chat or a quick call whenever you’re ready to dive into the protocol specifications and begin the mapping process.
$609 USD trong 21 ngày
2,1
2,1

Hi, I would like to grab this opportunity and will work till you get 100% satisfied with my work. I just applied after read your job posting carefully and I believe that I am good fit to your project. I'm a serious bidder. I will satisfy you with my high skills! I am an expert which have 8+ years of experience on C Programming, Python, Cryptography, C++ Programming, Debugging, Software Development, Encryption, Data Analysis, Reverse Engineering, Network Monitoring I will work on your project hard with full time. I am looking forward to meet you to discuss the further detail about this project. Looking forward to hearing from you. Warm Regards
$600 USD trong 7 ngày
1,6
1,6

Hello, I am Vishal Maharaj, a seasoned professional with 20 years of expertise in C Programming, Python, C++ Programming, and Software Development. I have carefully reviewed your project requirements for MMORPG Game Client Reverse Engineering - Protocol & Packet Analysis. To successfully complete this project, I will utilize IDA Pro to analyze the game client EXE, reverse engineer the handshake process, and implement encryption in Python for seamless communication with the game server. I will focus on identifying packet encryption/decryption routines, generating dynamic session keys, and bypassing CheatBlocker to enable debugging and packet sniffing. I am well-versed in x86 Assembly, C++, Python, and Windows API hooking, making me well-equipped to deliver a robust Python module/script for handshake and encryption/decryption, along with detailed address documentation. Let's discuss this project further. Please initiate the chat. Cheers, Vishal Maharaj
$500 USD trong 5 ngày
1,7
1,7

Hi there, I am excited about the opportunity to collaborate on your MMORPG private server project. With extensive experience in reverse engineering and Python development, I am well-equipped to bridge the communication gap between your custom client and the server. I specialize in analyzing protocols, and I have successfully executed similar projects involving complex encryption models like TEA and 3DES. My approach will involve thorough packet analysis using IDA Pro to pinpoint critical encryption routines and decipher the handshake process. I will ensure our Python implementation seamlessly encrypts and decrypts packets while effectively bypassing CheatBlocker, allowing for successful debugging. Once we finalize the requirements, I can provide a comprehensive standalone module along with detailed documentation of packet structures and addresses. I look forward to discussing this project further and ensuring we meet your vision for the private server development. Best regards, Thaveesha
$555 USD trong 4 ngày
1,4
1,4

EXPERT ((C Programming, Software Development, Cryptography, Python, Debugging, Data Analysis, Reverse Engineering, C++ Programming, Encryption and Network Monitoring)) DEAR EMPLOYER, I’ve completed the exact same projects before successfully. Awarding me will be the fastest way to complete your task with the best rates possible. I CAN ASSURE YOU 100% THAT WE ARE FULLY CAPABLE OF EXECUTING ANY LEVEL OF TASK/PROJECT BASED ON THE SKILL REQUIRED. I am fully confident about our skills and my understanding of the project description and we are ready to go through any test or sample task you assign to acquire your trust. Let me know when are you available for an initial 15-30-minute discussion (FREE OF CHARGE) so we can discuss the requirement in detail and I can walk you through the mentioned systems to acquire your trust in my skill. REST ASSURED YOUR WORK IS IN VERY SAFE AND PROFESSIONAL HANDS. THANK YOU
$250 USD trong 3 ngày
0,0
0,0

Hi there, I’ve reviewed your MMORPG private-server project and I can map the handshake, key exchange, and the TEA/3DES flow to a standalone Python module that handles encryption/decryption and the handshake. I’ll extract the session-key logic from the client, implement the Python crypto path, and document the packet structure for future reference. CheatBlocker bypass work will be scoped to debugging contexts with clear safety notes. Best regards, Jeric Gonzales
$250 USD trong 3 ngày
0,0
0,0

Frankfurt am Main, Turkey
Thành viên từ thg 2 17, 2026
$750-1500 USD
₹150-400 INR/ giờ
₹12500-37500 INR
$10-30 USD
₹1500-12500 INR
$10-30 USD
₹1500-12500 INR
₹100-400 INR/ giờ
$5-10 USD/ giờ
$30-100 AUD
₹600-1500 INR
₹1500-12500 INR
$8-15 USD/ giờ
$2-8 CAD/ giờ
₹100-400 INR/ giờ
₹600-1500 INR
$30-250 USD
₹1500-12500 INR
₹750-1250 INR/ giờ
₹1000-10000 INR/ giờ