# Application Security

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

```csharp
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:<br>

```csharp
private void AntiMonitor_DoWork(object sender, DoWorkEventArgs e)
        {

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

        }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/application-security.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
