mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
94 lines
3.0 KiB
C#
94 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using BurnOutSharp.FileType;
|
|
using BurnOutSharp.Interfaces;
|
|
using BurnOutSharp.Wrappers;
|
|
|
|
namespace BurnOutSharp.ProtectionType
|
|
{
|
|
// TODO: Figure out how to use path check framework here
|
|
public class XCP : IPathCheck, IPortableExecutableCheck
|
|
{
|
|
/// <inheritdoc/>
|
|
public string CheckPortableExecutable(string file, PortableExecutable pex, bool includeDebug)
|
|
{
|
|
// Get the sections from the executable, if possible
|
|
var sections = pex?.SectionTable;
|
|
if (sections == null)
|
|
return null;
|
|
|
|
// Get the .rdata section strings, if they exist
|
|
List<string> strs = pex.GetFirstSectionStrings(".rdata");
|
|
if (strs != null)
|
|
{
|
|
if (strs.Any(s => s.Contains("XCP.DAT")))
|
|
return "XCP";
|
|
|
|
if (strs.Any(s => s.Contains("xcpdrive")))
|
|
return "XCP";
|
|
|
|
if (strs.Any(s => s.Contains("XCPPlugins.dll")))
|
|
return "XCP";
|
|
|
|
if (strs.Any(s => s.Contains("XCPPhoenix.dll")))
|
|
return "XCP";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public ConcurrentQueue<string> CheckDirectoryPath(string path, IEnumerable<string> files)
|
|
{
|
|
var protections = new ConcurrentQueue<string>();
|
|
|
|
// TODO: Verify if these are OR or AND
|
|
if (files.Any(f => Path.GetFileName(f).Equals("XCP.DAT", StringComparison.OrdinalIgnoreCase))
|
|
|| files.Any(f => Path.GetFileName(f).Equals("ECDPlayerControl.ocx", StringComparison.OrdinalIgnoreCase)))
|
|
{
|
|
string versionDatPath = files.FirstOrDefault(f => Path.GetFileName(f).Equals("VERSION.DAT", StringComparison.OrdinalIgnoreCase));
|
|
if (!string.IsNullOrWhiteSpace(versionDatPath))
|
|
{
|
|
string xcpVersion = GetDatVersion(versionDatPath);
|
|
if (!string.IsNullOrWhiteSpace(xcpVersion))
|
|
protections.Enqueue(xcpVersion);
|
|
}
|
|
else
|
|
{
|
|
protections.Enqueue("XCP");
|
|
}
|
|
}
|
|
|
|
return protections;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public string CheckFilePath(string path)
|
|
{
|
|
if (Path.GetFileName(path).Equals("XCP.DAT", StringComparison.OrdinalIgnoreCase)
|
|
|| Path.GetFileName(path).Equals("ECDPlayerControl.ocx", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return "XCP";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private static string GetDatVersion(string path)
|
|
{
|
|
try
|
|
{
|
|
var xcpIni = new IniFile(path);
|
|
return xcpIni["XCP.VERSION"];
|
|
}
|
|
catch
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|