├── .gitignore ├── AES256Decryptor ├── KeyList.txt ├── README.md └── decrypter.py ├── MachineKey └── AspDotNetWrapper │ ├── AspDotNetWrapper.sln │ ├── AspDotNetWrapper │ ├── App.config │ ├── AspDotNetWrapper.cs │ ├── AspDotNetWrapper.csproj │ ├── AspDotNetWrapper.csproj.user │ ├── Customization │ │ ├── DataWriter.cs │ │ ├── DefinePurpose.cs │ │ ├── EncryptDecrypt.cs │ │ ├── FormAuthenticationHelper.cs │ │ ├── HelperClasses.cs │ │ └── ViewStateHelper.cs │ ├── LICENSE.txt │ ├── LICENSE │ │ ├── FormAuthentication_LICENSE.txt │ │ └── Microsoft_LICENSE.txt │ ├── Options.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resource │ │ └── MachineKeys.txt │ ├── System.Web.Configuration │ │ └── ConfigUtil.cs │ ├── System.Web.Security.Cryptography │ │ ├── AspNetCryptoServiceProvider.cs │ │ ├── CryptoAlgorithms.cs │ │ ├── CryptoServiceOptions.cs │ │ ├── CryptoUtil.cs │ │ ├── CryptographicKey.cs │ │ ├── DataProtectorCryptoService.cs │ │ ├── HomogenizingCryptoServiceWrapper.cs │ │ ├── ICryptoAlgorithmFactory.cs │ │ ├── ICryptoService.cs │ │ ├── ICryptoServiceProvider.cs │ │ ├── IDataProtectorFactory.cs │ │ ├── IMasterKeyProvider.cs │ │ ├── KeyDerivationFunction.cs │ │ ├── MachineKeyCryptoAlgorithmFactory.cs │ │ ├── MachineKeyDataProtectorFactory.cs │ │ ├── MachineKeyMasterKeyProvider.cs │ │ ├── NetFXCryptoService.cs │ │ ├── Purpose.cs │ │ ├── SP800_108.cs │ │ ├── SerializingBinaryReader.cs │ │ └── SerializingBinaryWriter.cs │ ├── System.Web.Util │ │ ├── BinaryCompatibility.cs │ │ ├── Debug.cs │ │ ├── HttpEncoderUtility.cs │ │ └── VersionUtil.cs │ └── packages.config │ └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/.gitignore -------------------------------------------------------------------------------- /AES256Decryptor/KeyList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/AES256Decryptor/KeyList.txt -------------------------------------------------------------------------------- /AES256Decryptor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/AES256Decryptor/README.md -------------------------------------------------------------------------------- /AES256Decryptor/decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/AES256Decryptor/decrypter.py -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper.sln -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/App.config -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.csproj -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/AspDotNetWrapper.csproj.user -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/DataWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/DataWriter.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/DefinePurpose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/DefinePurpose.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/EncryptDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/EncryptDecrypt.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/FormAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/FormAuthenticationHelper.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/HelperClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/HelperClasses.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/ViewStateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Customization/ViewStateHelper.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE.txt -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE/FormAuthentication_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE/FormAuthentication_LICENSE.txt -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE/Microsoft_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/LICENSE/Microsoft_LICENSE.txt -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Options.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/Resource/MachineKeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/Resource/MachineKeys.txt -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Configuration/ConfigUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Configuration/ConfigUtil.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/AspNetCryptoServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/AspNetCryptoServiceProvider.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoAlgorithms.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoServiceOptions.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptoUtil.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptographicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/CryptographicKey.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/DataProtectorCryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/DataProtectorCryptoService.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/HomogenizingCryptoServiceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/HomogenizingCryptoServiceWrapper.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoAlgorithmFactory.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoService.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/ICryptoServiceProvider.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/IDataProtectorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/IDataProtectorFactory.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/IMasterKeyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/IMasterKeyProvider.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/KeyDerivationFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/KeyDerivationFunction.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyCryptoAlgorithmFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyCryptoAlgorithmFactory.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyDataProtectorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyDataProtectorFactory.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyMasterKeyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/MachineKeyMasterKeyProvider.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/NetFXCryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/NetFXCryptoService.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/Purpose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/Purpose.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SP800_108.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SP800_108.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SerializingBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SerializingBinaryReader.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SerializingBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Security.Cryptography/SerializingBinaryWriter.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/BinaryCompatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/BinaryCompatibility.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/Debug.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/HttpEncoderUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/HttpEncoderUtility.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/VersionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/System.Web.Util/VersionUtil.cs -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/AspDotNetWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/AspDotNetWrapper/packages.config -------------------------------------------------------------------------------- /MachineKey/AspDotNetWrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/MachineKey/AspDotNetWrapper/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotSoSecure/Blacklist3r/HEAD/README.md --------------------------------------------------------------------------------