├── .gitignore ├── Ja3Fingerprint ├── H2Extention.cs ├── Ja3Extentions.cs ├── Ja3Fingerprint.csproj ├── TlsExtention.cs └── TlsFrameHelper.cs ├── Ja3Test ├── Controllers │ └── TlsController.cs ├── Ja3Test.csproj ├── Program.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── server.pfx ├── README.md └── ja3-csharp.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Ja3Fingerprint/H2Extention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Fingerprint/H2Extention.cs -------------------------------------------------------------------------------- /Ja3Fingerprint/Ja3Extentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Fingerprint/Ja3Extentions.cs -------------------------------------------------------------------------------- /Ja3Fingerprint/Ja3Fingerprint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Fingerprint/Ja3Fingerprint.csproj -------------------------------------------------------------------------------- /Ja3Fingerprint/TlsExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Fingerprint/TlsExtention.cs -------------------------------------------------------------------------------- /Ja3Fingerprint/TlsFrameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Fingerprint/TlsFrameHelper.cs -------------------------------------------------------------------------------- /Ja3Test/Controllers/TlsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/Controllers/TlsController.cs -------------------------------------------------------------------------------- /Ja3Test/Ja3Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/Ja3Test.csproj -------------------------------------------------------------------------------- /Ja3Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/Program.cs -------------------------------------------------------------------------------- /Ja3Test/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/Startup.cs -------------------------------------------------------------------------------- /Ja3Test/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/appsettings.Development.json -------------------------------------------------------------------------------- /Ja3Test/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/appsettings.json -------------------------------------------------------------------------------- /Ja3Test/server.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/Ja3Test/server.pfx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/README.md -------------------------------------------------------------------------------- /ja3-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzd/ja3-csharp/HEAD/ja3-csharp.sln --------------------------------------------------------------------------------