Update packages

This commit is contained in:
Matt Nadareski
2026-06-12 11:00:13 -04:00
parent 52335e1720
commit 5ba78908d7
264 changed files with 442 additions and 509 deletions

View File

@@ -12,12 +12,12 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="coverlet.collector" Version="8.0.0"> <PackageReference Include="coverlet.collector" Version="10.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="SabreTools.Serialization" Version="[2.3.0]" /> <PackageReference Include="SabreTools.Serialization" Version="[3.0.0]" />
<PackageReference Include="xunit" Version="2.9.3" /> <PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5"> <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class AACSMediaKeyBlockTests public class AACSMediaKeyBlockTests
{ {
private static readonly SabreTools.Serialization.Wrappers.AACSMediaKeyBlock wrapper private static readonly SabreTools.Wrappers.AACSMediaKeyBlock wrapper
= new(new SabreTools.Data.Models.AACS.MediaKeyBlock(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.AACS.MediaKeyBlock(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class BDPlusSVMTests public class BDPlusSVMTests
{ {
private static readonly SabreTools.Serialization.Wrappers.BDPlusSVM wrapper private static readonly SabreTools.Wrappers.BDPlusSVM wrapper
= new(new SabreTools.Data.Models.BDPlus.SVM(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.BDPlus.SVM(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class DiskImageTests public class DiskImageTests
{ {
private static readonly SabreTools.Serialization.Wrappers.ISO9660 wrapper private static readonly SabreTools.Wrappers.ISO9660 wrapper
= new(new SabreTools.Data.Models.ISO9660.Volume(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.ISO9660.Volume(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class GCFTests public class GCFTests
{ {
private static readonly SabreTools.Serialization.Wrappers.GCF wrapper private static readonly SabreTools.Wrappers.GCF wrapper
= new(new SabreTools.Data.Models.GCF.File(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.GCF.File(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class LDSCRYPTTests public class LDSCRYPTTests
{ {
private static readonly SabreTools.Serialization.Wrappers.LDSCRYPT wrapper private static readonly SabreTools.Wrappers.LDSCRYPT wrapper
= new(new SabreTools.Data.Models.LDSCRYPT.EncryptedFile(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.LDSCRYPT.EncryptedFile(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class LinearExecutableTests public class LinearExecutableTests
{ {
private static readonly SabreTools.Serialization.Wrappers.LinearExecutable wrapper private static readonly SabreTools.Wrappers.LinearExecutable wrapper
= new(new SabreTools.Data.Models.LinearExecutable.Executable(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.LinearExecutable.Executable(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class MSDOSTests public class MSDOSTests
{ {
private static readonly SabreTools.Serialization.Wrappers.MSDOS wrapper private static readonly SabreTools.Wrappers.MSDOS wrapper
= new(new SabreTools.Data.Models.MSDOS.Executable(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.MSDOS.Executable(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class NewExecutableTests public class NewExecutableTests
{ {
private static readonly SabreTools.Serialization.Wrappers.NewExecutable wrapper private static readonly SabreTools.Wrappers.NewExecutable wrapper
= new(new SabreTools.Data.Models.NewExecutable.Executable(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.NewExecutable.Executable(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class PLJTests public class PLJTests
{ {
private static readonly SabreTools.Serialization.Wrappers.PlayJAudioFile wrapper private static readonly SabreTools.Wrappers.PlayJAudioFile wrapper
= new(new SabreTools.Data.Models.PlayJ.AudioFile(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.PlayJ.AudioFile(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class PortableExecutableTests public class PortableExecutableTests
{ {
private static readonly SabreTools.Serialization.Wrappers.PortableExecutable wrapper private static readonly SabreTools.Wrappers.PortableExecutable wrapper
= new(new SabreTools.Data.Models.PortableExecutable.Executable(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.PortableExecutable.Executable(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class RealArcadeInstallerTests public class RealArcadeInstallerTests
{ {
private static readonly SabreTools.Serialization.Wrappers.RealArcadeInstaller wrapper private static readonly SabreTools.Wrappers.RealArcadeInstaller wrapper
= new(new SabreTools.Data.Models.RealArcade.RgsFile(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.RealArcade.RgsFile(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class RealArcadeMezzanineTests public class RealArcadeMezzanineTests
{ {
private static readonly SabreTools.Serialization.Wrappers.RealArcadeMezzanine wrapper private static readonly SabreTools.Wrappers.RealArcadeMezzanine wrapper
= new(new SabreTools.Data.Models.RealArcade.Mezzanine(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.RealArcade.Mezzanine(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{ {
public class SFFSTests public class SFFSTests
{ {
private static readonly SabreTools.Serialization.Wrappers.SFFS wrapper private static readonly SabreTools.Wrappers.SFFS wrapper
= new(new SabreTools.Data.Models.StarForce.FileSystem(), new MemoryStream(new byte[1024])); = new(new SabreTools.Data.Models.StarForce.FileSystem(), new MemoryStream(new byte[1024]));
[Fact] [Fact]

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.GameEngine
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new RenderWare(); var checker = new RenderWare();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ASPack(); var checker = new ASPack();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new AdvancedInstaller(); var checker = new AdvancedInstaller();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new AutoPlayMediaStudio(); var checker = new AutoPlayMediaStudio();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CExe(); var checker = new CExe();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Crunch(); var checker = new Crunch();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new DotFuscator(); var checker = new DotFuscator();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new DotNetReactor(); var checker = new DotNetReactor();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -23,7 +23,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new EXEStealth(); var checker = new EXEStealth();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new EmbeddedFile(); var checker = new EmbeddedFile();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new GenteeInstaller(); var checker = new GenteeInstaller();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new HyperTechCrackProof(); var checker = new HyperTechCrackProof();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new InnoSetup(); var checker = new InnoSetup();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new InnoSetup(); var checker = new InnoSetup();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new InstallAnywhere(); var checker = new InstallAnywhere();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new InstallerVISE(); var checker = new InstallerVISE();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new IntelInstallationFramework(); var checker = new IntelInstallationFramework();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new MicrosoftCABSFX(); var checker = new MicrosoftCABSFX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new NSIS(); var checker = new NSIS();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new NeoLite(); var checker = new NeoLite();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new PECompact(); var checker = new PECompact();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new PEtite(); var checker = new PEtite();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SetupFactory(); var checker = new SetupFactory();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SevenZipSFX(); var checker = new SevenZipSFX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Shrinker(); var checker = new Shrinker();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new UPX(); var checker = new UPX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new WinRARSFX(); var checker = new WinRARSFX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new WinZipSFX(); var checker = new WinZipSFX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new WinZipSFX(); var checker = new WinZipSFX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new WiseInstaller(); var checker = new WiseInstaller();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new WiseInstaller(); var checker = new WiseInstaller();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -23,7 +23,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ActiveMARK(); var checker = new ActiveMARK();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new AegiSoft(); var checker = new AegiSoft();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new AlphaROM(); var checker = new AlphaROM();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new AlphaROM(); var checker = new AlphaROM();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Armadillo(); var checker = new Armadillo();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ByteShield(); var checker = new ByteShield();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDCheck(); var checker = new CDCheck();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new CDDVDCops(); var checker = new CDDVDCops();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDDVDCops(); var checker = new CDDVDCops();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDGuard(); var checker = new CDGuard();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDKey(); var checker = new CDKey();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDLock(); var checker = new CDLock();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CDSHiELDSE(); var checker = new CDSHiELDSE();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CEG(); var checker = new CEG();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CenegaProtectDVD(); var checker = new CenegaProtectDVD();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Channelware(); var checker = new Channelware();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ChosenBytesCodeLock(); var checker = new ChosenBytesCodeLock();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CopyKiller(); var checker = new CopyKiller();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CopyLok(); var checker = new CopyLok();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new CopyLok(); var checker = new CopyLok();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CopyX(); var checker = new CopyX();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new CrypKey(); var checker = new CrypKey();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Cucko(); var checker = new Cucko();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Denuvo(); var checker = new Denuvo();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new DigiGuard(); var checker = new DigiGuard();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new DiscGuard(); var checker = new DiscGuard();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new EAAntiCheat(); var checker = new EAAntiCheat();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new EasyAntiCheat(); var checker = new EasyAntiCheat();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ElectronicArts(); var checker = new ElectronicArts();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Engine32(); var checker = new Engine32();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new GFWL(); var checker = new GFWL();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Gefest(); var checker = new Gefest();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new HexalockAutoLock(); var checker = new HexalockAutoLock();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ImpulseReactor(); var checker = new ImpulseReactor();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Intenium(); var checker = new Intenium();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new InterLok(); var checker = new InterLok();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new JoWood(); var checker = new JoWood();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new KalypsoLauncher(); var checker = new KalypsoLauncher();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new LabelGate(); var checker = new LabelGate();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new LaserLok(); var checker = new LaserLok();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new LaserLok(); var checker = new LaserLok();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new MGIRegistration(); var checker = new MGIRegistration();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new Macrovision(); var checker = new Macrovision();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Macrovision(); var checker = new Macrovision();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -60,7 +60,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new Macrovision(); var checker = new Macrovision();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new MediaCloQ(); var checker = new MediaCloQ();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new MediaMax(); var checker = new MediaMax();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new NEACProtect(); var checker = new NEACProtect();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new NProtect(); var checker = new NProtect();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new OnlineRegistration(); var checker = new OnlineRegistration();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new OpenMG(); var checker = new OpenMG();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Origin(); var checker = new Origin();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new PlayJ(); var checker = new PlayJ();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new ProtectDISC(); var checker = new ProtectDISC();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new ProtectDISC(); var checker = new ProtectDISC();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new(); SabreTools.Data.Models.NewExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.NewExecutable exe = new(model, source); SabreTools.Wrappers.NewExecutable exe = new(model, source);
var checker = new RainbowSentinel(); var checker = new RainbowSentinel();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new RainbowSentinel(); var checker = new RainbowSentinel();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new RealArcade(); var checker = new RealArcade();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Roxxe(); var checker = new Roxxe();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SVKProtector(); var checker = new SVKProtector();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SecuROM(); var checker = new SecuROM();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new SecuROM(); var checker = new SecuROM();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SmartE(); var checker = new SmartE();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SoftLock(); var checker = new SoftLock();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new SolidShield(); var checker = new SolidShield();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new StarForce(); var checker = new StarForce();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new(); SabreTools.Data.Models.ISO9660.Volume model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.ISO9660 iso = new(model, source); SabreTools.Wrappers.ISO9660 iso = new(model, source);
var checker = new StarForce(); var checker = new StarForce();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false); string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename"; string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new(); SabreTools.Data.Models.PortableExecutable.Executable model = new();
Stream source = new MemoryStream(new byte[1024]); Stream source = new MemoryStream(new byte[1024]);
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source); SabreTools.Wrappers.PortableExecutable exe = new(model, source);
var checker = new Steam(); var checker = new Steam();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false); string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

Some files were not shown because too many files have changed in this diff Show More