From c14005dcc47b9e91c644de856fede6ad088026e9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 22 Jun 2022 10:03:14 -0700 Subject: [PATCH] Add entry point note to Steam --- BurnOutSharp/ProtectionType/Steam.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BurnOutSharp/ProtectionType/Steam.cs b/BurnOutSharp/ProtectionType/Steam.cs index 8b2c9108..c3b5cd7d 100644 --- a/BurnOutSharp/ProtectionType/Steam.cs +++ b/BurnOutSharp/ProtectionType/Steam.cs @@ -35,6 +35,9 @@ namespace BurnOutSharp.ProtectionType else if (!string.IsNullOrEmpty(name) && name.Contains("Steam Client Service")) return "Steam"; + /// TODO: Add entry point checks + /// https://github.com/horsicq/Detect-It-Easy/blob/master/db/PE/Steam.2.sg + return null; }