Results 1 to 3 of 3
  1. #1
    InUrFace1337's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    87
    Reputation
    39
    Thanks
    5,194

    Project-X - A Worthy Xenos Injector Mod [v2.4]

    I apologize if I did this incorrectly, not quite sure how to update the existing thread.

    Project-X is my personal injector, and the only injector I ever use when using one of my cheats that does not make use of my self-injecting loader. It's basically a tweaked version of the widely popular Xenos Injector (The X in Project-X stands for Xenos) and therefore contains all the features of Xenos, with everything I didn't like about it being re-coded to suit my wants/needs and many other neat features/improvements added into the mix.

    Here's the original features list for Xenos:

    - Supports x86 and x64 processes and modules
    - Kernel-mode injection feature (driver required)
    - Manual map of kernel drivers (driver required)
    - Injection of pure managed images without proxy dll
    - Windows 7 cross-session and cross-desktop injection
    - Injection into native processes (those having only ntdll loaded)
    - Calling custom initialization routine after injection
    - Unlinking module after injection
    - Injection using thread hijacking
    - Injection of x64 images into WOW64 process
    - Image manual mapping
    - Injection profiles

    Manual map features:
    - Relocations, import, delayed import, bound import
    - Static TLS and TLS callbacks
    - Security cookie
    - Image manifests and SxS
    - Make module visible to GetModuleHandle, GetProcAddress, etc.
    - Support for exceptions in private memory under DEP
    - C++/CLI images are supported (use 'Add loader reference' in this case)

    Kernel manual map features are mostly identical to user-mode with few exceptions:
    - No C++ exception handling support for x64 images (only SEH)
    - No static TLS
    - No native loader compatibility
    - Limited dependency path resolving. Only API set schema, SxS, target executable directory and system directory

    Supported OS: Win7 - Win10 x64

    Additional notes:
    Injector has 2 versions - x86 and x64. Apart from obvious features x86 version supports injection of x64 images into x64 processes; x64 injector supports injection of x86 and x64 images into WOW64 processes. However this is only valid for native images. If you want to inject pure managed dll - use same injector version as your target process is.

    Injection of x64 images into WOW64 process is totally unpredictable. If you want to do this I would recommend to use manual mapping with manual imports option, because native loader is more buggy than my implementation in this case (especially in windows 7).

    Restrictions:
    - You can't inject 32 bit image into x64 process
    - Use x86 version to manually map 32 bit images and x86 version to map 64 bit images
    - You can't manually map pure managed images, only native injection is supported for them
    - May not work properly on x86 OS versions
    - Kernel injection is only supported on x64 OSes and requires Driver Test signing mode.

    Process selection:
    Existing - select existing process from the list
    New - new process will be launched before injection
    Manual launch - after pressing 'Inject' button, injector will wait for target process startup

    Images:
    List of images you want inject
    Add - add new image to the list. Drag'n'drop is also supported
    Remove - remove selected image
    Clear - clear image list

    Advanced options:

    Injection type:
    Native inject - common approach using LoadLibraryW \ LdrLoadDll in newly created or existing thread
    Manual map - manual copying image data into target process memory without creating section object
    Kernel(New thread) - kernel mode ZwCreateThreadEx into LdrLoadDll. Uses driver
    Kernel(APC) - kernel mode APC into LdrLoadDll. Uses driver
    Kernel(Manual map) - kernel manual mapping. Uses driver

    Native Loader options:
    Unlink module - after injection, unlink module from InLoadOrderModuleList, InMemoryOrderModuleList, InInitializationOrderModuleList, HashLinks and LdrpModuleBaseAddressIndex.
    Erase PE - after injection, erase PE headers
    Use existing thread - LoadLibrary and init routine will be executed in the context of random non-suspended thread.

    Manual map options:
    Add loader reference - Insert module record into InMemoryOrderModuleList/LdrpModuleBaseAddressIndex and HashLinks. Used to make module functions (e.g. GetModuleHandle, GetProcAddress) work with manually mapped image.
    Manually resolve imports - Image import and delayed import dlls will be also manually mapped instead of being loaded using LdrLoadDll.
    Wipe headers - Erase module header information after injection. Also affects manually mapped imports.
    Ignore TLS - Don't process image static TLS data and call TLS callbacks.
    No exception support - Don't create custom exception handlers that enable out-of-image exception support under DEP.
    Conceal memory - Make image memory visible as PAGE_NO_ACESS to memory query functions

    Command Line:
    Process command line arguments

    Init routine:
    If you are injecting native (not pure IL) image, this is name of exported function that will be called after injection is done. This export is called as void ( __stdcall* )(wchar_t*) function.
    If you are injecting pure managed image, this is name of public method that will be executed using ICLRRuntimeHost::ExecuteInDefaultAppDomain.

    Init argument:
    String that is passed into init routine

    Close after injection:
    Close injector after successful injection

    Inject delay:
    Delay before injection start

    Inject interval:
    Delay between each image

    Menu options:

    Profiles->Load - load injection profile
    Profiles->Save - save current settings into profile

    Tools->Eject modules - open module ejection dialog
    Tools->Protect self - make injector process protected (driver required)

    Command line options:
    --load <profile_path> - start injector and load target profile specified by <profile_path>
    --run <profile_path> - imeddiately execute profile specified by <profile_path> without GUI

    Kernel injection methods require system running in Test mode.
    What's different about Project-X:

    Main dialog:

    - interface has been tidied up
    - swapped locations of eject modules/advanced config
    - checkboxes added to modules listview
    - added native column to modules listview
    - protect self option no longer requires driver separately (still requires test signing)
    - added custom dialog for processes->type->manual
    - removed automatic openfiledialog when clicking processes->type->manual/auto
    - process IDs are now in hex under processes->process
    - swapped location of status bar parts 1 and 3
    - inject/eject/remove/clear buttons are reactive and enable/disable based on selections/settings
    - added menu items to try to automate the process of enabling/disabling driver test signing mode
    - added confirmation dialog to let the user know injection completed successfully

    Config dialog:

    - interface has been dramatically tidied up and rearranged
    - removed use existing thread checkbox in favor of making dedicated map method labeled thread hijack

    Eject dialog:

    - interface has been tidied up
    - checkboxes added to modules listview
    - fixed load type retrieval
    What's new in this version:

    Main dialog:

    - added menu items to try to automate the process of enabling/disabling driver test signing mode
    - added confirmation dialog to let the user know injection completed successfully

    Bugfixes:

    - fixed a profile related issue with the "--run" command line option that could potentially corrupt the config in question
    Mostly just frontend tweaks and some much needed core improvements to top it all off. If the menu item to enable/disable driver test signing mode fails, open an elevated command prompt and return the following:

    Code:
    bcdedit /set testsigning on // to enable
    
    // or
    
    bcdedit /set testsigning off // to disable
    I hope you find this tool as useful as I have. 95% of credits go directly to DarthTon, as it is almost entirely his work. All I did was change what I myself would have done differently had this been my project from the start.

    Screenshots:







    Virus scans:

    https://www.virustotal.com/#/file/63...7320/detection
    https://virusscan.jotti.org/en-US/fi...job/2qp9z6vtho

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 335 Users Say Thank You to InUrFace1337 For This Useful Post:

    <Mister> (05-22-2022),***VLAD***65rus (03-28-2023),1478Qwer2 (04-02-2021),513135210351.2135 (02-27-2020),80u423uhij (07-23-2022),acuzi (09-27-2020),al3xc0a1e (10-28-2023),AldenBlueten (07-07-2019),aldo1902 (08-22-2018),alsodoze (01-11-2019),amos2222 (12-13-2018),anemoia (09-07-2020),antonveszpremi (08-18-2020),apinamies432 (05-05-2019),ardauchiha (06-15-2020),armyofzeus (03-03-2023),Artimus_777 (12-18-2022),ASAPmiyagi (08-04-2020),asgkingpwner (03-19-2019),Ati1338 (12-18-2018),ATTACKATTACK228 (05-10-2022),Azhirz (06-23-2023),B3astyH4x (02-13-2020),Baldtooth4 (05-02-2020),BattlePumpkin (08-13-2020),BeanDipper420 (04-24-2022),beanrat (02-06-2022),bernhart22 (03-17-2020),BipBapBoy (04-27-2020),BitchesBeCrazy (09-21-2018),bitumetheboss (02-22-2022),bjornstad (04-22-2021),blackcity80 (05-18-2020),BlackOpsPerson (06-12-2020),bladonys (05-15-2020),blay007 (03-19-2020),blayt666 (1 Week Ago),Border55 (05-20-2020),Bouboubabidi (01-18-2019),Brad2k (08-19-2023),Brr3 (03-23-2021),bryanasskicker (07-25-2023),BubbleBoy08 (01-17-2021),Buccy (05-29-2020),cabstr2 (09-27-2023),cameron99822 (10-18-2022),carlosm1024 (02-28-2021),cdgrockz21 (11-08-2018),champipao (11-09-2023),ChaosXV2 (04-27-2020),chichiemi5 (04-14-2022),Chicken Tendies (02-06-2021),ChickenDaCat (04-28-2020),cinakntl (11-23-2018),CodGod5002 (04-30-2020),codmw3em513 (04-14-2022),colbykirch1 (03-24-2020),CoolBreezy (07-18-2019),CrazySniperCatt0 (12-29-2022),Cruciiall (04-18-2021),cryptixg (07-16-2023),csgofree (12-19-2018),csinfineon (09-04-2020),cyph3r2 (08-20-2022),Dadash7777 (08-27-2020),Danilio1810_nl (09-01-2018),Dankest_meme (04-11-2020),dawciomix (01-07-2023),ddfdfdfdf11 (09-16-2023),ddvvs (02-17-2024),deathheadog (09-30-2018),deinemutterstinki (05-09-2020),dextereexxxx (05-02-2019),DidYouKnow89 (11-10-2018),DigitalNortY (10-26-2022),Droqped (03-27-2022),duckden (07-17-2020),dunlop705th (02-18-2020),eatchildren666 (05-04-2023),eckuuus (03-28-2020),EKSTAXD (06-16-2020),elias990 (07-22-2023),emirtahaaydin171511 (06-18-2022),EmptySoul (11-21-2022),enderbutter1234 (03-21-2024),entuha (12-24-2018),evie92 (02-14-2019),evilangel1305 (03-16-2024),faldin865 (09-09-2022),FeFeTM12 (01-23-2021),fhuadsgfuhgaufa (05-14-2020),flyforthewin (10-22-2018),fox_mulder (03-20-2021),fr0st69 (05-25-2021),ftbulldog (12-01-2020),fuglyboi54 (06-01-2022),Furkanbroher (10-25-2018),FuryeNorman (08-19-2021),g4kfoamy (03-02-2024),gaergreg (08-13-2020),gagnamstyl (02-19-2024),gagokapo (12-21-2018),GalaxyYT (01-18-2020),German_ModZz (11-03-2018),gjhaa (04-30-2019),gr2 (05-12-2022),Gradogrado (10-05-2022),GronkhDe (01-05-2019),GTA ONLINE (08-29-2022),Gye_Sie (02-05-2020),Hackzed (01-19-2020),hakimacuna2 (02-19-2024),HAKxMusiq (04-17-2019),Hassana (06-10-2022),Hesa (03-18-2024),Hewe12 (09-13-2020),hgbcreator1 (06-15-2023),Hinihu (10-12-2022),HugroPD (06-25-2023),Hunter_Cliff (01-01-2023),HYXHost (11-01-2018),i4rare (10-10-2023),IAMIDIOT (02-21-2021),iare1499 (05-19-2022),ibims1aua (06-16-2023),IbukiMioda (05-03-2021),imRaage (12-18-2018),iMxcnt (09-23-2020),InnkCyrex (01-21-2021),insertelvishhere (06-04-2020),IntelMervyn (05-27-2020),ItsBloodRose (03-10-2023),itzDavo (09-29-2020),ItzLuk3 (02-17-2019),ItzNukeHD (01-31-2021),itzpiix (08-12-2022),ivkj (12-06-2020),jakez18 (07-28-2019),janchmelik1 (08-27-2020),Jaois6 (07-29-2020),JaredTheDaFuq (09-03-2022),Jaybawtin (02-05-2023),Jnsh24 (07-24-2020),joaoisgay (06-23-2020),JONASCHEATERIS (02-13-2020),justintaua (05-27-2022),JusTOG (05-31-2020),k1k2k3k4k5k6 (05-23-2020),k2behravan (01-28-2021),k3ro (01-23-2023),Kachowga19 (08-12-2022),KAKKUX (02-01-2019),Kanekid2m1 (12-24-2018),KevinAnja1611 (01-08-2022),Kickkid123 (12-12-2020),kill02 (01-26-2019),kim clarkl (05-30-2023),kimwnas123 (05-14-2023),kingloi18764 (10-05-2020),KnasFras (4 Weeks Ago),Koczisch (08-20-2020),koekieartz (12-18-2018),Konatah (06-13-2021),koshinator (05-18-2020),koyk (01-26-2020),KrixYT (10-05-2018),kufu32 (06-01-2022),kyle722001 (01-26-2019),lagk0u (10-05-2023),Lanceola (05-03-2019),leox23l (08-15-2023),liamsaunders (05-22-2022),lokij123 (04-02-2020),Lootboxes (08-31-2020),Louissss (01-26-2019),loyalxtoxy22 (04-21-2021),Luukavids (11-02-2018),lxAnton98xl (08-18-2023),MarcelloG12 (03-17-2020),Marius134 (12-19-2018),Mavakon (02-01-2020),max-ak47 (02-03-2022),max1023 (05-03-2021),MaYuu (04-02-2020),mblade (02-14-2019),McRawr (10-04-2018),Meso_Loner (06-12-2020),MeXGamer (06-23-2019),MiaGree (06-10-2020),MicrDan (12-27-2018),mikebik (08-23-2018),Milanoredeg6 (02-28-2019),mitsakos2003 (01-06-2021),mjr3123 (07-20-2020),MP_GUMDROP_GH (12-03-2023),Mr.Hacker151 (12-27-2018),MrMaskedd (08-06-2020),n0r35p3cT (02-10-2019),n0tryan (09-24-2021),neverdie8888 (05-17-2020),NewtonHammer (02-18-2021),Nexus8389 (07-26-2021),nicollaszattar (04-22-2019),Nightsd4kllr (09-08-2019),Nikolia123 (09-08-2019),NotCrypt1 (03-11-2023),Novell2001 (05-01-2020),noYseFCK (04-30-2020),NZRBRBRB (08-16-2020),oldfox244 (09-29-2020),olly911 (02-24-2021),OnlyGodCanJudgeMe (01-19-2020),onmy1s (05-23-2022),oSikeoe (06-12-2020),ossae7hobbs (07-16-2021),palko123 (02-18-2020),ParadoxZephyr (02-12-2021),parapara123 (05-04-2023),ParatecHacks123 (05-08-2020),pdamas (06-17-2023),pelittaja22 (05-10-2023),perryk89 (12-22-2018),peterk0321 (06-20-2020),pidoras69 (11-25-2022),pietham (03-05-2023),Pinguchainz (08-26-2018),pixelzexz (10-24-2022),pocketsand17 (06-02-2019),POGMANMANMAN (07-22-2021),poiuyt25 (09-28-2022),polzer1 (01-16-2024),PPpooDooHead (05-24-2022),preficmodz (02-07-2021),putamadrehussienalda3ja (08-05-2022),qasimpoti007 (05-29-2022),QuaniTTA1337 (03-24-2021),RaFaeL96613070 (09-12-2020),RayanJQ (05-10-2020),rayvenss (12-11-2018),RazorEUW (05-02-2020),RBWW (06-29-2022),re4per91 (01-23-2019),realcongsy (02-09-2023),rectalrooter (07-28-2023),reddude258 (03-03-2021),REDSTORM82 (06-22-2019),RelytNos (08-29-2018),ReVverzZe (08-22-2018),Reznov95 (01-12-2021),rhonaldo14 (09-08-2018),ri0k (03-03-2020),ripple69 (02-15-2020),Riverfront (05-30-2020),Ronaldo65 (02-17-2020),rusitotheboss (06-01-2019),s7r1k44 (07-19-2019),salle123 (02-16-2023),sauvagee (01-27-2019),Sawzuh (06-05-2022),sayntbr (12-27-2018),seaxeas (05-18-2023),segaelliot (02-21-2021),Shirea (12-29-2018),Shokora (10-01-2022),shotmaster661 (12-24-2018),Shzl (05-25-2020),siivxk (07-25-2022),sipsop (05-30-2020),sisi780 (08-08-2021),slutfucker (11-16-2018),slvtty (05-01-2022),sneak38100 (02-21-2019),SnortHeroin (02-20-2021),snowcaca (08-28-2020),Snuki123 (08-11-2023),spacemole (05-30-2020),spadoot (01-29-2022),SrAnonymousPT (02-12-2021),ssd24 (10-09-2018),steam_valkyrie (10-07-2018),stephis (08-27-2020),storasnoppar (12-13-2020),Sw4gMan (12-05-2020),SweetFlow2002 (08-22-2018),tappeline (08-03-2023),tarka11 (06-06-2020),tfgoon (06-10-2022),the8bitter (12-06-2020),TheBi (06-27-2022),The_ELL (12-05-2022),thisisfortehlels (01-05-2020),Tigwer (09-06-2018),Tollo8 (06-09-2020),tomfirforom (09-10-2022),totipro2 (10-04-2020),towy (09-07-2020),trfhjytjyt (02-08-2023),troll123abc (05-28-2020),twis121 (08-15-2019),TylerBrady00 (12-31-2022),UDemBoYZ (06-29-2020),unkownboy999 (07-06-2020),Uveless_ (02-23-2024),Varju4 (01-06-2019),vizzult (08-24-2023),WEEDR (01-19-2020),whenducksattack (10-02-2022),whippersnappers (09-11-2020),williamdavi (12-01-2020),williamleung (08-25-2018),wondertf2 (07-28-2023),wuheng (02-11-2021),xacattacks (04-24-2020),XiterMaluco (03-19-2022),xRelic2 (08-02-2021),xX29leonshacktime11 (07-22-2020),xxalphabravo7xx (03-19-2019),xxfranciscofranco1939xx11 (05-08-2020),X_JustWessel_X (05-13-2020),ydimun (07-04-2020),yFizz (02-25-2020),YoBeYuhGang (12-09-2018),YOBoiat101 (07-28-2021),yolobatman1 (06-25-2022),YonenTranny (01-21-2021),yusufs33 (05-31-2021),Zachcherney1 (12-20-2018),zaedzayd (11-26-2022),zalkoh252525 (01-16-2022),zekoon2 (08-16-2020),zenod12 (07-05-2020),zimsqeix (04-06-2020),zMagics (07-21-2020),zotaa (03-25-2023),zuhnfakecs (06-19-2020)

  3. #2
    People aren't against you;
    They are for themselves

    Former Staff
    Premium Member
    Kevin's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Home
    Posts
    12,471
    Reputation
    2145
    Thanks
    1,894
    My Mood
    Tired
    /approved but untested
    Please contact me through PM, I rarely check MPGH IM


    MPGH Minion+ 2/5/2019 - 12/1/2020
    Call of Duty Minion 12/23/2017 - 12/1/2020
    MPGH Minion 12/23/2017 - 2/5/2019
    MPGH Minion+ 2/2/2016 - 8/9/2016
    NewsForce Writer 1/1/2016 - 8/9/2016
    CockSucker 7/24/2015 - 7/25/2015
    Other Semi-Popular FPS Hacks Minion 12/27/2015 - 8/9/2016
    Combat Arms Minion 11/4/2015 - 8/9/2016
    Maplestory Minion 6/1/15 - 8/9/2016
    League of Legends Minion 6/1/2015 - 8/9/2016
    Other FPS Hacks Minion 5/31/2015 - 8/9/2016
    Minecraft Marketplace Minion 6/18/2015 - 9/15/2015
    Combat Arms Marketplace Minion 4/05/2015 - 6/2/2015
    Marketplace Minion 8/1/2014 - 6/2/2015
    MPGH Minion 8/1/2014 - 2/2/2016

    Pharaoh (#7) 5/01/2014 - 5/31/2014
    Premium Member 2/1/2014 - Current
    Official Middle Man 12/12/2013 - 6/2/2015
    Member 11/15/2009 - Current

  4. The Following User Says Thank You to Kevin For This Useful Post:

    InUrFace1337 (08-31-2018)

  5. #3
    jeffdelux3's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    look and work nice

Similar Threads

  1. [Release] Project-X - A Worthy Xenos Injector Mod [v2.3.10.9999]
    By InUrFace1337 in forum Call of Duty 10 - Ghosts Hacks & Cheats
    Replies: 4
    Last Post: 11-22-2018, 10:18 AM
  2. [Help Request] REZ Injector+Mods
    By CowboyWoody in forum Combat Arms Help
    Replies: 1
    Last Post: 09-28-2011, 05:01 AM
  3. Project Candy Bar: A new Injector
    By NOOB in forum Combat Arms Discussions
    Replies: 18
    Last Post: 09-26-2010, 08:19 PM
  4. [Release] swat540 list of injectors/mods
    By swat540 in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 12-21-2009, 03:12 AM
  5. MPGH Public W/ Injector... *Mods Look*
    By gbitz in forum WarRock - International Hacks
    Replies: 32
    Last Post: 03-04-2008, 04:28 PM