├── .gitignore ├── BUILD.md ├── LICENSE ├── NuGet.config ├── README.md ├── TypeRefHasher.sln ├── artifacts └── artifacts.txt ├── azure-pipelines.yml ├── manifests └── g │ └── GDATA │ └── TypeRefHasher │ ├── 1.0.0 │ └── GDATA.TypeRefHasher.yaml │ └── 1.0.3 │ ├── GDATA.TypeRefHasher.installer.yaml │ ├── GDATA.TypeRefHasher.locale.en-US.yaml │ └── GDATA.TypeRefHasher.yaml ├── sha_imdetection_typerefhash_filtered.json ├── src ├── Installer │ ├── Installer.wixproj │ ├── Product.wxs │ └── build-msi.ps1 └── TRH │ ├── Program.cs │ ├── TRH.csproj │ └── rd.xml └── test └── TRH.Test ├── Binaries ├── NetCoreConsole.dll ├── firefox_x86.exe └── notPeFile.txt ├── CLI_Test.cs └── TRH.Test.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/README.md -------------------------------------------------------------------------------- /TypeRefHasher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/TypeRefHasher.sln -------------------------------------------------------------------------------- /artifacts/artifacts.txt: -------------------------------------------------------------------------------- 1 | This folder holds all build artifacts -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /manifests/g/GDATA/TypeRefHasher/1.0.0/GDATA.TypeRefHasher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/manifests/g/GDATA/TypeRefHasher/1.0.0/GDATA.TypeRefHasher.yaml -------------------------------------------------------------------------------- /manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.installer.yaml -------------------------------------------------------------------------------- /manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.locale.en-US.yaml -------------------------------------------------------------------------------- /manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/manifests/g/GDATA/TypeRefHasher/1.0.3/GDATA.TypeRefHasher.yaml -------------------------------------------------------------------------------- /sha_imdetection_typerefhash_filtered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/sha_imdetection_typerefhash_filtered.json -------------------------------------------------------------------------------- /src/Installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/Installer/Installer.wixproj -------------------------------------------------------------------------------- /src/Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/Installer/Product.wxs -------------------------------------------------------------------------------- /src/Installer/build-msi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/Installer/build-msi.ps1 -------------------------------------------------------------------------------- /src/TRH/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/TRH/Program.cs -------------------------------------------------------------------------------- /src/TRH/TRH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/TRH/TRH.csproj -------------------------------------------------------------------------------- /src/TRH/rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/src/TRH/rd.xml -------------------------------------------------------------------------------- /test/TRH.Test/Binaries/NetCoreConsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/test/TRH.Test/Binaries/NetCoreConsole.dll -------------------------------------------------------------------------------- /test/TRH.Test/Binaries/firefox_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/test/TRH.Test/Binaries/firefox_x86.exe -------------------------------------------------------------------------------- /test/TRH.Test/Binaries/notPeFile.txt: -------------------------------------------------------------------------------- 1 | This is not a pe file -------------------------------------------------------------------------------- /test/TRH.Test/CLI_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/test/TRH.Test/CLI_Test.cs -------------------------------------------------------------------------------- /test/TRH.Test/TRH.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDATASoftwareAG/TypeRefHasher/HEAD/test/TRH.Test/TRH.Test.csproj --------------------------------------------------------------------------------