Search found 66 matches

by weloveayaka
Tue Sep 10, 2024 10:20 am
Forum: Technical questions
Topic: Programs crashes with error code 0xc0000602
Replies: 3
Views: 4587

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: 15238

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: 15238

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: 15238

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: 15238

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: 15238

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: 15238

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: 15238

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: 5005

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

did you try .NET vmprotect sdk?
Located at Lib\windows\Net\VMProtect.SDK.dll
by weloveayaka
Tue Apr 02, 2024 8:27 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Re: Is it Possible to Prevent Renaming for Returned Anonymous Classes

Admin wrote: Tue Apr 02, 2024 8:24 am Because you have to rremove the force renaming feature for all classes with dynamic calls!
Yes, I removed all renaming feature
by weloveayaka
Tue Apr 02, 2024 8:20 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Re: Is it Possible to Prevent Renaming for Returned Anonymous Classes

Thank you for the clarification. We are using the renaming attribute solely as a workaround for the main issue at original post. However, the current problem persists even without any renaming tags, as dynamics are still encountering issues. so the problem is RuntimeBinderException and JSON property...
by weloveayaka
Tue Apr 02, 2024 6:46 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Re: Is it Possible to Prevent Renaming for Returned Anonymous Classes

a more serious problem: When we use we mentioned workaround at the topic: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: “F6B57532” does not contains a defination for "testCallWithDynamicClass" [assembly: Obfuscation(Feature = "renaming", Exclude = true)] namespace XXX { ...
by weloveayaka
Tue Apr 02, 2024 3:52 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Re: Is it Possible to Prevent Renaming for Returned Anonymous Classes

Please show me how you use serialization for such types. public static dynamic testAnonymousType2() { var obj = new { Name = "John", Age = 30 }; var converter = new System.Web.Script.Serialization.JavaScriptSerializer(); Console.WriteLine("ToJSON1: " + converter.Serialize(obj));...
by weloveayaka
Tue Apr 02, 2024 3:47 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Re: Is it Possible to Prevent Renaming for Returned Anonymous Classes

following code throws Microsoft.CSharp.RuntimeBinder.RuntimeBinderException class XXX does not contain a definition for "Name" no assembly level renaming Obfuscation attribute [Obfuscation(Feature = "ultra", Exclude = true)] public static dynamic testAnonymousType2() { var obj = ...
by weloveayaka
Tue Apr 02, 2024 2:38 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 2804

Is it Possible to Prevent Renaming for Returned Anonymous Classes

when enabling renaming, following code: public static dynamic testAnonymousType() { var obj = new { Name = "John", Age = 30 }; return obj; } The properties Name and Age are also renamed due to the compiler generating internal classes and private fields. This behavior can lead to issues wit...