Results 1 to 7 of 7
  1. #1
    trafikas's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    gm_flatgrass
    Posts
    159
    Reputation
    10
    Thanks
    2,312
    My Mood
    Yeehaw

    Xenos Injector 2.3.0

    Couldn't find this anywhere on forum, so here it is.

    It has redesigned GUI and some more features;
    Code:
    - 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.



    Readme:
    Code:
    Some option explanations:
    
    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
        
        Escalate handle access:
            Bypass handle acess filters. Driver is required
            
     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> - immediately  execute profile specified by <profile_path> without GUI
    		
    Kernel injection methods require system running in Test mode.
    Changelog:
    Code:
    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
    - 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
    
    V1.2.1
    - ManuapMap: 'Hide mapped memory region' flag
    - Manual map of system drivers
    - Self-protection option (Tools -> Protect self)
    - Improved injection into suspended process
    - 'Close after injection' flag
    
    V1.2.0
    - Kernel injection methods
    - Various bug fixes
    
    V1.1.2
    - Save/load last programm configuration
    - Added command line for process launcher
    - ManualMap: Discardable sections aren't mapped now (e.g. ".reloc")
    
    V1.1.0
    - Added module view
    - Module unloading
    
    V1.0.1:
    - Fixed bug with remote memory deallocation after manual mapping
    - Exception handler aren't created now if process has DEP turned off.
    Common problems:

    1. Access denied
    Code:
    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.

    Obviously not mine. Just posting here the latest version.
    Attached Thumbnails Attached Thumbnails
    xenos.jpg  

    <b>Downloadable Files</b> Downloadable Files
    Last edited by trafikas; 08-13-2017 at 03:09 AM.

  2. The Following 833 Users Say Thank You to trafikas For This Useful Post:

    0thathavay (01-12-2018),123Extreme123 (01-04-2018),123Jan123 (12-26-2018),1337"Gaming (07-13-2022),145781 (12-12-2020),177556565 (10-01-2017),1996jesse1996 (10-29-2017),1SynC (05-04-2019),2more (01-20-2018),4twgrrgeragaergregrg (03-08-2019),544671469 (08-15-2017),666666cold666666 (06-11-2023),7081 (12-24-2017),@Pastel@ (06-18-2019),a100daniel (10-01-2017),a101980111 (08-10-2018),A7eks (09-05-2018),aaa123001 (01-04-2018),Aarett (06-10-2018),abbas5544366 (01-30-2020),Abilio Berti (11-10-2017),Actiontorn (08-27-2017),Adhardy (08-19-2017),adhardyy (01-22-2018),adikoyzgaming (10-23-2017),af22rfz (08-05-2019),afear183 (11-16-2017),affenaff (02-08-2018),ahmad ameen (02-19-2019),ahzy (05-04-2019),AILUATSPEIS (08-23-2018),ajden12 (11-08-2018),akame6911 (08-07-2019),Akio_TaLaLa (08-14-2017),aknownlegend (02-13-2019),aldospan (06-29-2018),aleknba23 (12-13-2020),alexander.k55@hotmail.de (08-13-2017),alexfc23 (09-07-2017),Alexfed (02-14-2018),alexnec (01-02-2018),AlienCh (01-01-2019),ali_ak (05-20-2018),ALKASH_PETROV (07-28-2018),alveano (12-09-2017),anjuai (01-09-2018),answerme1231 (10-05-2018),apphero (11-04-2017),AqtNeko (01-15-2018),aquacat (03-08-2019),arnelo15 (08-31-2017),arruxadas (03-14-2019),arshiaaa (04-01-2019),artemas1337 (08-13-2017),arto962 (12-12-2017),asaad roomie (05-10-2018),asdfasdfasdfasdfasdfddd (12-24-2018),Asdfgghjgasdasdasds (05-01-2019),asim12 (05-13-2019),ass all day (08-15-2017),Assnfiks (01-04-2018),AstoreN (09-28-2018),astriel10 (12-24-2017),asusbrian (08-15-2017),Ati1338 (12-18-2018),atikahzuki (04-04-2019),aujv (09-25-2017),AureumMagnus (07-29-2019),AUTISTICHYDRA (08-15-2018),Averlome (10-02-2017),Axel (09-28-2017),Ayan12 (04-18-2023),AyLyrics (01-13-2018),ayoubpitza (04-04-2019),Azizlesang (10-05-2018),AzroGamers (03-01-2019),baddiebih (07-25-2019),BANDICAM (09-14-2017),banphotza (01-20-2018),Bapeware (07-27-2018),barnet654 (10-08-2018),BBMC_Rocky (08-25-2019),bbozzalla4 (12-04-2017),bceezy (07-25-2018),BenLuke04 (01-19-2018),bepositive87 (10-29-2017),BestOfGaming (01-10-2018),BestWaifuSagiri (01-18-2018),big penis man (08-22-2017),bigboyybobby (07-29-2018),bihile (01-20-2018),BillyHerr (08-13-2021),binkss (07-30-2019),BitOfBoth (09-02-2017),blabla03 (01-18-2018),Black ops 2 Ass (04-18-2019),blackblinders (04-19-2018),blazed90 (09-21-2018),BLOOD_YT (04-16-2019),blues081 (12-16-2018),bobsisde (02-24-2019),bonezsz (06-18-2018),booliemassive (02-20-2019),bostonzone (02-25-2018),Brattlof (07-18-2018),Briannm (10-16-2017),brodielytle (06-23-2018),Brubinho (05-28-2019),BRUCE-KANG (01-03-2018),Bruno420Kingishh (06-27-2019),bryxempistan (02-27-2018),bubevotum (07-11-2018),Buggs21 (05-07-2018),Bugon (01-22-2018),burglary (04-04-2019),Buzcis (09-16-2018),CactusEverdeen (01-01-2018),Calanox (04-30-2019),Castabae (06-12-2019),catzd7 (12-11-2017),cbhyun60 (08-13-2017),CCrow (09-08-2017),CeeJayDub (03-09-2018),Celexix (06-22-2018),cetofb2 (04-04-2018),cghbinbo (09-20-2018),charflax (04-20-2018),cheatpleasedont (04-16-2018),cheesekiller467 (11-01-2018),chewtoons (01-21-2018),CHUANREI (07-28-2018),ciagnerure (09-11-2022),cici4212 (01-25-2018),CikimeLog (09-12-2017),CjTwist (12-20-2021),CloudyTheFox (01-19-2019),cocacola22 (09-28-2017),Codaaaaaaa (02-22-2018),ColZey (05-30-2018),conker1200 (11-08-2017),conlonbeo (08-28-2017),CONNERY ZAYAS (10-03-2018),conpon (01-02-2018),coolerviat (10-25-2017),coolevan2 (02-03-2019),coontoonz (10-08-2017),Cptcronic (04-04-2019),Creatorvenom66578 (07-08-2022),CrimsonBlade2 (12-27-2018),cringecringe (10-29-2020),crises1228 (04-22-2018),crooklynkat (04-14-2018),cskazuya (02-06-2018),Cuddlessss (03-31-2018),cuonggenesis (08-14-2017),Curse88 (09-29-2017),Cusinhoapertado (07-17-2018),czyzykk (01-05-2018),C_CODER (09-13-2017),Da superman (10-13-2017),daddystorms (03-22-2018),daeninnes774688364 (09-21-2017),damitchfam (03-23-2019),daniel8853 (01-06-2018),DaniloAC1 (07-24-2019),DankCraftium (09-26-2018),dariass (07-01-2019),darkmick318 (01-18-2019),darkside1987 (10-30-2017),darq1337 (05-21-2019),Daviemoney (06-30-2019),dawaj (02-22-2019),dawdawdaw1111 (04-25-2019),Daxman77 (08-03-2018),dcphillips2017 (02-02-2018),DDAASSLM (10-12-2020),dedee123 (10-01-2017),deegan123 (01-20-2018),dekgreanhax (12-22-2018),denalion (01-01-2018),DeregTodos (01-14-2019),DESTINYTANI (08-17-2019),devonmendo (12-19-2017),diabox1000 (10-19-2018),diamondxyz (03-09-2018),dickwad420666 (02-20-2018),Didine-Solo (10-14-2018),Digitouille (01-03-2018),dima121 (08-13-2017),diniscorreia (11-07-2017),diter3332 (12-25-2017),dj clean (07-12-2019),djadert (05-30-2018),djdf (08-21-2017),doens (10-08-2017),Doge30 (01-04-2019),dokopdokop (06-07-2018),domaruz (07-26-2018),DomiAndTete (12-26-2018),donalddessureau (12-24-2017),Doodllle (05-16-2018),dope007 (08-13-2018),doubtkiller (08-20-2017),DragonbornSK (05-09-2019),Dragonlogesh1 (07-29-2019),dragonul2016 (11-04-2017),draxible (09-10-2017),dredrizzy77 (05-11-2018),dredyk (10-04-2018),DrEpic11 (05-02-2019),drugmoder (12-12-2020),dtx.dark.yamato (02-23-2019),dustyanemone (08-13-2017),dyleau (08-13-2017),Eagleco (05-15-2019),edo1232355 (08-16-2017),edosokawarii (01-21-2018),edwardpain77 (09-26-2017),eirichm8 (01-21-2018),eleetpk (12-01-2019),Elias1666 (02-27-2019),Elias2702 (11-28-2018),eliteic (07-15-2018),ElmirAbaszade (11-10-2017),ElPrimos (04-24-2022),eltribilin (01-30-2018),emeraldleo1982 (11-17-2017),emilphq (05-19-2018),Endijss1 (08-18-2017),Erikas12327 (07-26-2019),eurospec54 (09-08-2017),exe4353 (02-03-2020),Eyntcc (12-27-2018),ezhaxx (06-05-2019),迪玉江军 (05-04-2022),FadeTheSpade (03-28-2018),faiifaii2255 (05-12-2018),Famosogod (05-12-2019),fartty4200 (09-14-2018),FasterHd1 (01-20-2018),FattyTitz (01-02-2018),felbane1337 (12-08-2021),fexey (08-17-2019),fi0rajj (08-20-2017),fjoeqe (08-24-2017),flickthatshit (12-04-2017),flodhezt (08-26-2018),FloodShit (07-21-2019),floyd44j (10-06-2017),FluffeR132 (08-13-2017),FNZombie (06-21-2019),fofose (04-19-2021),Fonta (08-16-2017),Forfieter (10-05-2017),fortnitedeo (07-14-2019),fr0sti7 (12-15-2018),FreshSalmon (04-01-2019),Frosherowski (03-27-2018),Frostbittenandblue (08-18-2018),fry23 (02-01-2018),Fumzou (12-07-2018),funderera (03-14-2018),funyg (12-08-2018),Fuzepeach (12-26-2020),gabrieleugenio1 (12-19-2019),gaerGAERHGaerherh (01-12-2018),gaggag2 (01-11-2019),Gaming_on_Fire (10-09-2017),gamming (07-11-2018),gcrown1994 (07-10-2018),ggxm (11-03-2018),ghostemane84 (03-22-2018),ghostmobiuse (10-15-2020),gidaromarcelo (08-13-2017),Gigabytek (03-14-2020),gimmeda (12-12-2017),Giovanny59620 (10-19-2017),gkuved (11-29-2017),Glueweebs (06-21-2019),gnawd1998 (09-02-2017),GnomisCZ (12-28-2017),Goddard12 (01-03-2021),GODHIMSELF69LOL (09-16-2018),Gomme_S (08-24-2017),goon81 (12-13-2017),gots (07-30-2018),Gradogrado (10-05-2022),GraouG (05-22-2018),GreaseCup (02-27-2019),GreatJavi (03-05-2018),Greggregerson (03-04-2019),gregory2003 (03-08-2019),grzeniol124 (01-22-2018),gstanton (08-14-2017),GStarFreak (10-05-2017),gtamodder777 (12-04-2018),guardian90 (11-30-2017),gusem (12-01-2017),gustavomgb (11-03-2018),gzkuwait (07-30-2018),H4NNy1337 (07-13-2019),Hacker2095 (11-02-2018),hacker827 (08-14-2017),hackerr007 (02-25-2018),hackie12345 (10-04-2018),haiderschnider (09-15-2018),hails8tn5 (01-05-2019),Hames07050812 (10-18-2018),HamzaNV (06-05-2019),HannesV3 (12-09-2017),Hansii256 (03-24-2018),HappyAsFxck (07-22-2019),HAPPY_KEVIN (05-12-2018),hardlord (11-29-2017),harem_king (04-19-2018),Henry714 (08-26-2019),hey431 (09-05-2017),HeyoDamo (12-02-2018),hfhshsd (02-09-2019),Hitlerlover69 (08-22-2017),hjalleballe (12-04-2018),Hoang213213213 (05-01-2019),Hoba511 (12-29-2017),hoblinkubas (08-14-2017),hogesza (04-22-2019),horneh (01-03-2018),hpbn11 (10-20-2017),hqjoker (07-30-2018),HugoDZ (05-05-2019),hurrican88 (10-08-2017),HUSH23 (01-20-2018),Huxiano (06-02-2018),huyisuo1100 (08-14-2017),hypestud (06-08-2019),iameryfamus (04-13-2019),iamnightfox (10-06-2017),idkdue (12-15-2017),Iggy (09-11-2017),ik951m (01-08-2018),iknowitsfake26 (03-20-2018),iKraKeN_ (01-14-2018),iLLuZioN_ (01-15-2018),íloveshit (04-22-2019),Imyastii (03-17-2019),Imyourmom (01-21-2019),indobelandajr (02-01-2018),Infernus_ (03-09-2018),IntelMervyn (02-16-2019),intervene (02-07-2019),Iq player (11-16-2017),iranameer (10-05-2017),IronicTronic (04-13-2019),isaacgonza (08-25-2017),islemgames (01-01-2018),itscallum19 (12-16-2018),itspetey (06-28-2018),ItsVizi0nZ (07-28-2018),Itz_Gui (01-14-2018),izsakzsolt (05-26-2018),J4CK7 (08-13-2017),jach123 (06-28-2018),jakemorris (01-27-2018),Jallives (10-29-2017),Jam3sPlays (01-20-2018),jame892541 (01-21-2018),jamesta1990 (12-23-2017),japzspace (04-20-2018),JasonMaruuuz (01-04-2018),jasser00123 (09-24-2017),Javanini (02-01-2019),jayfasd (04-10-2018),jbh911 (04-21-2018),JDRyder (10-14-2017),jedddy (04-27-2018),jerosz15 (05-11-2018),Jerry4201 (01-26-2019),jhonmark1996 (11-12-2017),jiale2 (10-28-2017),jieren012 (01-19-2018),jimy1400 (12-14-2018),JirenHackz (02-28-2019),jkenneth15 (02-11-2018),jkingz21 (03-29-2018),jlaiii (03-02-2018),joaosousa (01-04-2019),Joe! (02-23-2021),Joekid13 (04-01-2018),johannes125 (01-20-2018),JOHNCENAtdtd (06-18-2018),johnmabo67 (12-27-2018),johnnyhwarang (02-21-2018),Johnnysmith8872 (03-11-2019),jomt2004 (08-18-2017),jorsmash (08-07-2019),jpoij08u09 (10-11-2017),jreign102 (02-07-2018),jrkoike (09-22-2018),Ju-Hamsik (08-14-2017),JuanDab (10-19-2017),JVBroskii (06-26-2019),JyFrnndz (06-04-2019),k3e88 (06-08-2019),kadzuta1337 (11-15-2019),Kagawua (11-10-2017),kaigay1234 (12-28-2020),kallu2 (12-18-2018),karateman789 (08-23-2017),karimk0 (05-10-2019),karlos009 (03-11-2019),Kato23 (11-14-2018),keke123321 (08-04-2019),Kenkid (06-02-2018),keybode134 (01-19-2021),kianyoungz2 (12-03-2017),Kid Vex (08-06-2019),kid0004 (05-12-2019),Kileqczek (05-01-2018),Killkam420 (10-08-2017),kimo3211 (06-07-2019),kingful (03-11-2018),KIOSHIKEN (11-11-2019),kipikee012 (03-19-2019),kipra008 (04-21-2019),Knightaur (04-13-2018),koshinator (05-31-2018),KoTvNosce (03-17-2019),krab_z (02-24-2019),kram4321 (09-29-2017),KrasserBro (01-16-2018),Kraynan (04-02-2018),Krimboz123 (12-15-2017),krisieegames (05-07-2019),kristiansirju (08-18-2019),kuhrmys (01-01-2018),kuken3000 (11-04-2017),kurisutofa88 (01-13-2019),kutom2 (01-20-2018),kylecopp90 (07-03-2019),kyuy (06-12-2019),laguerre101 (11-04-2018),laowai66 (03-22-2019),Lauri (08-15-2017),Lawin321 (07-26-2018),Lean13373 (09-04-2017),LegendarPunisher (01-30-2019),Leiname (01-21-2018),LemonJelly (02-25-2018),levanthang (09-07-2017),lewhook (01-04-2018),Lihpse (07-23-2019),Likmeasso (01-04-2019),lim97 (07-26-2019),liskarichi (08-20-2019),litechaoju (09-02-2017),lodyhd (07-13-2019),lol232232 (07-02-2018),lolwatchthisxddd (12-18-2017),Lomps (12-05-2018),lonewolfpro01 (03-29-2018),Lord1990 (05-17-2019),loucosgameplay (01-20-2018),LowR1d3r (01-21-2018),lualearner (12-10-2017),lucasb0 (06-03-2018),lucaslowe (03-13-2019),Ludoleroi (09-22-2018),lululamule (11-15-2018),m.crsm (05-21-2019),MaackeP123 (03-07-2021),madfakhri20 (04-24-2018),Madsta1 (03-16-2018),Maiingan15 (01-20-2018),Maikkeli69 (10-01-2017),maiwheater (08-25-2017),MalyG (08-18-2017),manatana (06-24-2019),mancaos (08-23-2017),maniacwasd (08-19-2018),manutzsong (06-30-2018),manu_09 (03-13-2018),maorgabay1231 (01-22-2018),maot (02-06-2018),marciobx1 (09-04-2017),Marcoandmarques (06-02-2018),marcusjakobsson0 (09-16-2018),marinanagasawa (08-17-2018),Masha8595 (05-23-2018),masihlama123 (11-07-2018),Massaclone (12-21-2018),masterkanin (03-20-2020),Mastervirus123 (09-28-2017),matar1nd (07-21-2018),mathias2004 (03-12-2019),mattybfreak123 (10-08-2017),maximking (08-13-2017),mcsugarface1 (10-23-2017),Meastou (05-03-2019),MechCheater1337 (05-10-2018),mehexorn (08-30-2018),mesheen (03-07-2018),MGanuslange (01-07-2019),MickyJS (06-06-2018),Miistahj (02-02-2021),Mika1997 (11-30-2018),mikikikik (01-12-2018),Mimir6692 (08-12-2018),MineGamer69 (09-29-2019),mingi12888 (02-13-2018),mitchwardle1997 (10-08-2017),mitito (03-23-2018),Mitzuru (05-18-2018),Mocha_ (03-16-2018),Mohammed Kamal Alsyd (09-20-2018),MoltenPheonixx (01-21-2020),Monkey Hacker (09-09-2017),MonksLife (09-10-2017),moshiro33 (02-25-2019),MothCrotch (10-03-2017),Mr.Hacker151 (09-19-2018),mranomalyexdee (12-05-2017),MREisensturm1 (05-01-2019),Mrfarts (06-25-2019),mrhyperman1 (11-07-2018),mrkaijik (06-02-2018),mrsanction (12-18-2017),MrShambles (01-09-2018),MrTosco (11-11-2020),mspadam (12-30-2017),mustfamunqith (05-11-2019),Muttok (10-14-2017),MW2Thicc (02-14-2019),mxtthxw (01-17-2019),myriadsilver18 (07-04-2018),mziuhisakura (01-08-2024),Naatuuu (02-17-2019),Naees21 (10-03-2017),naskhy (07-23-2018),naskhy369 (10-17-2017),nazimaly (08-16-2017),nekoblade (09-04-2018),NeroMiro (05-31-2018),nevercheatedb4 (10-02-2017),NezzyO (03-05-2018),nfinite (05-27-2018),nguyentiendatpro3 (01-20-2018),nickypreotu (08-24-2019),Nikolia123 (09-08-2019),noelka0892 (04-14-2019),NotEven (08-23-2017),NotSkidderName1233 (02-03-2018),Nowacer (09-30-2018),nznlolman (08-29-2017),Obamacansa (05-13-2018),oblyat (06-10-2018),odie1299 (12-08-2017),oHansel (09-14-2017),Ohe_00 (01-20-2018),okcd3000 (08-21-2017),Okiichii (11-25-2017),OldYang (08-15-2018),Onciz (07-11-2019),oORoshOo (08-24-2018),OraNaruto (08-15-2017),OrJiNaL (08-17-2017),otakuway2 (04-21-2019),outplayedlull (02-12-2019),OwOBlue (03-15-2022),oxkos (01-20-2019),OynarsanOyna (08-31-2017),OZGUR16 (09-10-2017),pacotinho12331 (07-31-2019),pain160710 (03-12-2020),paladybarosu (06-21-2018),PandaBoyyy (10-07-2017),PapaSmurf3 (11-19-2018),ParaPlex (10-01-2017),parker00005 (07-09-2018),peenth (07-06-2019),Peyote (02-01-2018),Piticko (05-18-2018),plunderpixels (06-23-2018),porcodio123123 (09-19-2017),porjung01 (01-18-2018),PortalB (10-02-2018),potel (06-15-2018),princedeku (09-22-2018),ProGamersRo1 (01-31-2019),Psychix (06-10-2018),ptidemon283 (09-28-2017),Pubghackk (03-05-2018),pulong123 (05-20-2018),puzzzy (12-29-2018),qkis (09-16-2017),Queenbee1 (11-18-2017),QVAX (08-14-2017),qwert5037 (10-03-2017),r00k1111 (09-18-2017),Radianty (02-04-2019),Radulin (05-24-2018),Raij11 (03-11-2018),Rain21 (02-08-2020),Rajcu (04-12-2019),Randnzotwp2153 (02-05-2019),ranmoru456 (01-04-2018),ravenxv56 (08-16-2017),ravikng (02-18-2019),rawaf (07-26-2018),rayanman21 (09-17-2017),realfault (08-17-2019),realnooblock (08-15-2017),redandblacktrees (09-10-2017),RedDead36 (08-21-2017),RedHack6S (08-12-2019),redsmoke11 (08-18-2019),reirack01 (04-20-2018),Remenar32 (08-30-2017),RemerGaming (08-06-2018),reymarkdgreat (11-15-2017),reyventamayo5 (05-14-2018),Reznov95 (11-29-2020),rfjiowqioedfj (01-16-2019),rgt12311 (03-17-2022),RhapsoMBS (09-23-2018),Rheemglas_Fury (09-12-2017),rholdon07 (07-16-2018),Rickkeh (01-07-2018),rjrooteejuan06 (10-04-2017),ROBLOXFORGOD (08-25-2018),RodrigoLopez (03-25-2019),rolf6969 (01-21-2019),rolllamcjhonson (11-01-2017),roncs (11-08-2017),rootingnet (04-21-2018),rszpil123 (02-09-2018),ryanmcgill0601 (09-14-2018),sabu068 (09-29-2017),SadRiper (12-13-2017),Sakimoto (01-19-2018),Sandertimmerman1 (08-25-2017),Sandman503 (01-05-2018),sappleg8 (08-03-2018),sasukejuin45 (04-23-2018),SatuOrang (01-19-2018),schwazzeneger (07-04-2019),sdowning (06-22-2018),sdsaddasdasd (04-07-2020),SeeTraxX (12-18-2017),seneva1 (07-18-2018),Sergio_31782 (12-15-2017),seumadruga123171 (12-08-2017),sgtairmeat (10-26-2017),Shamazing1231 (01-04-2019),SharadGames (12-30-2017),shintasoetanto (02-05-2018),shorrdykiller225 (02-24-2018),Shymbnv1 (03-31-2019),Silent Duck (10-10-2017),SilverSTR (01-20-2018),Sincrostar (06-29-2018),SirApu1k (10-06-2017),SireMarble (08-20-2017),Sivdev (05-08-2018),sjaakftw16 (01-20-2018),Skiez2210 (08-15-2017),SkrtSkrt420 (10-09-2017),skycwdesign (10-08-2017),SkyeHD (10-07-2018),skyline_816 (03-30-2019),skynet112255 (08-20-2017),SkyWidow (06-10-2018),slaefer12 (12-17-2018),sleezyy1 (04-25-2018),slunmak (03-03-2018),SMDC@ (10-08-2017),Smokie79 (06-01-2018),SmokingISPain__ (06-18-2018),Snakko (01-22-2018),SnniperMitic (12-28-2018),SnuffH (07-07-2019),Snuki123 (01-03-2018),SoaringFar (09-28-2017),somebodylol123 (07-12-2018),Sonic9678 (05-23-2018),sonnui123 (07-07-2018),sorin1991 (04-18-2019),Sous123 (01-21-2018),Sousadino (11-24-2018),spaceheadass (07-19-2019),speed_infected (09-27-2020),spicyon (12-17-2018),Spinderman (12-28-2017),spitfire9111 (10-06-2017),Splitzer3 (09-16-2017),spock12344 (07-14-2019),SpyEnnX (01-08-2018),StarsWaffen (02-05-2018),Stodgems (02-13-2018),streetboukak (02-25-2018),styli5h (04-25-2019),suacot0047 (04-22-2019),superbobmac (08-20-2017),Sverdvs (10-06-2017),symbianz107 (12-21-2017),tagsad (12-07-2018),Tajmon (09-12-2017),Takedownx33 (08-28-2018),takeyon69 (04-12-2019),talhakhan29 (01-23-2018),tanginangyan123 (08-13-2017),tangpongpat (12-13-2017),tanpssspssp (10-08-2017),tareq200 (04-05-2019),TaspiMXY (12-06-2019),TaZeSvK1 (09-08-2017),techniciantools (01-09-2018),technofy (09-28-2017),teckstars (02-13-2019),TERMN8R428 (09-28-2017),Terravita (02-27-2018),tf2pro123312 (12-09-2020),the4bidn (03-06-2019),thebn03 (01-06-2018),TheExtremelyBadHacker (02-23-2018),thefall7 (04-23-2018),thekigs (10-24-2017),TheRealRuby (12-19-2018),thescs (11-22-2020),TheSlience121 (03-25-2019),TheUltimateFriend (09-03-2019),Thief1 (12-18-2020),thunderx01 (06-14-2018),tigtig1818 (09-30-2017),titingbadz (08-30-2018),TLNMD (03-23-2020),tngud128 (10-24-2017),toantran001 (04-30-2019),tongzkie (05-25-2018),Toptoptoptop40 (01-19-2019),totipro2 (07-23-2018),trainerv2020 (10-13-2020),Traukan88 (12-18-2018),Triangu1ar (05-28-2019),Truentyena (10-21-2018),Trungdo (01-05-2018),tryisgirl (12-22-2018),trym0123 (02-27-2018),TWIXTORx123 (12-16-2018),Ty Nguyen (05-18-2018),Tylerghdf (08-24-2017),Tynan123 (03-10-2018),tytylee12 (06-17-2019),UbiquitousGaming (08-24-2018),ugnius1239 (01-05-2018),uMoni (05-14-2019),unuhuynh (08-04-2018),Upho (12-29-2018),usernameboy (08-13-2017),uuull (09-28-2017),Vallroid (08-15-2017),valoudu28 (09-28-2017),VecaSIX (04-28-2019),Vejitator (06-02-2018),veryinsanee (06-10-2018),vigara (01-21-2018),Vinal1953 (09-09-2017),vincke (03-12-2018),Viralzy (03-22-2018),vladimir081717 (12-25-2018),Vladimirovich (11-21-2018),VnkGoba (12-23-2018),Voidempire2 (10-23-2017),VojtodronGamer (11-26-2018),vowcho (01-21-2018),vpgame1833 (09-11-2017),wacz (07-25-2019),waduheck (04-03-2019),wagawga156 (04-22-2019),WahyuWienanda (03-23-2019),WarBear33 (05-25-2018),warix12 (03-30-2019),weapon69 (08-13-2017),webh00t (01-22-2018),welssenseii (07-22-2019),wetfighter10123 (09-10-2017),WHATS NAME? (08-08-2019),whitesunny (06-22-2019),willwk12 (06-24-2018),WillWolf (01-07-2018),Wolfers425 (08-14-2017),x5harkx (01-14-2018),x7Kaan (01-21-2018),xbxbau5 (10-07-2017),xdgxdg123 (08-13-2017),xenon112 (12-15-2018),XiaoXiaoXXVI (11-26-2017),xinrix (11-23-2017),xNL (08-13-2017),Xplay3r_01 (06-08-2018),xRatafu (02-16-2018),xTheMilf (08-25-2017),xxpossaxx (03-18-2019),XxPredator191Xx (08-30-2017),XxxLunarFangxxX (01-20-2018),XXXtentacion12344 (03-01-2018),xXZQu5EsTXx (04-23-2019),y0slaap (11-11-2017),yamsyams2 (04-21-2018),yangadone (11-11-2020),yanyifan04 (02-23-2019),yashkh (08-09-2019),Yawzee (06-29-2018),yhuriporra (07-28-2018),yigitaa (09-03-2017),yomommaisthick (06-21-2019),yoyobomb555 (01-20-2018),yrrahjhen12 (02-05-2018),ysknikain (10-26-2017),yuccca (01-21-2019),YungMalvi (01-03-2018),Z43 (09-15-2021),ZachRhylle21 (12-21-2017),Zakryy (12-19-2018),zaydogger (03-25-2019),zbrxdz (06-16-2019),Zeuspreme (04-26-2019),zirayka (01-07-2018),zoldyyyck (09-30-2017),zombf (10-22-2017),Zoran123 (02-08-2019),zspitfire04 (09-28-2017),_Grouchy-Smurf_75 (02-20-2019),_T4NKYOU_ (08-14-2017),``1 (05-10-2019)

  3. #2
    trafikas's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    gm_flatgrass
    Posts
    159
    Reputation
    10
    Thanks
    2,312
    My Mood
    Yeehaw
    Come on, so many thank yous and no replies!

  4. #3
    masterXYZ's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    7
    thanks for this release

  5. #4
    Horus God's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Middle East
    Posts
    84
    Reputation
    10
    Thanks
    4
    My Mood
    Cheerful
    Thanks for this.

  6. #5
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    //Approved, file appears safe, but has not been tested.

    Use at your own risk.

    https://virusscan.jotti.org/en-US/fi...job/x1aymmcqz2
    https://virustotal.com/#/file/d3a54b...9923/detection

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  7. #6
    zspitfire04's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1
    TrojanSpy:MSIL/Omaneat.B detected

  8. #7
    trafikas's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    gm_flatgrass
    Posts
    159
    Reputation
    10
    Thanks
    2,312
    My Mood
    Yeehaw
    Quote Originally Posted by zspitfire04 View Post
    TrojanSpy:MSIL/Omaneat.B detected
    No shit, it's a fucking injector.

  9. The Following User Says Thank You to trafikas For This Useful Post:

    thecrazydude (06-29-2018)

Similar Threads

  1. [Release] Xenos Injector v2.2.0 - to inject into file or game EXE's
    By xray25 in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 138
    Last Post: 03-08-2018, 09:43 AM
  2. [Help] Far Cry 4 & Xenos Injector
    By Vyevchevski in forum Steam Games Hacks & Cheats
    Replies: 8
    Last Post: 11-12-2016, 11:51 PM
  3. [Outdated] Xenos injector v2.1.0
    By epicness700 in forum Alliance of Valiant Arms (AVA) Spammers, Injectors and Multi Tools
    Replies: 47
    Last Post: 12-23-2015, 05:04 AM
  4. [Help Request] Need help with Xenos Injector
    By AusCraft13 in forum DayZ Help & Requests
    Replies: 4
    Last Post: 04-17-2015, 10:40 AM
  5. [Help Request] Need Help With Xenos Injector
    By ArthurZiin in forum DayZ Help & Requests
    Replies: 0
    Last Post: 01-18-2015, 05:36 PM