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

@@ -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);

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 Sysiphus();
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 TAGES();
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 TAGES();
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 Themida();
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 ThreePLock();
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 ThreeTwoOneStudios();
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 Uplay();
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 WMDS();
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 WTMCDProtect();
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 XCP();
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);