Results 1 to 8 of 8
  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, simply uploading it as this newer (newest as of the time of posting) version is not on this site.

    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


    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:
    _Mike@OC for his managed dll injection using AsmJit code
    Petr Kobalicek - AsmJit project

    Virusscans:

    https://www.virustotal.com/gui/file/...8106/detection
    https://virusscan.jotti.org/en-US/fi...job/sb777vvpad

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

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

    $pecial (02-29-2020),0616363 (05-23-2020),123456howard (12-15-2020),12345BOOYAH (07-02-2020),1h3r23 (04-03-2020),2343413214341 (10-25-2020),31sas31 (02-13-2020),675655785 (12-19-2020),784215829 (03-11-2021),78pavarotti (02-15-2020),aatus10 (12-15-2020),AceNebula (02-24-2020),ActivBillz (07-16-2020),AlexBoss505746 (12-18-2020),alexx33 (02-15-2021),Alphatreus (09-03-2020),alvindjl33 (02-17-2020),andy132132 (06-04-2020),aosen (08-09-2020),ArKoS_MW2 (05-16-2020),armtaklab (12-08-2020),arnelinho26 (12-18-2020),arturk (05-23-2020),asd0875429577 (12-13-2022),assa121213 (07-09-2020),asura_ (04-13-2020),Atraska (06-15-2021),azertyazertyxxxxxx (03-02-2020),Azurren (05-22-2020),a_sbt (06-04-2020),Babufq (11-01-2020),baiyifei (03-22-2020),BananenJoker (05-21-2020),BanditoJJ (02-28-2020),BattlePumpkin (02-16-2020),bcccc (05-31-2020),Benpepsi (06-28-2020),bepositive87 (02-23-2020),biboto (11-09-2020),bigboibendo (02-14-2020),bigjuggs (02-09-2020),bigsmellywilly2012 (04-30-2020),bimmala (01-10-2023),BlackGuy11 (05-29-2020),bluetheme (06-16-2020),boss334 (05-22-2020),Brad2k (08-03-2020),brandonjw12345 (05-23-2020),breezypanda (02-18-2020),Breshkovac (02-19-2020),brith333 (03-17-2024),brpr (06-25-2020),Bsc1 (09-25-2020),Buddaf1 (06-16-2020),bukcez (10-09-2020),BushyBaws (07-10-2020),buttswole (05-31-2020),cacchamp89 (06-02-2020),CAD6475 (01-01-2021),Caiops (05-21-2020),caLyps034 (02-18-2020),cameronisepic123 (04-28-2020),cangun99 (05-17-2020),capitao2807 (10-21-2020),cbrnt (08-26-2020),cheatproject15 (02-16-2020),classified2870 (06-01-2020),clauboss69 (05-29-2020),clemon456 (02-17-2020),CODfan3221 (04-01-2020),Cpt. Obviuos (07-11-2020),csgo9199 (02-08-2020),Daegur (02-11-2020),DamnBro25 (05-04-2020),dandreiweb (03-03-2020),dandu3 (02-09-2020),DaniMocanu (07-09-2020),darkgamehacker (05-19-2020),DesireHDYT (02-10-2020),dickcheese123 (02-12-2020),disturber101 (05-29-2020),Divenfag (02-09-2020),Dk7rocks (03-06-2020),dlghwns03 (05-20-2020),DocPreands (12-18-2020),doot95 (02-14-2020),dubosclard (04-19-2020),Dudeltron14 (05-18-2020),duzzty3 (05-19-2020),eliel araujo (10-16-2020),EliteFalcon503 (05-28-2020),engendro666 (05-12-2021),Enjeru (02-18-2020),Entertainmenttechnician (04-30-2020),erbosb (02-16-2020),erikjulle (02-18-2020),Erni778 (02-12-2020),erotools (05-19-2020),ertdfgdfgdfg (05-07-2020),exepzai (12-31-2020),FanHeat (05-15-2020),FEEDzz (05-31-2020),filosaurio12 (02-09-2020),finis (03-01-2020),Fire099 (07-15-2020),FirstStart (02-08-2020),Fizzlecube (06-07-2020),Flaradoxx (05-27-2020),Flickeri12 (10-19-2021),FloFarium (08-22-2021),Freddysxz (09-26-2020),Froggy1312 (09-11-2021),frostenx1 (06-07-2020),Fugaming (09-06-2020),FunkMcOwnage (07-26-2020),f_o_u_r (05-25-2020),Gabriel_Alexandre (05-26-2020),GAMIESTEOLOI (02-20-2020),ganjaplant (02-20-2020),geraz (02-22-2020),getrektnerd13579111315 (05-15-2020),ggez123ggez (02-19-2020),Giantblackwhale (05-24-2020),glagol105 (02-12-2020),GmodHunIdiots (05-21-2020),GODHIMSELF69LOL (06-02-2020),Gotchfutchian (05-19-2020),Goty (02-11-2020),grandmaVooDoo (02-15-2021),greygotit (05-08-2020),GTWHT (02-19-2020),hakker199 (09-06-2021),hardstyleftw133 (02-09-2020),HarveyTaylor (02-07-2021),hauda (05-22-2020),hazwan8998 (12-29-2020),HDFisk (05-29-2020),heemang2001 (06-04-2020),hellion228 (07-03-2020),hellriser14 (05-15-2020),hempspato (02-18-2020),HHUMAS (05-24-2020),hiers (06-10-2020),hieruchikara (05-20-2020),higurashifreak (05-10-2020),hitmanfrost69 (05-20-2020),HMfc1809 (11-12-2020),Holytitterino (07-16-2021),idrossiii (02-09-2020),IGNACIOX983 (05-20-2020),ilian159 (06-07-2020),ImKhaps (10-19-2020),inf3rno1407 (05-24-2020),iPSxFEARx3 (10-20-2020),IrishKegWarrior (08-18-2021),itdobecrazy O_O (06-13-2020),itsnembo (02-22-2020),itzbrandonx (05-22-2020),ItZzHolo (02-09-2020),jack0jack0 (02-08-2020),jakeyyboii22 (10-25-2020),jasonwu9110 (09-24-2020),jbkillerdk999 (05-22-2020),Jeremiah917 (05-20-2020),johan141 (11-29-2020),joopaap (07-28-2020),joy2790 (07-28-2020),joz1899 (02-09-2020),Juganda (02-24-2020),juhozi (08-15-2020),Junk4Ja (05-19-2020),Jusefo (07-22-2021),Just_neet (05-20-2020),jwh20040904 (05-23-2020),KappaKater (02-29-2020),kasawari.akmal (09-07-2020),kaszaza1 (03-11-2020),KatrixEdge (06-03-2020),Kayazo (05-21-2020),Kaziux99 (04-18-2020),kdj8493 (02-14-2020),kealsy (03-05-2020),KeeDee (05-24-2020),Kekkerino2005 (08-22-2020),kensimon (08-26-2020),Kickkid123 (05-23-2020),kid.morbid (02-22-2020),kiphype (01-12-2021),kitrock143 (05-16-2020),klloos200 (08-29-2020),klopers3333 (08-15-2020),kokodai02 (05-20-2020),kqwai (01-21-2021),Krizni (06-18-2020),krzysiosu (05-23-2020),kurokutron (05-23-2020),Kuruttax (05-19-2020),kwoij22 (11-14-2020),l2529967234 (05-16-2020),laboy90210 (08-02-2020),Lanameti (01-31-2021),lemi22 (05-21-2020),lenoxwilcox (02-24-2020),leonlu (02-27-2020),Lgallyblind (05-26-2020),lilemcy (05-24-2020),LimitlessCustomz (08-25-2020),Lixir (12-20-2020),loitloit (03-07-2020),LoopDump46 (05-20-2020),LovesHealer (08-03-2020),[MPGH]Luke420 (02-09-2020),lvlovee (05-20-2020),Maastonak (04-18-2020),Madified2 (03-28-2020),Majosan (05-14-2020),malekt (10-09-2020),Malotakoja (11-01-2020),Manux12 (08-10-2020),Mardoro (06-05-2020),marlon_santos (01-07-2021),marlucasquez (05-19-2020),Master1993 (05-06-2020),Mat.H (12-14-2020),matas17 (05-24-2020),MathiasNOR (05-23-2020),maximowitzsch (10-30-2020),mefx.csx (02-08-2020),meuuuuui (12-03-2020),Mifune2993 (02-09-2020),Miistahj (05-16-2020),MindFvcker (02-21-2020),MinuteMarket (05-21-2020),MirekPir (08-21-2022),mishura14_14 (03-21-2020),mistiklala (02-09-2020),mobycoq (07-20-2020),moffi123 (06-06-2020),Mokaa123 (03-20-2020),MomoFicus (02-12-2020),momothedog (06-11-2020),moorhead21 (09-30-2020),mortezaghafooriyazdi (05-21-2020),MrBarbarian (02-22-2020),mrbigdong (05-05-2020),MREKE (08-21-2022),MrGrey1029 (05-25-2020),muhdhaiqal (02-21-2020),My1AccountIsBan (01-18-2021),Mygith (02-09-2020),nastulsen (10-29-2020),Neally650 (12-26-2020),negroide26 (09-16-2020),Nehkro (02-21-2020),nethack (03-08-2020),NikulinX (11-24-2020),noimnotok (06-04-2020),NoNameAvenue (04-04-2020),noob0125 (05-20-2020),nooby_117 (05-15-2020),Nothic (02-20-2020),NrSky (04-27-2020),ntpshin (06-05-2022),oatto001 (05-23-2020),odakddj (09-16-2020),OkayItsMeAmri (07-09-2020),okkrass187 (12-10-2020),omaaia (07-24-2020),ophinast (10-05-2020),Overload091 (02-25-2020),p1mose1337 (04-25-2020),P344yKY27 (08-29-2020),PachiXD (02-21-2020),palmmoso (03-18-2020),PanJa27 (05-11-2020),PapaJonny1337 (05-22-2020),papo11161 (02-17-2020),ParatecHacks123 (03-03-2020),paxias (01-22-2021),Pc0 (02-13-2020),pechevarria (02-25-2020),pedekas01 (03-18-2020),PerrinAybara (11-07-2020),Pichubro101 (09-11-2020),PlayerDa1 (05-20-2020),pnsvail (08-22-2020),pooleman (08-11-2020),popeyes2 (09-06-2020),PoppyOnTH (06-21-2020),PsychoChester (09-19-2020),qq1664314032 (02-13-2020),qwerty4666 (10-14-2021),qwewqe23234 (02-13-2020),R3bornBean (2 Weeks Ago),R3D01 (02-20-2020),raileh01 (08-04-2020),Raimis2003 (08-01-2020),realkush (02-09-2020),ReaperzWins (10-31-2021),RebelSniper50 (08-24-2020),Reedam88 (03-18-2020),Reznov95 (01-12-2021),RezzorTV (04-30-2020),Rhylan (02-17-2020),Rigbytes (11-26-2020),rillsmiller (03-02-2020),rngnubz (05-27-2020),RobertosPavlu (06-01-2020),rony1290 (09-10-2020),rossks (07-21-2020),RuDunn (02-13-2020),RyanAlexandR (02-07-2020),ryannguyen122 (11-30-2020),ryu1030 (02-11-2020),s016 (08-18-2020),sabogutak (08-06-2020),sachout (05-25-2020),sagecon123 (08-11-2020),sajtosjump (11-07-2021),sashaivanov777321 (07-21-2020),saudsadiq (10-18-2020),scise (05-20-2020),Seathre (09-22-2021),sebi05316 (05-17-2020),semihp (06-03-2020),serphilith (03-08-2021),seth0910 (08-21-2020),shadab129 (05-09-2020),shadowindss (05-28-2020),shang_tiao (07-25-2020),shass (08-27-2020),sheendi (05-21-2020),ShizuActual (07-01-2020),sidormarianandrei (02-18-2020),silentsnake101 (09-27-2020),simsicklemen (05-10-2020),Sirhalls2121 (02-17-2020),SiTy (02-15-2020),skywalker_og (02-07-2020),sleazy01 (06-02-2020),smoerobbe (05-25-2020),Smokinn (10-20-2020),Smxcked75137513 (10-22-2020),snake323co (10-31-2021),sngwoo1234 (01-26-2021),snufflesrotmg (06-17-2020),soggyNoodle (05-29-2020),Solopwnage (05-02-2020),soparabaixarumhack (05-20-2020),Spacemoon414 (02-18-2020),spritechanchan (07-08-2020),Sqdness (02-15-2020),Sqratattack (10-29-2020),SrOfDeathy (05-26-2020),SuicidalCupcake (03-05-2020),sumtingiswong (06-15-2020),supermonkey3333 (06-19-2020),sverigeass123 (08-27-2020),SwiiftLions (07-03-2020),sysw00t1 (05-26-2020),t0peddlr (08-20-2020),taank1117 (05-20-2020),tabzulous (06-01-2020),Talha55 (08-03-2021),taskaz (02-17-2020),tazzyboi112 (02-28-2020),TechHeadGizmo (02-18-2020),tectoden (06-01-2020),Teruyamada (11-28-2020),theindianz (05-28-2020),TheManonyme (05-30-2020),ThePoglyNoob (08-03-2020),ThePotatoSpaceman (05-23-2020),TheRhanderson (04-19-2020),TheSwisher (09-15-2020),thesylmz (05-22-2020),tigercao (05-21-2020),Tigor123 (05-21-2020),tjxc (02-09-2020),TMGG (05-17-2020),Toggie (07-30-2020),TomAnderson (01-11-2021),Tommy_D (06-26-2020),TomVR (05-22-2020),Tongtzu (07-07-2020),TOTI4 (05-27-2020),Totobi99 (05-27-2021),Tragiiks (08-05-2020),traktora (02-17-2020),trapwave (03-02-2020),trikipash (05-16-2020),trinityoof (02-22-2020),turbo5123 (10-21-2020),TwiisteDz (02-21-2020),Tygastripe (02-11-2020),tylerbc10 (05-21-2020),T_Raptor (02-25-2020),Unused_Joker (05-14-2020),vickebannan (06-24-2020),vigara (02-19-2020),villanellebby (08-19-2020),ViralPlays (05-25-2020),vladimirk (02-23-2020),Vosklo (02-13-2020),VPCRAT (03-28-2020),VR775 (05-20-2020),VzRL (05-20-2020),wafflesmug (06-21-2020),Walax3 (02-17-2020),wantedmcd12 (03-01-2020),wasdmike (10-05-2020),wdnmd (03-08-2020),WeedWizards (02-23-2020),werat (06-28-2020),WohoBoho (05-21-2020),woodhood (05-22-2020),wz36125 (05-31-2020),XA0C (02-08-2020),XalecsX (10-22-2020),XcookieguyX (02-15-2020),xdjaayy (05-25-2020),xitaqil (06-02-2020),xjjy20384375 (05-25-2020),xphhfnn (05-10-2020),xRain44 (04-01-2020),xsdys (02-18-2020),xslayer68 (11-26-2020),xXacIDXscoPESXx (11-10-2020),xxcreepyguyxx (06-07-2020),XxFR4NxX (08-11-2020),xXPeptoBismolXx (02-24-2020),xxquickscoper69 (10-29-2020),yaayeetg01 (06-29-2023),yasuo111 (10-02-2020),yfreeze (05-19-2020),YoTTy_12 (06-19-2020),yoyoboy123 (05-24-2020),yudada (07-06-2021),yuzzree (10-09-2020),zDesativado (06-02-2020),zebmods (05-05-2020),zeeh4x (05-22-2020),zeldak123 (10-22-2020),zernrr (08-05-2020),zGDogma (09-24-2020),ziceriste (05-23-2020),zieatz1 (04-22-2020),Zipliks (05-19-2020)

  3. #2
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    //Approved

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  4. #3
    Insomniac's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Seattle, WA
    Posts
    9,769
    Reputation
    1463
    Thanks
    4,294,967,295
    Just saying virus was detected with Windows 10, could be a false positive but use with caution.

  5. The Following User Says Thank You to Insomniac For This Useful Post:

    zebmods (05-05-2020)

  6. #4
    Gotchfutchian's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Insomniac View Post
    Just saying virus was detected with Windows 10, could be a false positive but use with caution.
    False Positive, this happens with every injector, because of how injectors work, alot of AV's will go off. It should be clean.

  7. #5
    rodrigoql's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    wd2

    I dont have were use this xd

  8. #6
    zorranco's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hi folks, can someone point me where can I find a tutorial to compile lua scripts like maestro or dopamine, into a DLL file?

    I know there's no injector right now (well yes, redengine etc, but paid)...I just want to learn.

    Thanks.

  9. #7
    HHUMAS's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Islamabad
    Posts
    22
    Reputation
    10
    Thanks
    3
    is it working ? detected or not ?

  10. #8
    alexpetrut93's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Where i get that .dll ?

Similar Threads

  1. [Release] Xenos Injector 2.3.2 - Windows PE Injector
    By InUrFace1337 in forum Grand Theft Auto 5 (GTA V) Hacks & Cheats
    Replies: 45
    Last Post: 03-24-2020, 06:24 AM
  2. [Release] Xenos Injector 2.3.2 - Windows PE Injector
    By InUrFace1337 in forum Call of Duty 10 - Ghosts Hacks & Cheats
    Replies: 1
    Last Post: 08-02-2018, 08:58 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