From 4b0e39b950f1a0f29e06d1c5a1c365d7af11580b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 4 Feb 2022 15:19:24 -0800 Subject: [PATCH] Add Steam API DLLs to detection --- BurnOutSharp/ProtectionType/Steam.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BurnOutSharp/ProtectionType/Steam.cs b/BurnOutSharp/ProtectionType/Steam.cs index 6da59ba0..25dfdf10 100644 --- a/BurnOutSharp/ProtectionType/Steam.cs +++ b/BurnOutSharp/ProtectionType/Steam.cs @@ -12,6 +12,8 @@ namespace BurnOutSharp.ProtectionType { var matchers = new List { + new PathMatchSet(new PathMatch("steam_api.dll", useEndsWith: true), "Steam"), + new PathMatchSet(new PathMatch("steam_api64.dll", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.bom", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.exe", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.info", useEndsWith: true), "Steam"), @@ -42,6 +44,8 @@ namespace BurnOutSharp.ProtectionType { var matchers = new List { + new PathMatchSet(new PathMatch("steam_api.dll", useEndsWith: true), "Steam"), + new PathMatchSet(new PathMatch("steam_api64.dll", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.bom", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.exe", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamInstall.info", useEndsWith: true), "Steam"),