Code Monkey home page Code Monkey logo

vult's Introduction

Vult

Vult is a service that works in the background for your safety and optimizes your workflow.

Features

  • AntiVirus Scanning.
  • Temporary File Cleaning
  • Observing
  • Blacklist Download Folder Scanning
  • Regular Scanning
  • Blocking Cheat Software

What's unprotected

  • Memory Execution
  • Shell Code Execution

Requirements

  • Windows 10 or Later
  • .NET 3.5 or Newer
  • Visual Studio 2022 or Newer

Protect your software with Vult:

For C# you can use vltguard.dll to implement VultGuard to your application
C#

using vltguard;

namespace YourApplication
{
    class Program
    {
        // our hypertheoretical "REAL" Application
        static void RealApplication(){
            Console.WriteLine("Hello World!");
        }

        static void Main(string[] args)
        {
            VultGuard vg = new VultGuard();

            // https://emn178.github.io/online-tools/md5_checksum.html To get Vult's hash.
            string vultHash = "601adb42ea61350b6f951894430a7966";
            vg.SetVultHash(vultHash);

            // if it returns true the application can start since vult is running.
            if(vg.CheckForVult())
                RealApplication();
            else
                return;
        }
    }
}

C++

    const wchar_t* processName = L"specific_program_name.exe";

    // Check if Vult is running
    if (GetProcessesByName(processName) > 0)
        // Run your program here
    else
        // Display an error message & exit the program

vult's People

Contributors

copy05 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.