Search found 72 matches

by weloveayaka
Fri Jan 23, 2026 4:34 am
Forum: Technical questions
Topic: Expired Serial Number can still run locked function
Replies: 3
Views: 2951

Expired Serial Number can still run locked function

Hello, I'm testing the licensing system. I locked a function to serial number, but even if I set a DateExpired serial number, It still can be run. Expected to be terminated when using any Invalid Serial Number (Bad HWID, Date DateExpired, MaxBuildExpired) Is there any option to do this? Thank you. I...
by weloveayaka
Thu Jan 15, 2026 2:09 pm
Forum: Technical questions
Topic: Serial number not shared between DLLs in .NET Framework 4.8
Replies: 2
Views: 2399

Re: Serial number not shared between DLLs in .NET Framework 4.8

Okay, guess this is the only way. Thank you.
by weloveayaka
Tue Jan 13, 2026 10:17 am
Forum: Technical questions
Topic: Serial number not shared between DLLs in .NET Framework 4.8
Replies: 2
Views: 2399

Serial number not shared between DLLs in .NET Framework 4.8

Hello! Environment: - .NET Framework 4.8 - VMProtect with .NET SDK - Using VirtualizationLockByKey feature Scenario: - A.DLL calls VMProtect.SDK.SetSerialNumber(xxx) - B.DLL references A.DLL (either by assembly reference or reflection) - Both A.DLL and B.DLL use the same LicenseDataFile - Both DLLs ...
by weloveayaka
Fri Nov 07, 2025 9:29 am
Forum: Technical questions
Topic: .NET 9: add strong name to protected dll makes file interrupted
Replies: 1
Views: 1981

.NET 9: add strong name to protected dll makes file interrupted

after use sn.exe tool adding strong name to protected dll, it shows a dialog "File corrupted! This program has been manipulated and maybe it's infected by a Virus or cracked. This file won't work anymore." Is there any way to avoid this problem? P.S. can't upload via attachment "Could...
by weloveayaka
Tue Aug 05, 2025 1:41 am
Forum: Technical questions
Topic: VMProtect for ARM64 released
Replies: 24
Views: 170032

Re: VMProtect for ARM64 coming soon

soooooooooooooooon™, Any updates?
by weloveayaka
Tue Sep 10, 2024 10:20 am
Forum: Technical questions
Topic: deleted
Replies: 3
Views: 15635

Re: Programs crashes with error code 0xc0000602

Admin wrote: Tue Sep 10, 2024 5:50 am VMProtect doesn't support binaries compiled with Native AOT because AOT uses return address from the stack for GC.
Sorry to hear that. We hope to have a solution for this in the future. We were just planning to use NativeAOT.
by weloveayaka
Sun Jul 21, 2024 10:55 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

I compile it again use same original exe and same VMP config on same computer. this time it runs well.
by weloveayaka
Sun Jul 21, 2024 10:52 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

sorry

Code: Select all

 public class EventExample
    {
        public int Counter { get; set; }
        public event Action ExampleEvent;

        public void RaiseEvent()
        {
            ExampleEvent?.Invoke();
        }
    }
   
by weloveayaka
Sun Jul 21, 2024 6:38 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

Thanks for fast response 2126, the same example, could you please have a look? public static int TestEvent() { var eventExample = new EventExample(); eventExample.ExampleEvent += () => eventExample.Counter++; eventExample.RaiseEvent(); eventExample.RaiseEvent(); return eventExample.Counter; } System...
by weloveayaka
Sat Jul 20, 2024 11:27 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

Hello, following code can't be run on 2119, .net 4.8.1 Thank you for your help System.InvalidOperationException [Obfuscation(Feature = "virtualization", Exclude = false)] public static string GetMD5_32(string ConvertString) { var md5 = new MD5CryptoServiceProvider(); byte[] t = md5.Compute...
by weloveayaka
Tue Jul 02, 2024 8:53 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

Hello Admin
2110 look solved this problem,

but this one:
public void UnsafeMethod()
{
int* ptr = stackalloc int[1];
*ptr = 42;
Console.WriteLine("Unsafe method: " + *ptr);
}

got error on build 2110, runs well on build 2025, could you please have a look?
by weloveayaka
Mon Jun 17, 2024 7:10 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

antoher issue:
DivideByZeroException inside VM, .net framework 4.6.1
after upgraded to 4.8, problem solved.

just report here, we will ask user to use latest version.
by weloveayaka
Mon May 06, 2024 9:31 am
Forum: Technical questions
Topic: version 2023/2025/2040: multiple async operation can't complete
Replies: 12
Views: 1034844

Re: version 2023/2025/2040: multiple async operation can't complete

[del]build 2040 memory leak, It takes 10+GB memory before GC. VMMap can see a very large private data.
build 2025 do not have this problem.

Not found minimal code to reproduce the problem yet.

[/del]

Maybe our mistake still look into it
by weloveayaka
Fri Apr 12, 2024 3:39 am
Forum: Technical questions
Topic: Can we use VMProtect offline in dotnet C#?
Replies: 6
Views: 10160

Re: Can we use VMProtect offline in dotnet C#?

did you try .NET vmprotect sdk?
Located at Lib\windows\Net\VMProtect.SDK.dll