diff --git a/BurnOutSharp/ProtectionType/CopyKiller.cs b/BurnOutSharp/ProtectionType/CopyKiller.cs index 8d36091f..716e7cd4 100644 --- a/BurnOutSharp/ProtectionType/CopyKiller.cs +++ b/BurnOutSharp/ProtectionType/CopyKiller.cs @@ -9,6 +9,7 @@ namespace BurnOutSharp.ProtectionType /// public List GetContentMatchSets() { + // TODO: Obtain a sample to find where this string is in a typical executable return new List { // Tom Commander @@ -27,6 +28,7 @@ namespace BurnOutSharp.ProtectionType public ConcurrentQueue CheckDirectoryPath(string path, IEnumerable files) { // TODO: The following checks are overly broad and should be refined + // TODO: Look into .PFF files as an indicator. At least one disc has those oversized files var matchers = new List { //new PathMatchSet(new PathMatch("Autorun.dat", useEndsWith: true), "CopyKiller"), @@ -39,6 +41,7 @@ namespace BurnOutSharp.ProtectionType public string CheckFilePath(string path) { // TODO: The following checks are overly broad and should be refined + // TODO: Look into .PFF files as an indicator. At least one disc has those oversized files var matchers = new List { //new PathMatchSet(new PathMatch("Autorun.dat", useEndsWith: true), "CopyKiller"),