├── .gitignore ├── LICENSE ├── README.md └── src ├── DetectionTool.Console ├── DetectionTool.Console.csproj └── Program.cs ├── DetectionTool.Core ├── Constants.cs ├── DetectionTool.Core.csproj ├── ScanResults.cs └── Scanner.cs ├── DetectionTool.Linux ├── DetectionTool.Linux.csproj ├── MainWindow.cs ├── Program.cs └── style.css ├── DetectionTool.sln └── DetectionTool ├── App.config ├── DetectionTool.csproj ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs └── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/README.md -------------------------------------------------------------------------------- /src/DetectionTool.Console/DetectionTool.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Console/DetectionTool.Console.csproj -------------------------------------------------------------------------------- /src/DetectionTool.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Console/Program.cs -------------------------------------------------------------------------------- /src/DetectionTool.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Core/Constants.cs -------------------------------------------------------------------------------- /src/DetectionTool.Core/DetectionTool.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Core/DetectionTool.Core.csproj -------------------------------------------------------------------------------- /src/DetectionTool.Core/ScanResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Core/ScanResults.cs -------------------------------------------------------------------------------- /src/DetectionTool.Core/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Core/Scanner.cs -------------------------------------------------------------------------------- /src/DetectionTool.Linux/DetectionTool.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Linux/DetectionTool.Linux.csproj -------------------------------------------------------------------------------- /src/DetectionTool.Linux/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Linux/MainWindow.cs -------------------------------------------------------------------------------- /src/DetectionTool.Linux/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Linux/Program.cs -------------------------------------------------------------------------------- /src/DetectionTool.Linux/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.Linux/style.css -------------------------------------------------------------------------------- /src/DetectionTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool.sln -------------------------------------------------------------------------------- /src/DetectionTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/App.config -------------------------------------------------------------------------------- /src/DetectionTool/DetectionTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/DetectionTool.csproj -------------------------------------------------------------------------------- /src/DetectionTool/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/MainWindow.Designer.cs -------------------------------------------------------------------------------- /src/DetectionTool/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/MainWindow.cs -------------------------------------------------------------------------------- /src/DetectionTool/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/MainWindow.resx -------------------------------------------------------------------------------- /src/DetectionTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Program.cs -------------------------------------------------------------------------------- /src/DetectionTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DetectionTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DetectionTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Properties/Resources.resx -------------------------------------------------------------------------------- /src/DetectionTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/DetectionTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/detection-tool/HEAD/src/DetectionTool/Properties/Settings.settings --------------------------------------------------------------------------------