├── .gitignore ├── AnathemaSln.sln ├── ES.Anathema.Core ├── AssemblyInfo.fs ├── ES.Anathema.Core.fsproj ├── Headers.fs └── Native.fs ├── ES.Anathema.Hook ├── AssemblyInfo.fs ├── ES.Anathema.Hook.fsproj └── JitHook.fs ├── ES.Anathema.Monitors ├── AssemblyInfo.fs ├── ES.Anathema.Monitors.fsproj ├── MethodMonitor.fs └── packages.config ├── ES.Anathema.Runtime ├── AssemblyInfo.fs ├── ES.Anathema.Runtime.fsproj ├── MethodFilter.fs └── RuntimeDispatcher.fs ├── LICENSE ├── MLogger ├── App.config ├── MLogger.csproj ├── MethodLoggerMonitor.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── MockLibrary ├── Classes.cs ├── MockLibrary.csproj ├── MyEnum.cs ├── MyStruct.cs ├── Properties │ └── AssemblyInfo.cs ├── SayHello.cs ├── SaySuperHello.cs ├── Simpleclass.cs └── StaticClass.cs ├── README.md ├── SecureWebShop ├── App.config ├── AssemblyInfo.fs ├── Program.fs ├── SecureWebShop.fsproj └── packages.config ├── SecureWebShopPasswordStealer ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SecureWebShopPasswordStealer.csproj └── Test ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SayHelloMonitor.cs ├── Test.csproj └── TestMethodMonitor.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/.gitignore -------------------------------------------------------------------------------- /AnathemaSln.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/AnathemaSln.sln -------------------------------------------------------------------------------- /ES.Anathema.Core/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Core/AssemblyInfo.fs -------------------------------------------------------------------------------- /ES.Anathema.Core/ES.Anathema.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Core/ES.Anathema.Core.fsproj -------------------------------------------------------------------------------- /ES.Anathema.Core/Headers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Core/Headers.fs -------------------------------------------------------------------------------- /ES.Anathema.Core/Native.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Core/Native.fs -------------------------------------------------------------------------------- /ES.Anathema.Hook/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Hook/AssemblyInfo.fs -------------------------------------------------------------------------------- /ES.Anathema.Hook/ES.Anathema.Hook.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Hook/ES.Anathema.Hook.fsproj -------------------------------------------------------------------------------- /ES.Anathema.Hook/JitHook.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Hook/JitHook.fs -------------------------------------------------------------------------------- /ES.Anathema.Monitors/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Monitors/AssemblyInfo.fs -------------------------------------------------------------------------------- /ES.Anathema.Monitors/ES.Anathema.Monitors.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Monitors/ES.Anathema.Monitors.fsproj -------------------------------------------------------------------------------- /ES.Anathema.Monitors/MethodMonitor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Monitors/MethodMonitor.fs -------------------------------------------------------------------------------- /ES.Anathema.Monitors/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Monitors/packages.config -------------------------------------------------------------------------------- /ES.Anathema.Runtime/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Runtime/AssemblyInfo.fs -------------------------------------------------------------------------------- /ES.Anathema.Runtime/ES.Anathema.Runtime.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Runtime/ES.Anathema.Runtime.fsproj -------------------------------------------------------------------------------- /ES.Anathema.Runtime/MethodFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Runtime/MethodFilter.fs -------------------------------------------------------------------------------- /ES.Anathema.Runtime/RuntimeDispatcher.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/ES.Anathema.Runtime/RuntimeDispatcher.fs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/LICENSE -------------------------------------------------------------------------------- /MLogger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MLogger/App.config -------------------------------------------------------------------------------- /MLogger/MLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MLogger/MLogger.csproj -------------------------------------------------------------------------------- /MLogger/MethodLoggerMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MLogger/MethodLoggerMonitor.cs -------------------------------------------------------------------------------- /MLogger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MLogger/Program.cs -------------------------------------------------------------------------------- /MLogger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MLogger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MockLibrary/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/Classes.cs -------------------------------------------------------------------------------- /MockLibrary/MockLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/MockLibrary.csproj -------------------------------------------------------------------------------- /MockLibrary/MyEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/MyEnum.cs -------------------------------------------------------------------------------- /MockLibrary/MyStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/MyStruct.cs -------------------------------------------------------------------------------- /MockLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MockLibrary/SayHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/SayHello.cs -------------------------------------------------------------------------------- /MockLibrary/SaySuperHello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/SaySuperHello.cs -------------------------------------------------------------------------------- /MockLibrary/Simpleclass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/Simpleclass.cs -------------------------------------------------------------------------------- /MockLibrary/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/MockLibrary/StaticClass.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/README.md -------------------------------------------------------------------------------- /SecureWebShop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShop/App.config -------------------------------------------------------------------------------- /SecureWebShop/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShop/AssemblyInfo.fs -------------------------------------------------------------------------------- /SecureWebShop/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShop/Program.fs -------------------------------------------------------------------------------- /SecureWebShop/SecureWebShop.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShop/SecureWebShop.fsproj -------------------------------------------------------------------------------- /SecureWebShop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShop/packages.config -------------------------------------------------------------------------------- /SecureWebShopPasswordStealer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShopPasswordStealer/App.config -------------------------------------------------------------------------------- /SecureWebShopPasswordStealer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShopPasswordStealer/Program.cs -------------------------------------------------------------------------------- /SecureWebShopPasswordStealer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShopPasswordStealer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SecureWebShopPasswordStealer/SecureWebShopPasswordStealer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/SecureWebShopPasswordStealer/SecureWebShopPasswordStealer.csproj -------------------------------------------------------------------------------- /Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/App.config -------------------------------------------------------------------------------- /Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/Program.cs -------------------------------------------------------------------------------- /Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/SayHelloMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/SayHelloMonitor.cs -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /Test/TestMethodMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enkomio/Anathema/HEAD/Test/TestMethodMonitor.cs --------------------------------------------------------------------------------