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

    Xenos Injector 2.3.2 - Windows PE Injector

    This is not my project, I'm simply uploading this because the latest version (at the time of posting) is not here on mpgh.

    Redesigned GUI and some more features

    - 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.

    Changelog

    V2.3.2
    - Win10 RS4 update support

    V2.3.1
    - Win10 Fall Creators update support
    - STATUS_UNSUCCESSFUL codes refactored
    - Bug fixes

    V2.3.0
    - Win10 Creators Update support
    - Unified injection and manual mapping (injector -> target) : x86->x86, x64->x64, x86->x64, x64->x86
    - Bug fixes, stability improvements

    V2.2.2
    - Bug fixes, stability improvements

    V2.2.1
    - Win 10 10586 driver compatibility
    - Minor GUI usability fixes
    - Create process: working dir changed

    V2.2.0
    - Command line options
    - Separate x86/x64 profiles
    - Pure IL exe manual mapping

    V2.1.4
    - VS 2015 runtime
    - Win10 RTM support

    V2.1.3
    - Win10 build 9926 support
    - Win8.1 bug fixes

    V2.1.2
    - Fixed BSOD under win7 and win8.1 systems
    - Major kernel manual map bug fixes
    - Kernel logs

    V2.1.1
    - Added some logging

    V2.1.0
    - Kernel manual map for user-mode dlls
    - Process handle access rights escalation

    V2.0.0
    - New GUI
    - Injection image list
    - Auto-injection
    - Injection profiles
    - Injection delay timers
    - Kernel injection improvements - module unlinking and init routine invocation
    - Win10 tech preview support
    Screenshot:



    Readme:

    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.

    Comon problems:
    1. Access denied


    Failed to load BlackBone driver:

    {Access Denied}

    A process has requested access to an object, but has not been granted those access rights.
    If you are using account with admin rights - run program as Administrator. If you are using restricted user account - enable UAC and then run as Administrator.

    2. Injection failed with error code 0xC0000225. Injector failed to resolve one or more dll dependencies. Make sure you have all required dlls and proper CRT libraries. In case of kernel manual mapping, dependencies should be placed near target process executable or in system32 (SysWOW64 for 32bit processes) folder.

    Credits:
    DarthTon - Creator of Xenos injector
    _Mike@OC for his managed dll injection using AsmJit code
    Petr Kobalicek - AsmJit project

    Virus scans:

    https://www.virustotal.com/#/file/3a...2440/detection
    https://virusscan.jotti.org/en-US/fi...job/088a887kds

    <b>Downloadable Files</b> Downloadable Files

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

    0dy (06-13-2020),12tuesday34 (01-17-2021),32rferkipper (03-19-2021),6johnyboy9 (10-30-2020),905884672 (01-21-2021),a1297 (10-09-2020),AceOA (06-13-2020),Adabuesi (03-10-2021),adam181 (07-05-2020),admiralrftz (07-07-2022),adsffdge (11-17-2020),ahartyy (06-12-2021),AhMeD-Z1 (05-30-2020),ahmetq2 (12-06-2020),AHS4 (12-17-2020),akm940356 (08-25-2019),albarwani (05-09-2020),AlbyKaiser (04-28-2021),Alex1697 (02-12-2020),AlgerinoYT (04-09-2021),alsodoze (12-22-2018),AlterLight (12-16-2018),andika130600 (09-25-2018),anepcarl (03-06-2023),angelogot20 (05-14-2019),anthony555 (08-11-2021),apcanhack (12-16-2019),ARKOWIEC91 (05-17-2020),asdfas123 (12-22-2018),Athravan (02-04-2020),ayhamalali (08-15-2018),b3t0m0x (01-31-2019),babyloniaa (01-30-2019),baebrum (08-24-2019),baka559 (08-14-2020),BakafatFisH (07-22-2020),Balmy (06-26-2019),bananas129 (08-21-2018),basedbabyface (10-21-2020),BasedBasedBasedBased (01-23-2021),batuhan42 (12-14-2020),bcmd9009 (01-27-2020),beau456 (05-13-2020),Belying (11-04-2018),Besje46 (03-29-2019),BestOfGaming (05-14-2020),bestolafna (08-19-2019),BIGTUCKMCDUCK (10-22-2020),billythefish (08-18-2018),BinPOT (03-30-2020),Bitchin (05-26-2019),bjjuddy (01-28-2023),Black ops 2 Ass (08-14-2019),Blaidez (11-11-2019),Blake Wright (08-08-2020),bobjones0211 (09-24-2020),BOMZcp (05-31-2019),Bonux (12-10-2020),Booce123 (10-27-2018),botara1337 (05-24-2019),braindestroyer (08-05-2021),brcno (05-20-2020),Breshkovac (04-05-2020),Brianj (12-25-2020),briciola1512 (12-09-2021),brobrofet (07-13-2019),brrrr829 (12-20-2020),bull1106 (05-24-2020),C9Soul (08-04-2019),caden99551 (05-25-2020),ceh430 (12-13-2018),Chambered44 (05-05-2020),chaos00174 (10-28-2018),charmine779636 (11-22-2019),cheatingisfun6 (10-24-2018),chwan521 (10-13-2020),cmokep (02-18-2020),cmoreno3 (11-27-2019),codeinerbelarus (11-29-2020),CoolBreezy (07-18-2019),cooliolim (12-16-2020),cordycepscarlos (06-11-2020),Cpt. Obviuos (07-15-2020),crazy52150 (04-09-2020),crazyd92 (03-08-2019),CrimsinYT (02-16-2020),cringecringe (10-25-2020),croaksir (07-07-2020),Crucifiex155 (05-02-2020),csefefs (02-04-2020),cTXgpngZ (02-23-2019),CyanideSu (02-23-2019),cyberseker (05-31-2020),cyclonexhazard (04-01-2021),Cynplexx (11-03-2020),d4nksc0p3 (06-24-2019),DABOOOM (05-26-2020),Daddyoisme (06-24-2020),dametime2 (08-05-2018),darkdevil24 (05-01-2021),davidedn23 (12-26-2020),Dazeilinger (09-27-2020),deathheadog (09-30-2018),denss (04-28-2020),DerValar (02-06-2020),devil190901 (11-10-2020),dheerajvirgo (06-24-2020),dialgon1409 (05-08-2020),dickr (12-09-2020),DJPwnage (09-22-2020),dodotfkb (10-10-2020),donga337 (12-25-2020),Dothraki32 (08-30-2018),dovabong115 (10-26-2020),DragonH (05-21-2019),Dragonhawk47 (01-22-2021),DrakeH (07-02-2020),drashe (06-13-2020),Dravus999 (07-15-2020),drewthegreat (09-01-2018),DrHexDex (08-06-2019),dsDDRDds (06-14-2019),dyrus2 (05-18-2020),ebonycs (11-23-2018),echo42 (06-14-2020),eckon (07-15-2020),eldemarco (08-16-2019),eldons94 (03-07-2020),electrino (05-30-2020),eljefe19 (05-26-2020),elmarco666 (04-23-2020),Entityza (12-26-2018),Eqxill (07-20-2020),euclyde (08-02-2018),exepzai (08-20-2019),Exphos13 (08-22-2019),EXtrematorr (05-22-2020),fahmi00 (02-13-2020),faruk215 (02-15-2021),FeFeTM12 (01-24-2021),Fire099 (08-06-2018),Fizzy_Pizza (07-19-2020),flagiel (02-04-2020),flick01 (08-02-2018),Fortniteisgayaf (08-20-2020),fortymenone (08-18-2019),froumeow (05-09-2020),FurkanBey190734 (01-11-2021),fyurgbf (09-20-2020),gaga84 (05-23-2020),gameon7600 (10-15-2021),GamerTuFani (06-25-2020),Gandolfito2 (02-10-2020),Gazzah (07-26-2019),gazzPT (11-30-2020),gennadij12 (08-04-2018),German_ModZz (11-03-2018),ggg111www (07-08-2020),ggxgangganggang (09-24-2018),ghostiegirl (05-30-2020),giin709 (06-17-2019),Glibamazing (08-02-2018),glyswen (12-21-2020),googboog (11-02-2019),GreatPapaStalin (06-26-2020),greentj8 (10-13-2020),GrimNords (07-18-2020),groupdragon (05-30-2020),gurlhack (10-09-2022),H2T Its Me (10-30-2020),H4rra (01-12-2021),hahaha42134 (12-05-2020),hanief2005 (11-17-2020),hardwolf02 (08-05-2018),haydenxo (08-02-2021),hdarby15 (02-17-2020),HENRYFXP (01-29-2019),Hereforthedownloadsbruh (08-22-2021),HeyItsLucy313 (09-05-2020),hhh12356 (02-06-2022),HliasTos (12-17-2020),hon14326 (01-25-2019),hoodie54740 (09-01-2021),hoonryder (04-08-2019),HuntaXxx (08-19-2019),i.pf (11-01-2020),idan5237 (02-28-2020),IlNoMaDIl (06-08-2020),IMAQTPIE_4422 (06-05-2020),imhome2 (08-02-2018),Intimidxtes (01-15-2021),iploo (08-02-2018),isnitch (02-09-2019),Ithilwen (10-17-2020),itsmitchyt (07-03-2022),JackTwox (10-07-2020),jaison88 (06-08-2019),jamgooandyou (06-29-2020),Jenksters (12-21-2020),Jerkman (10-03-2020),jmuhgyjxsrtfesx (01-21-2022),JocqeR` (12-20-2020),Johnnie Walker1 (08-13-2020),jonnyflame10 (06-22-2020),jony54108 (04-14-2019),jordantanneur (04-16-2020),JuanPorros!!! (10-13-2020),JunkerCZE (08-07-2018),jyam8895 (05-09-2020),kakart123 (04-07-2019),Kalinkamix (12-16-2020),Kamik77 (10-31-2020),Kamikatze101 (12-22-2020),Kamikaze.S.S. (01-03-2021),kappa123kellenfeed (09-26-2020),kayhan1226 (05-14-2020),KengJoJo (10-10-2020),kennhoc1981 (06-11-2020),Kermasuklaa (12-13-2018),khacha (05-31-2020),khai9298 (02-03-2020),khettest22 (10-08-2020),kickmannn (10-03-2020),kids1 (02-04-2020),kinglionneo (10-26-2020),kinjembom123 (06-20-2021),kitty5 (04-29-2020),kojack_skinhead (02-21-2021),konjaids (12-20-2020),kowpatt (04-20-2020),Kryz2 (06-15-2020),ksmolcic7 (10-10-2020),kurum121 (04-02-2020),kuzerkatsuro (07-29-2020),kxbxlxy (09-13-2020),L3WI5DONALD51 (03-01-2021),l4ciaty (12-26-2020),laboy90210 (08-02-2020),lakatoskula (12-12-2018),Lanceola (05-03-2019),lazagna (01-15-2021),lean (10-03-2020),like cmon (10-22-2020),Likko (09-13-2018),Linzix (07-11-2020),lkli (12-14-2018),lmnighstar (05-16-2020),Loaymoataz (01-06-2022),locojoey (05-15-2020),lolol1234512345 (07-20-2020),LRevolution (12-07-2018),lukapistoleros (10-11-2020),Luukavids (11-02-2018),lxnjxl (06-28-2020),MahoganyChair (07-16-2020),makker06 (11-29-2020),mallorie09 (02-20-2019),manussko (03-08-2019),markbi08 (12-18-2020),Martin951753 (08-06-2019),martyn90 (12-29-2019),mast0rhak0r (12-27-2020),Mayhemss (09-27-2023),mbnobino (09-27-2021),mdezozeus23 (10-02-2020),meatmuncher (07-18-2020),menetöihin88 (11-27-2020),michelia (08-09-2018),MicrDan (12-06-2018),Midow12 (06-19-2019),mikazuki_6255 (10-05-2020),miscasse (02-14-2020),mist1001 (07-07-2019),mjk1890 (07-05-2020),mjztyc (03-03-2021),modamer20093 (04-28-2020),mohammadrezafallahkish (04-03-2019),MOI6969 (10-21-2018),monzaza555 (12-06-2020),MothCrotch (02-07-2020),mrbos3701 (12-11-2020),mrcz123 (11-08-2018),MrMODnij (05-22-2020),MrsBibu (08-05-2019),mrswiamfwan2293 (08-07-2019),muceaflucea (08-19-2020),Muzafa917 (03-31-2020),mylove921 (04-23-2020),NafanL (05-12-2020),nandochili (08-14-2018),Napsterae (03-16-2019),Narkulis (12-19-2018),nathanfv (08-10-2019),natt98 (04-22-2020),necrodamuss (05-29-2020),nepgamer (09-17-2020),Nfwaihg (12-03-2020),NikS12345 (12-23-2018),nimuli (12-05-2020),noluvjude (12-01-2020),noobina1337 (02-22-2020),nooksa0008 (12-25-2020),NyeFX (06-20-2019),Ojdajewbaby (10-05-2020),OKCthunder (09-29-2018),PachiMc (05-22-2020),padfa (02-13-2020),panopong1234 (09-20-2020),paolnw1235 (12-06-2020),Pascurrio (11-30-2020),PedoEgg (12-15-2020),pickledcabbage (07-06-2020),piemaster99 (11-25-2020),Pinguchainz (09-20-2018),poop_meister (07-03-2020),poshunman (04-18-2020),PowerMild (02-11-2020),preda1234 (01-17-2020),princedeku (04-08-2019),Pro909 (08-07-2021),prohacker93 (06-04-2020),pryogod (12-05-2020),qcelmarco666 (10-04-2020),qq159753 (03-24-2019),Quattroboy2004 (01-29-2021),racjonalizator (12-16-2020),Rainven (02-09-2021),ramboy666 (06-03-2019),rave_12 (08-25-2019),Razielex (03-23-2019),razorknight1 (04-25-2019),rdsharma (08-12-2020),re4per91 (01-23-2019),Reallydontwannajoin (05-16-2020),ReaperXbdo (04-20-2019),regdas (01-29-2021),registro123 (08-12-2020),rekkaholic (12-08-2020),rellodakid (06-27-2019),Revonixitsme (12-08-2018),Reznov95 (01-12-2021),rhonaldo14 (09-08-2018),rhyno009 (12-02-2020),ricsblade (08-23-2018),ricsimano1 (12-15-2020),ritostinkt (02-01-2021),Roachbugg (06-29-2020),Robero203 (09-25-2020),ROBOZINHOZ (12-21-2018),Rowie15 (03-14-2020),rtyhrtyrtyrty (11-26-2019),Rubbad13 (09-18-2018),S1lence911 (08-03-2018),saayjo (08-18-2019),sahvvv (12-24-2018),Sairiujebd (06-02-2020),Sammyy (01-01-2023),sannum (09-08-2020),saohadau12 (02-09-2021),ScaRxVeNiiM (12-21-2020),sdowning (10-01-2018),SeigeTroll (12-21-2019),senar (08-24-2019),sestsstrs (12-30-2020),setsuna0624 (12-09-2020),shafen (05-24-2019),shamutzdota5 (01-15-2021),shanny1 (05-06-2020),Sharkita (09-04-2018),shaunDiii (07-12-2020),ShawnNatic (12-19-2020),shyn3z (12-22-2020),sidspacewalker (06-07-2020),sim4343 (08-22-2019),skeletronj (12-17-2020),Skito (08-02-2018),Skylinestar (07-31-2020),skyzz452 (07-21-2020),smeghead22 (08-25-2019),smolmochi99 (05-19-2020),Snaps66 (07-25-2019),soggyfearless (08-13-2020),somebodi (04-16-2020),Soy_Kasper (05-24-2021),specie99 (12-09-2020),speedinstinct (12-11-2021),Spy9291 (12-05-2020),stetixx (08-24-2019),stoshua88 (02-15-2020),superfluousg (10-26-2018),SuperSaiyanChan (08-19-2019),SwagMaster42200 (05-21-2019),symbolsogg (10-20-2021),szczypi0r (01-09-2020),Test on3 (11-14-2018),thadaarchi (04-22-2021),the X (07-25-2019),The1German (08-13-2019),TheBlackHouse2 (08-11-2020),thegluesbrother1921 (03-29-2020),Thelegendsy12 (01-04-2020),theluckas46 (08-11-2023),TheRealXeXCaillet (03-02-2021),theukrobo98 (12-07-2020),thickwhanger (12-15-2020),ThisUsernameAlreadyTaken (04-29-2021),TJRecs (07-05-2020),tjtheboss (01-30-2020),TLNMD (03-22-2020),Tonio780 (07-02-2021),TOTI3 (06-03-2020),TouchMeSensei (07-22-2021),trashedout (10-29-2018),ttank1117 (12-28-2018),TurokHUN (11-01-2018),turtlezubs (08-02-2018),TvepZZ (09-02-2018),Twooze (12-26-2018),Tyamati (01-28-2021),Tyler21_21 (01-11-2021),uaruqhui (07-26-2020),UncleBilly420 (05-22-2020),Unknown1441 (04-15-2019),unknownlove (06-21-2019),Unvarying (12-24-2018),unwrittengames (08-05-2019),Uprise123 (04-12-2019),uyfuyfuf32143 (06-14-2020),V1NYL_123 (04-15-2019),varanjith (01-21-2022),victorsalazar (08-11-2020),virussCZE (08-09-2018),Vladislav01 (11-16-2020),vodailam (01-30-2019),VulcanFire1964 (03-03-2021),warlic390 (07-24-2020),WielkiKuti21 (05-15-2019),wilson9269 (12-14-2020),windflame77 (02-09-2020),Wrahul666 (08-17-2020),Wraithhe (07-12-2020),x5555x (02-01-2020),xamiramanx (01-14-2020),xAmSupremacy (11-17-2021),xANVA (05-10-2020),Xentrix (03-01-2021),xj168750 (02-13-2020),xlbinsane (01-25-2020),xNeve (08-18-2018),xpsychotimesx (11-10-2020),xX_420Haxor024_Xx (04-15-2019),YaaYeeInLove (12-27-2020),YoBeYuhGang (12-11-2018),yohigh (12-23-2018),youareugly111 (06-08-2020),yuzzree (09-26-2020),zDevilHacker (11-17-2023),zeaxcross (02-17-2020),Zenlikemike (06-01-2020),Zenser (08-10-2018),zfokx12 (10-10-2020),zidvicious (09-02-2018),zoey1001 (06-11-2020),Zumoto (06-19-2020),ZzSapoManzZ (05-12-2019)

  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)

Similar Threads

  1. just got a new comp... any injectores that work for windows 7 home??
    By grindking69 in forum Combat Arms Discussions
    Replies: 8
    Last Post: 11-16-2010, 05:01 AM
  2. Need an injector that match on windows 7 :)
    By elcid556 in forum Soldier Front General
    Replies: 4
    Last Post: 08-05-2010, 07:57 PM
  3. Windows 7 Injector
    By omghacker in forum WarRock - International Hacks
    Replies: 27
    Last Post: 07-28-2010, 07:54 AM
  4. [Help] Looking for windows 7 injector
    By poepchineesss in forum WarRock Discussions
    Replies: 3
    Last Post: 05-14-2010, 12:52 PM
  5. [Release] Vista 64/Windows 7 Injector
    By pretli in forum WarRock - International Hacks
    Replies: 4
    Last Post: 10-02-2009, 03:00 PM