Search found 2585 matches

by Admin
Tue Apr 02, 2024 8:00 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 359

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

I have already wrote that the following code works like force renaming : [Obfuscation(Feature = "renaming", Exclude = false)] Force renaming means that all symbols (including methods) pinned to this attribute will be renaming even the methods were used for dynamic calls. Please don't use t...
by Admin
Tue Apr 02, 2024 3:47 am
Forum: Technical questions
Topic: Is it Possible to Prevent Renaming for Returned Anonymous Classes
Replies: 8
Views: 359

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

Please show me how you use serialization for such types.
by Admin
Tue Apr 02, 2024 3:46 am
Forum: Web License Manager
Topic: Trouble Setting Up Licensing System: activate.php Missing from WebLM Package
Replies: 2
Views: 191

Re: Trouble Setting Up Licensing System: activate.php Missing from WebLM Package

According to the guide I received with the WebLM package I purchased, I need to link the activation server using the URL You have to specify the address of your activation server like this: http://yourserver/weblm_path Any alternative methods or steps I should consider to properly set up the licens...
by Admin
Fri Mar 29, 2024 7:29 am
Forum: Technical questions
Topic: Can VMP protect memory from reading?
Replies: 1
Views: 309

Re: Can VMP protect memory from reading?

Look at NtReadVirtualMemory. For more secure you can call this API directly with SYSCALL/SYSENTER.
by Admin
Mon Mar 25, 2024 5:40 am
Forum: Purchasing or Upgrading
Topic: Принимаете ли WebMoney (WMZ)?
Replies: 12
Views: 4932

Re: Принимаете ли WebMoney (WMZ)?

Хотел бы купить лицензию на персональную PRO версию оплатой usdt trc20 либо переводом с карты. Напишите пожалуйста в ПМ, если покупка возможна из РФ. Проверяйте личку. Почему то я не могу написать вам на почту ни с mail.ru ни с protonmail.ch (proton.me) - mail.ru говорит что спам, proton не может д...
by Admin
Wed Mar 20, 2024 6:50 am
Forum: Technical questions
Topic: 2001: Invalid Operand Type
Replies: 6
Views: 500

Re: 2001: Invalid Operand Type

hewenbiao7 wrote: Wed Mar 20, 2024 2:24 am I haven't received the 2003 version, please send it to my email
Done.
by Admin
Mon Mar 18, 2024 9:20 am
Forum: Technical questions
Topic: version 2023: System.Reflection.TargetException: Non-static method requires a target
Replies: 2
Views: 322

Re: version 2023: System.Reflection.TargetException: Non-static method requires a target

P.S. Stack trace deocder only get "Main", and not shows TestNullable/TestNullable2 in stacktrace.
The stacktrace will not contain "TestNullable2" because virtualized TestNullable2 is always "hidden" when it was called from other virtuialized method.
by Admin
Mon Mar 18, 2024 7:46 am
Forum: Technical questions
Topic: 2001: Invalid Operand Type
Replies: 6
Views: 500

Re: 2001: Invalid Operand Type

hewenbiao7 wrote: Mon Mar 18, 2024 2:36 am I'am have same issue, can you send me 2002 build also?
Done.
by Admin
Sun Mar 17, 2024 2:31 pm
Forum: Technical questions
Topic: «Невозможно открыть файл» из-за проблем с temp-файлами
Replies: 2
Views: 327

Re: «Невозможно открыть файл» из-за проблем с temp-файлами

Для создания темпового файла используется следующий код: wchar_t lpTempPathBuffer[MAX_PATH], szTempFileName[MAX_PATH]; DWORD dwRetVal = GetTempPathW(MAX_PATH, lpTempPathBuffer); if (dwRetVal <= MAX_PATH && (dwRetVal != 0)) { UINT uRetVal = GetTempFileNameW(lpTempPathBuffer, L"vmp",...
by Admin
Sat Mar 16, 2024 7:39 am
Forum: Technical questions
Topic: 2001: unsafe method exception
Replies: 2
Views: 351

Re: 2001: unsafe method exception

Fixed in the 2023 build except this:

Code: Select all

public unsafe class UnsafeClass
{
    
    public void UnsafeMethod()
    {
        int* ptr = stackalloc int[1];
        *ptr = 42;
        Console.WriteLine("Unsafe method: " + *ptr);
    }
}
by Admin
Tue Mar 12, 2024 12:22 pm
Forum: Technical questions
Topic: Отключение контроля целостности файла на диске при сохранении защиты памяти
Replies: 9
Views: 733

Re: Отключение контроля целостности файла на диске при сохранении защиты памяти

Можно убрать из контроля целостности все поля, которые относятся к ELF секциям в Elf_Ehdr: e_shoff, e_shentsize, e_shnum, e_shstrndx. Такой вариант устроит?