Results 1 to 3 of 3
  1. #1
    josielcardoso7's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    3

    Post X-Trap detecting methods

    based on Extreme Injector (injector that I usually use to test DLLs), I decided to make a new injector for crossfire after a time without creating anything in C #. after much thought, and with the help of coders here of the MPGH could recreate a injector, now in ManualMap, but after the first test came the disappointment: the reports of some friends, the injector worked on games at Point Blank, Combat Arms and other less in CrossFire , I decided to put an anti debug using a program called Confuser, but obviously did not work. according to a certain coder here of the MPGH, need hide injection release, I do not know a lot, a little lazy perhaps, but the truth is I have not much time to be looking for how to make and have little knowledge about these issues .

    If anyone has ideas on how to do and want to share am opening this topic to see how the more experienced create.

    code used in this injector:
    Code:
    using System.Collections.Generic;
    using System.Linq;
    using System.Data;
    using System.Drawing;
    using InjectionLibrary;
    using JLibrary.PortableExecutable;
    using System.Diagnostics;
    using System.Threading;
    
    namespace _6695ykdYA2Z6RAC956HCons
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.WriteLine("============================== Start The Game ==========================");
                Console.WriteLine(" Created by PaiN                                                      "+ DateTime.Now);
    
                while (true)
                {
    
                    Process[] pname = Process.GetProcessesByName("crossfire");
    
                    if (pname.Length != 0)
                    {
                        var injector = InjectionMethod.Create(InjectionMethodType.ManualMap);
                        var processId = Process.GetProcessesByName("crossfire")[0].Id;
                        var hModule = IntPtr.Zero;
    
                        using (var img = new PortableExecutable(Properties.Resources.hack))
                            hModule = injector.Inject(img, processId);
    
                        if (hModule != IntPtr.Zero)
                        {
                            Environment.Exit(0);
                            // injection was successful
                        }
                    }
    
                    else
                    {
                        Console.Write(".");
                    }
    
                        Thread.Sleep(500);
                    }
    
                }
            }
    
    
        }
    good use if you are a leecher or need some function of this code

    sorry for my bad english

  2. #2
    renzmacky06's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    injector po ba yan??

  3. #3
    josielcardoso7's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    3

    Arrow injecting

    Quote Originally Posted by renzmacky06 View Post
    injector po ba yan??
    the Xtrap detect the injector

Similar Threads

  1. [Doubt] How to Open "Cheat Engine" No X-Trap detects it?
    By BrazMoura in forum Point Blank Hacks
    Replies: 2
    Last Post: 04-10-2012, 04:46 AM
  2. [Help] X-Trap detect
    By PrimeLove. in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 24
    Last Post: 08-13-2011, 03:23 PM
  3. New hack detection method?
    By Loki2010 in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 27
    Last Post: 01-21-2011, 12:00 PM
  4. X-Trap bypass Method
    By Medix in forum CrossFire Discussions
    Replies: 70
    Last Post: 04-14-2010, 12:59 PM
  5. I heard this X-Trap Bypass Method
    By Savinota in forum CrossFire Hacks & Cheats
    Replies: 13
    Last Post: 12-08-2009, 12:21 PM