Results 1 to 5 of 5

Threaded View

  1. #1
    InUrFace1337's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    87
    Reputation
    39
    Thanks
    5,207

    Project-X: A Worthy Xenos Injector Mod [2K20 Update]

    Here's yet another update for my personal injector, and it's long overdue lol.

    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
    - changing process type no longer creates instant file dialog popup

    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
    - added kernel driver map option

    Eject dialog:

    - process name is now in the title bar
    - interface has been tidied up
    - checkboxes added to modules listview
    - fixed load type retrieval

    Process dialog:

    - completely new, and not in xenos. type in process name rather than browse when using manual process mode
    What's new in this version:

    - updated for latest win10 version at the time of release
    - fixed generic call func in the blackbone library (fixed ejecting of modules from selected process)
    - moved listview checkboxes to the name column, removing the unnecessary X column
    - listview columns can now be resized
    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/gui/file/...b441/detection
    https://virusscan.jotti.org/en-US/fi...job/s0my67vfkv

    <b>Downloadable Files</b> Downloadable Files
    ███╗░░░██╗██╗░██████╗███████╗
    ████╗░░██║██║██╔════╝██╔════╝
    ██╔██╗░██║██║██║░░░░░█████╗░░
    ██║╚██╗██║██║██║░░░░░██╔══╝░░
    ██║░╚████║██║╚██████╗███████╗
    ╚═╝░░╚═══╝╚═╝░╚═════╝╚══════╝
    ⣿⣿⣿⣿⠟⠩⠶⣾⣿⡿⢯⣍⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
    ⣿⣿⣿⠏⠀⠀⠈⠉⠀⣠⢤⠈⠋⠀⢠⣄⠉⢻⣿⣿⣿⣿⠃⠈⢿⣿⣿⣿⣿⣿
    ⣿⡟⠁⠀⠀⠀⣹⣦⣀⣙⣈⣀⢶⣤⣈⣁⣠⣾⣿⣿⣿⡿⠀⠀⠼⢿⣿⣿⣿⣿
    ⡏⠀⠀⠠⣤⠦⣭⣙⣛⠛⠋⠁⠀⠙⠛⢉⣻⣿⣿⣿⠋⠁⠀⠀⠀⠀⠀⠀⠈⣿
    ⡇⠀⠀⠀⠛⠮⣽⣒⣻⣭⢽⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿
    ⡇⠀⠀⠀⠀⠀⠀⠀⠈⠉⠉⠉⠉⠉⠉⣼⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿
    ⡟⠳⢤⣤⣀⣀⣀⠀⠀⠀⣀⣀⣤⣴⣾⣿⣿⣿⣿⣿⣷⣦⣤⣤⣤⣤⣤⣴⣾
    ⣇⠀⠀⠀⠀⠉⠉⠈⠁⠈⠉⠉⡙⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
    ░██████╗░██████╗░░██████╗██╗░░██╗
    ██╔════╝██╔═══██╗██╔════╝██║░██╔╝
    ██║░░░░░██║░░░██║██║░░░░░█████╔╝░
    ██║░░░░░██║░░░██║██║░░░░░██╔═██╗░
    ╚██████╗╚██████╔╝╚██████╗██║░░██╗
    ░╚═════╝░╚═════╝░░╚═════╝╚═╝░░╚═╝

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

    .ned 8 (06-05-2020),1337"Gaming (09-16-2020),385andrew123 (05-18-2020),3dprintcom (05-31-2020),911tifa (04-23-2020),999moon9999 (05-10-2022),99vape (03-25-2023),aaronb56 (08-17-2021),ABJ6 (07-21-2020),adeok (08-18-2021),AdeptPain (05-23-2020),aevit (09-03-2020),Afrohdite (09-30-2020),AGuyThatIsCool (07-05-2020),ahartyy (11-20-2020),AjHeikel (02-14-2021),akachronix (03-28-2020),Alizaxooo (05-05-2020),allingo (04-22-2020),Amir_erf (04-13-2020),AMK007 (06-08-2020),AndrewGuiney (05-28-2023),AndrewModding (07-19-2020),Anjo2k (08-09-2020),antonio123cd (08-03-2020),antonveszpremi (08-20-2020),AoLiGei (05-23-2020),apragatz (08-26-2020),Arabaster (05-28-2020),arapoklyn (02-02-2024),ArcHacks00 (06-26-2020),ardauchiha (07-22-2020),Armedjared (06-15-2020),ArregoX (04-21-2020),ARWZVII (09-18-2020),ASAPmiyagi (05-29-2020),asdasdsdadsdadada (09-19-2020),assholefister (11-08-2020),aufmeinnacken (02-24-2020),AveenXBL (06-26-2020),axis319 (05-27-2020),aymenboyyy (09-12-2020),Az0xx_edits (01-11-2023),azacibran (06-15-2020),AzunoRyoko (07-23-2020),Ballermanner (08-11-2020),basedbabyface (10-21-2020),BasedBasedBasedBased (11-22-2020),benleny234 (07-12-2020),biggamermanfat (09-17-2020),BiguBoi1 (02-04-2020),Big_bird04 (02-12-2020),Billie0v0 (10-21-2020),billtheduck (04-25-2020),Birichino (04-29-2022),bitchboi23 (02-11-2023),bjrmoicluko (03-26-2020),blackchaosx (02-08-2022),BlackOpsPerson (06-12-2020),blaze999 (10-01-2020),bleeding124 (04-20-2022),boboargos (07-08-2020),BOBTHEBULDER (06-13-2020),Boogieman_NL (05-12-2020),Boomugo123 (05-21-2021),Bossnagev4 (04-10-2020),bottleeptav2 (06-13-2020),breezypanda (02-20-2020),britchseq (05-13-2020),BrMajin (11-17-2020),brogvfx (07-10-2020),BrysonIsHereTTV (02-21-2021),burrito61 (02-08-2020),caccabuona (05-13-2020),carlosm1024 (02-22-2020),CASQUE_ (08-13-2020),cawman (03-20-2020),chanseh (02-12-2020),Cheeseboy404 (11-17-2020),Chetax92 (08-31-2022),Chicken Tendies (02-06-2021),ChickenDaCat (04-28-2020),chiinotz (01-25-2024),chinmenor2 (06-14-2020),chris123455 (07-13-2020),chromie496 (04-03-2020),clasik (07-14-2021),cntrl123 (05-20-2020),cod459 (06-25-2020),Code C.C (10-13-2020),CoDiK (02-03-2021),Coldchen6868 (03-05-2023),Connorakis (05-12-2020),consepter (05-29-2020),cooper10133 (06-24-2020),CraZZyRegal (04-07-2020),crittooo (03-13-2020),Croat233 (11-04-2020),crxyy (02-16-2020),cryptehh (03-07-2023),csgo99 (04-14-2020),CubPG (1 Week Ago),Cyclic98 (06-28-2020),dametime2 (08-21-2020),Damon YT (08-19-2020),danny10900hd (05-25-2020),dasartwa (02-08-2022),dasdwasdwa (02-29-2020),deathmagic (08-16-2020),DeceiverRay (10-25-2020),decronic (06-06-2020),deinemutterstinki (06-17-2020),dempsey1049 (04-11-2020),dev.phil (07-18-2020),dghhfg (03-08-2024),dice799 (03-05-2021),DieOmaGang (12-31-2021),DIMATRI (06-18-2020),djdazzal (07-03-2020),Djouckk (05-18-2020),dolan12345 (05-18-2020),donkey777 (05-21-2020),donkeyrag (07-29-2021),dperhsakr92315 (09-28-2020),Draztic1 (02-09-2020),driel018 (02-04-2020),dsadaswdasda (10-05-2020),dwert (07-22-2020),dyepack (02-22-2020),eas123456789 (02-06-2022),eckuuus (03-26-2020),edge92 (02-01-2021),ehuss1 (07-05-2020),ElectricalGamer (06-09-2020),Eleemo86 (03-17-2020),EliteAbola2 (03-25-2020),elstark (08-18-2021),el_ramberto (05-24-2020),EmoTrash (06-18-2020),EPICGOAT (02-14-2021),Ermler1994 (05-20-2020),EvilKaelthas1337 (02-08-2020),evixlyv4 (05-23-2020),exbitchtoldyouuu (10-08-2022),exd333 (03-31-2020),exoticgamingv55 (12-27-2020),EZSQEEZY (03-01-2020),FadeRemix (03-06-2021),fasfashgfhgf (09-16-2020),fatcuck (02-12-2020),Faze_bloodshot (03-27-2020),Felix000 (11-09-2020),fhuadsgfuhgaufa (05-14-2020),filiphouba (05-30-2020),Florianlpthereal (08-08-2023),FloveN (03-02-2021),follow_up (04-11-2020),Forgot Password (06-25-2020),fortymenone (05-07-2022),fox_mulder (02-09-2020),fr0st69 (02-17-2021),FredLemunled (05-29-2020),FROSTMAGE (05-07-2020),ftbulldog (12-01-2020),fuckoffnonce (10-12-2020),fuckthisaccountgoddamn (08-02-2020),FVXT (04-30-2020),Fxck56 (09-19-2020),fyurgbf (09-20-2020),gabrielgbs97 (04-22-2020),Gapy10 (10-27-2020),Gatromc57 (12-02-2020),GavinMcChicken (07-18-2020),gEOGE23 (04-18-2021),GermainModz (11-13-2020),German_ModZz (10-20-2020),gerqgdsfweqgwef (07-15-2020),gfh31231hbv (02-24-2021),ggabriell (09-05-2020),GGMast (12-06-2020),Ghost1o1 (08-20-2020),gino97 (09-24-2020),Giovanni_47 (07-11-2020),Glo0m_Weed (05-11-2020),godisntamongus (12-20-2020),godlvl222 (12-22-2021),GoodGuyZEK (04-02-2023),gothboiclique_69 (09-22-2020),GracedMCA (02-20-2020),GrapeSause (09-12-2020),gtbf (04-18-2020),G_Phaze (01-03-2021),Hades246 (03-28-2020),hamzakiller321 (06-03-2020),harshcs (06-27-2020),HCxJOKERS (03-08-2024),hdhrheh (05-15-2020),heroinrock (04-18-2020),Hewe12 (09-13-2020),Hicko74 (06-17-2021),hinata_takahashi (05-09-2020),hisham89891 (05-12-2020),hoodie54740 (09-01-2021),HugoMassiveD (03-04-2021),hunter29651 (07-08-2020),HUNTERS99 (04-04-2020),IAMFatSatan (11-21-2021),ibrahimnechodi (07-31-2020),Ichigo0x (06-23-2020),ILIKEGREEN51 (10-03-2022),ImJustHere4Hax1 (01-04-2022),iMxcnt (10-23-2020),imZerin (10-21-2020),Inmortal Senpai (03-25-2020),Inpertinente_ (05-23-2020),Inundent (09-08-2020),IoanPP (04-15-2020),Iron.Wolf (02-05-2020),isaclaihorinne (02-29-2020),itec' (07-17-2020),ItzLoveee (03-15-2020),ItzNuke (05-25-2020),ItzSeaBaSs (02-10-2020),ItZzHolo (05-10-2020),ivkj (09-26-2020),JapanCoder (08-13-2020),JaviiGaby (02-11-2020),Jean-negro (03-31-2020),jeevith (09-08-2020),jesusisga (05-14-2020),jfantin (05-26-2020),JimmySavil (11-08-2020),jjhacks1 (06-18-2020),JKWW (03-03-2020),Joelderkek2 (06-11-2022),joe_0316 (04-21-2020),jommygav (05-31-2020),josh312645 (02-13-2020),joshbfg23 (06-04-2020),joshcummins (04-29-2020),judenfisch (05-23-2020),jumppiii (04-07-2021),Justin2091 (07-21-2020),K04Passat (12-07-2020),kabalata2 (02-08-2021),KanekiVrhs (04-27-2021),Kapperu (02-05-2020),Kawa184 (07-28-2020),kaydenrue (02-13-2021),kbepklghperkth (05-27-2020),KebabEntferner (02-12-2020),Keenwi001 (09-28-2020),kellie51k (07-05-2021),kendrck_ (05-26-2020),keyclone (02-12-2020),khanmetal (08-02-2020),Kickkid123 (05-23-2020),killaman9200 (04-24-2020),killlpoint (04-19-2020),kimpula (07-07-2020),kingrabbit (02-27-2020),Koczisch (08-11-2020),koekieartz (03-21-2020),koenigbale (04-26-2020),kondorey (06-05-2020),KrixYT (08-25-2020),kurwakit (02-18-2020),L0rpeX (09-09-2022),La Encryptor (05-24-2020),laoufi (06-30-2020),LawlessPapi (02-27-2022),lecheater54 (09-23-2020),leox23l (04-04-2023),liamesposito (05-25-2020),Liam_429 (02-14-2020),librathy (05-10-2022),LilCobain (04-07-2020),LOCOWOO (01-12-2022),loeik81 (07-02-2020),lolol1234512345 (07-20-2020),Luis Suarez (06-07-2020),lukey8902 (11-27-2020),lukiepookie10 (3 Weeks Ago),lulu2345 (02-12-2022),LuneWulf90 (01-02-2022),Lutee (01-05-2022),Maartn (06-23-2020),MaCockLapel (07-29-2021),mad1man (02-19-2021),makingmoney_85 (10-11-2023),malikmalik20 (03-13-2022),mansoori910 (04-25-2020),Mar1234 (04-17-2021),marcel3137 (02-09-2020),marcoarcudi (04-11-2020),MATHIASSMURF99 (12-01-2020),MaxisReed (07-08-2020),maxthegreatking (07-04-2020),McRen6 (06-15-2020),Melic01 (05-09-2020),mercerisfree (09-25-2020),merfos (05-31-2020),Meso_Loner (06-11-2020),Mickael1999 (03-30-2020),mimum (06-06-2020),mirekb44 (11-13-2020),misakey (02-18-2021),mitsakos2003 (08-20-2020),Mixtaxen (11-04-2020),mjr3123 (10-27-2020),MLG HAXOR (03-28-2020),modzelacer (06-25-2020),MoJyo (06-20-2020),Mooneybags (05-19-2020),Movvy (07-02-2020),MrEm0z (11-20-2020),MrGehirn (01-16-2021),murder2003 (01-13-2021),mw ass (03-24-2022),MysteryGamerXDXD (07-30-2020),natbannn (02-04-2021),neek1337 (11-07-2023),NegroGarca (05-30-2020),Nekkozrgfr (02-10-2020),NicedMemer (04-22-2020),Nico543 (09-04-2020),nicry12 (02-08-2020),Niggalus (03-22-2020),nochillrobin (03-29-2020),noitsmyhead (11-29-2021),not666999 (07-07-2020),notlucas1 (09-14-2020),notSanct (02-20-2020),NottzAssassin86 (02-21-2020),NotusSkupra (07-05-2020),NovaSpartan01 (03-21-2020),Novell2001 (05-01-2020),Nulli (05-23-2020),NZRBRBRB (06-28-2020),nzvnzx (08-29-2020),OAK369 (07-30-2020),Oceanssly (03-30-2020),OhNoLookAtThatNeek (09-24-2020),okay boomer (05-25-2020),oldsage103 (10-27-2020),olibarnes (10-12-2020),Oliver5402 (07-24-2020),only11letters (06-15-2020),oreios (08-12-2020),OvOFW (05-21-2020),oXeik (02-26-2020),PaintHuffin (09-28-2020),parachuting (03-16-2020),paradox123 (10-21-2020),ParaTecHacking (09-11-2020),paulohax (09-04-2020),pavementgum (07-25-2022),Payl57 (05-09-2020),peterk0321 (06-20-2020),Phantom111 (05-13-2020),phr33z (05-20-2020),Pinguchainz (11-07-2020),PiPreto (08-21-2020),playboicoins (05-31-2020),PocketAces (02-09-2020),points0 (02-12-2021),poopshine69 (05-21-2021),ppeater87 (02-12-2020),PredzRacerRacer (06-21-2020),PRNRML123 (07-03-2020),ProWeeD76 (02-12-2020),Pseudoalacon (07-27-2020),Psvman6599 (03-19-2020),Psychic143 (02-09-2020),PtitZizi (04-03-2022),PubesHF (11-10-2020),Quasers (06-01-2020),RadMan-Game (01-13-2021),RadonXell (01-05-2023),RandomNN123 (04-15-2020),raside295 (09-12-2020),RATREMY (05-11-2020),RBT101 (08-29-2020),RedditArmy10 (10-01-2020),reddude258 (05-11-2020),Remerse (02-18-2020),rivaldonger (02-09-2020),Riverfront (05-30-2020),RuskiNoble932 (07-25-2020),rustisltu (03-25-2020),rx7187 (09-09-2020),ryan3637 (11-02-2020),ryanchen2134 (04-26-2020),rzuz34012 (02-14-2024),Sa3son (05-13-2020),sager2008 (2 Days Ago),samhost (05-19-2020),SassyDaSasquach (03-19-2020),Savitar727 (12-08-2020),scriptgranny (02-08-2020),Sebbekingen78 (05-26-2020),secretsthegod (01-30-2022),SeekNDestroy357 (04-13-2020),segaelliot (03-03-2020),seishi (09-20-2020),SerionSerion (02-04-2020),shaun3856 (07-29-2020),shaunzy (09-16-2022),shitylo (09-10-2020),siloso (05-02-2021),Silverbullet911 (10-24-2020),simon1st (07-17-2020),sinisa971 (02-07-2020),Siteek (01-10-2021),sj47 (02-20-2020),skrrtneowm1 (02-13-2021),skruffpuff (07-06-2020),Skullz310 (02-07-2020),SkysNP (09-17-2020),Slashkisss (05-15-2020),slavarly (09-07-2020),smallfeng999 (01-03-2021),SmokG (09-08-2020),Snakegod789 (09-14-2020),sniffler (02-16-2020),SnortHeroin (02-20-2021),soax (12-22-2020),Sofiane74000 (06-28-2020),Solopwnage (05-02-2020),soparabaixarumhack (05-10-2020),Sourcesurfer (04-18-2022),SpeeD129 (08-28-2020),Stevens1242 (06-07-2022),stickmenjohn (02-18-2021),stimylik (12-04-2020),StormKA (08-19-2020),stormninja12 (07-10-2020),Superdedemartins23 (08-19-2020),SuperManNinjaa (06-25-2020),svenson (06-04-2020),swrveddddd (02-05-2020),synluv (08-03-2020),Tahoez (03-14-2020),tambernarinder (05-09-2020),tamem313 (04-17-2020),Tarzant97 (07-15-2020),TaspiMXY (03-18-2020),tcadilacmmy (08-01-2023),tchoiinfr (10-16-2020),tempmailXD (02-27-2020),TGIFridays (01-19-2023),ThatDayV (04-11-2023),thegluesbrother1921 (03-29-2020),TheHackerBoyer (07-13-2020),theindianz (07-15-2020),theofficialezra (01-17-2021),Thomas O Melly (07-14-2020),ti316dy (03-11-2020),tomfirforom (09-10-2022),topps (12-04-2021),torkaski1 (02-08-2020),towy (01-30-2021),TradeMarked (04-16-2020),Trikiloko640 (05-17-2020),TrollOfNoobGTA (05-11-2020),TTVzuko1334 (11-27-2020),tuamadremorta (09-26-2020),Tyrant-AJ (02-17-2021),UDemBoYZ (03-01-2020),ultimite_ranger (02-14-2020),umoeke (02-01-2021),Undertakerhvh (04-01-2020),UnknownToxins (09-12-2020),UnlegitSuchti (03-02-2020),Uprise123 (10-12-2021),urmom4444 (06-28-2020),Valerio31 (03-24-2020),Veap (10-25-2020),Vexro1x (05-21-2022),vexx876 (06-29-2020),vMella (02-15-2020),vonvonvonvon (04-04-2020),vShiina (07-01-2020),VzRL (05-20-2020),wantwo (04-06-2024),warior_67 (04-02-2020),warix12 (08-29-2020),wdblake (05-23-2020),Wearwoofy (04-29-2020),Wesiscool205 (11-19-2020),whatabutt (03-15-2020),williangg (04-10-2020),WillWolf (11-27-2020),will_stake (02-06-2020),Wivio (06-27-2020),wz36125 (02-14-2020),XanniesBB (02-27-2020),Xans (08-18-2022),xcriptic (04-21-2020),xdgxdg123 (06-10-2021),xferalocow (09-19-2020),Xforcengod (03-29-2023),xgroup32 (05-06-2020),xlone999 (12-03-2021),xpghawk (05-30-2020),xxdinomikexx (05-13-2020),xynry (08-12-2020),X_JustWessel_X (10-20-2020),YepCockeyes (08-19-2020),yespornplease (02-10-2020),yFizz (02-25-2020),ykicassie (08-01-2020),yolobatman1 (04-11-2020),YouClapped293 (09-13-2020),YoungDeag (02-12-2020),yungjit (10-10-2020),ZachFPS (06-22-2020),Zainalig82 (07-15-2020),zDevilHacker (11-17-2023),zMagics (07-22-2020),zombiehater132 (03-19-2020),zthemortal (07-04-2020),Zwo (03-21-2020),ZZZZ44443333 (02-05-2021),_xDeliciusx_ (05-23-2020)

Similar Threads

  1. [Release] Project-X - A Worthy Xenos Injector Mod [v2.4]
    By InUrFace1337 in forum Call of Duty 10 - Ghosts Hacks & Cheats
    Replies: 2
    Last Post: 01-06-2021, 08:46 AM
  2. [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
  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