Application Security

There is 4 security features added on v3.5 dll class. First use new dll and use following function:

public Form1()
        {
            InitializeComponent();
            //Checking Antidebug, You can use anywhere except program.cs Turn it on from panel otherwise it will not work
            Api.Antidebug();
            //Checking VM, You can use anywhere except program.cs Turn it on from panel otherwise it will not work
            Api.Antivm();
            //Checking DNSPY is present on Computer, You can use anywhere except program.cs Turn it on from panel otherwise it will not work
            Api.Antidnspy();
            //Anti Monitor Added in BG Worker, Now it will start working
            AntiMonitor.RunWorkerAsync(); //BG Worker
        }

We can use Api.Antimonitor(); inside a background worker with loop. Here is an example:

private void AntiMonitor_DoWork(object sender, DoWorkEventArgs e)
        {

                while (true)
                {
                    Api.AntiMonitor();
                    System.Threading.Thread.Sleep(3000);
                }

        }

Last updated