Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Tut]How to add Quiet Inject into your injector

[Tut]How to add Quiet Inject into your injector

Posts 1–4 of 4 · Page 1 of 1
Samueldo
Samueldo
[Tut]How to add Quiet Inject into your injector
This is a small but useful tutorial for a good feature.

First, let's ask, what IS Quiet Inject?
It's a feature that Topblast and I have on our injectors. After injection, it kicks in and keeps checking if the process has closed. If it has, then it will set the program up for injection again. Although it's easy to code it's extremely useful.

You will need already in your injector:
A textbox where the process name goes (in the code I called mine "ProcessBox")
A timer which checks for injection (I called mine "Timer")
A 2nd timer that handles the Quiet Inject (I called mine "QI")

How to add it in
Okay, now once your inject code has finished, put this code in:

Code:
QI.Start()
For the timer code use this:

Code:
    Private Sub QI_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles QI.Tick
        Dim TargetProcess As Process() = Process.GetProcessesByName(ProcessBox.Text)
        If TargetProcess.Length = 0 Then
            Timer.Start()
            QI.Stop()
        End If
    End Sub
It's simple and effective.

Credits:
Topblast - original feature
Samueldozwat - recreating code, writing tutorial
#1 · 16y ago
M_
m_τ_h
thanks for sharing i guess
#2 · 16y ago
QD
qddW$#%^jtyjtyj
This is extremely good

thx for this source
#3 · 16y ago
WT
wtfiwantthatname
Thats more persistent injection. But good job anyway.
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Request: How to add a song to your Injector in VBBy ryski123 in Programming Tutorial Requests
    1Last post 15y ago
  • [Tut]How To Add Your Name In PerX Injector For Make Your Private InjectorBy Gyurin in CrossFire Spammers, Injectors and Multi Tools
    14Last post 15y ago
  • how to add the flash on your profileBy dk173 in General
    4Last post 17y ago
  • {TUT} How to use System Restore on your Computer! W/ Vid!By aswhooper in General
    5Last post 17y ago
  • [TUT] How to add Oriental/Korean FontsBy W$t$5TA34TYTHSETH5Y5 in WarRock Korea Hacks
    2Last post 19y ago

Tags for this Thread

None