Compare commits

..

17 Commits

Author SHA1 Message Date
Matt Nadareski
0672f0c6e1 Update copyright dates 2026-07-10 13:49:26 -04:00
Matt Nadareski
080f4327bf Update packages, relax requirements 2026-07-10 13:49:09 -04:00
Matt Nadareski
521797b7b1 Add readme to package finally 2026-07-09 09:37:59 -04:00
Matt Nadareski
f4987e1862 Bump version 2026-07-06 10:32:00 -04:00
Matt Nadareski
34a0fb1f87 Update Serialization to 3.0.1 2026-07-06 10:19:49 -04:00
HeroponRikiBestest
8ca25c6370 Update GCF output string for encrypted GCFs (#417)
* Update GCF output string for encrypted GCFs

* Use Array.Exists since some early GCFs have only some files encrypted
2026-06-26 20:45:18 -04:00
Matt Nadareski
c45f6a1bae Bump version 2026-06-19 11:39:18 -04:00
Matt Nadareski
94d271d167 Remove temporary extension 2026-06-17 22:48:55 -04:00
Matt Nadareski
656016830c Fix PSX JP anti-modchip string (UTF to Shift-JIS) 2026-06-15 14:20:34 -04:00
Matt Nadareski
5ba78908d7 Update packages 2026-06-12 11:00:13 -04:00
Matt Nadareski
52335e1720 Remove CONTRIBUTING due to org-level version 2026-05-16 15:03:29 -04:00
Matt Nadareski
78d5ff201b Update CONTRIBUTING to be more accurate 2026-05-15 13:04:33 -04:00
Matt Nadareski
0f63f798dc Split some contributing info into a README 2026-05-15 10:57:13 -04:00
Matt Nadareski
7bf12001ca Rename coding tuide to CONTRIBUTING 2026-05-15 10:54:59 -04:00
Matt Nadareski
c444d5445d Update gitignore for new VSCode feature 2026-05-15 10:39:33 -04:00
HeroponRikiBestest
759e4bead0 Update release control executable table (#414)
* Move dictionaries to constants file

* Fix paste

* Update RC table with newly found executables
2026-03-26 15:14:32 -04:00
Matt Nadareski
993b1818c3 Add removal note 2026-03-22 17:17:33 -04:00
273 changed files with 618 additions and 1080 deletions

1
.gitignore vendored
View File

@@ -4,6 +4,7 @@
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files # User-specific files
*.lscache
*.suo *.suo
*.user *.user
*.userosscache *.userosscache

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.7.0" />
<PackageReference Include="SabreTools.Serialization" Version="[2.3.0]" /> <PackageReference Include="SabreTools.Serialization" Version="3.1.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

@@ -1,35 +0,0 @@
using Xunit;
namespace BinaryObjectScanner.Test
{
public class ExtensionsTests
{
#region FileSize
[Fact]
public void FileSize_Null_Invalid()
{
string? filename = null;
long actual = filename.FileSize();
Assert.Equal(-1, actual);
}
[Fact]
public void FileSize_Empty_Invalid()
{
string? filename = string.Empty;
long actual = filename.FileSize();
Assert.Equal(-1, actual);
}
[Fact]
public void FileSize_Invalid_Invalid()
{
string? filename = "INVALID";
long actual = filename.FileSize();
Assert.Equal(-1, actual);
}
#endregion
}
}

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

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