Search found 3 matches

by everymax1234
Thu Oct 28, 2021 8:53 am
Forum: Technical questions
Topic: delphi VMProtectDecryptStringA memory clean?
Replies: 4
Views: 2598

Re: delphi VMProtectDecryptStringA memory clean?

PAnsiChar -> memory clean success

thank you
by everymax1234
Thu Oct 28, 2021 8:17 am
Forum: Technical questions
Topic: delphi VMProtectDecryptStringA memory clean?
Replies: 4
Views: 2598

Re: delphi VMProtectDecryptStringA memory clean?

procedure TForm1.Button1Click(Sender: TObject); var nthookscript: Tstringlist; str1 : string; str2 : string; str3 : string; begin showmessage('1'); str1 := VMProtectDecryptStringA('teststring0000'); str2 := VMProtectDecryptStringA('teststring0001'); str3 := VMProtectDecryptStringA('teststring0002');...
by everymax1234
Thu Oct 28, 2021 7:21 am
Forum: Technical questions
Topic: delphi VMProtectDecryptStringA memory clean?
Replies: 4
Views: 2598

delphi VMProtectDecryptStringA memory clean?

procedure TForm1.Button1Click(Sender: TObject); var nthookscript: Tstringlist; begin nthookscript:=nil; nthookscript:=tstringlist.create; nthookscript.add(VMProtectDecryptStringA(('teststring0000'))); nthookscript.add(VMProtectDecryptStringA(('teststring0001'))); nthookscript.add(VMProtectDecryptStr...