Vult is a service that works in the background for your safety and optimizes your workflow.
- AntiVirus Scanning.
- Temporary File Cleaning
- Observing
- Blacklist Download Folder Scanning
- Regular Scanning
- Blocking Cheat Software
- Memory Execution
- Shell Code Execution
- Windows 10 or Later
- .NET 3.5 or Newer
- Visual Studio 2022 or Newer
For C# you can use vltguard.dll to implement VultGuard to your application
C#
usingvltguard;namespaceYourApplication{classProgram{// our hypertheoretical "REAL" ApplicationstaticvoidRealApplication(){Console.WriteLine("Hello World!");}staticvoidMain(string[]args){VultGuardvg=newVultGuard();// https://emn178.github.io/online-tools/md5_checksum.html To get Vult's hash.stringvultHash="601adb42ea61350b6f951894430a7966";vg.SetVultHash(vultHash);// if it returns true the application can start since vult is running.if(vg.CheckForVult())RealApplication();elsereturn;}}}C++
constwchar_t* processName = L"specific_program_name.exe";
// Check if Vult is runningif (GetProcessesByName(processName) > 0)
// Run your program hereelse// Display an error message & exit the program