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

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -6,7 +6,7 @@ namespace BinaryObjectScanner.Test.FileType
{
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]));
[Fact]

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.GameEngine
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -23,7 +23,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Packer
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -23,7 +23,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -25,7 +25,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -60,7 +60,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -12,7 +12,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.NewExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -26,7 +26,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
@@ -47,7 +47,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.ISO9660.Volume model = new();
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();
string? actual = checker.CheckDiskImage(file, iso, includeDebug: false);

View File

@@ -13,7 +13,7 @@ namespace BinaryObjectScanner.Test.Protection
string file = "filename";
SabreTools.Data.Models.PortableExecutable.Executable model = new();
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();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);

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