-
Notifications
You must be signed in to change notification settings - Fork 0
90. CARO
Destroyer edited this page Dec 13, 2021
·
1 revision
Identifier Generator according to CARO Regulations (Computer Antivirus Research Organization)
- VB
Dim GenMWName As String = CARO.VirNames.Generate(CARO.VirNames.Type.Adware, CARO.VirNames.Platforms.Win32, CARO.VirNames.Family.Inde, CARO.VirNames.VariantL.U, CARO.VirNames.Suffixes.gen)
MessageBox.Show(GenMWName)
- C#
string GenMWName = CARO.VirNames.Generate(CARO.VirNames.Type.Adware, CARO.VirNames.Platforms.Win32, CARO.VirNames.Family.Inde, CARO.VirNames.VariantL.U, CARO.VirNames.Suffixes.gen);
MessageBox.Show(GenMWName);
Remember that the documentation and examples may be subject to change, depending on the API updates.