Monthly Archives: September 2023

Disable TLS 1.0 and TLS 1.1 on Windows Server using CMD as admin

reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server” /v Enabled /t REG_DWORD /d 0 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server” /v DisabledByDefault /t REG_DWORD /d 1 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client” /v Enabled /t REG_DWORD /d 0 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client” /v DisabledByDefault /t … Continue reading

Posted in IIS, My Windows, windows | Comments Off on Disable TLS 1.0 and TLS 1.1 on Windows Server using CMD as admin

cert not store in server certificate

Posted in IIS, SSL, windows | Comments Off on cert not store in server certificate

SSL v3 goes to the dogs – POODLE kills off protocol

Apache To disable SSLv3 on your Apache server you can configure it using the following. SSLProtocol All -SSLv2 -SSLv3 This will give you support for TLSv1.0, TLSv1.1 and TLSv1.2, but explicitly removes support for SSLv2 and SSLv3. Check the config … Continue reading

Posted in apache, My Linux, windows | Comments Off on SSL v3 goes to the dogs – POODLE kills off protocol

Disable TLS 1.0 /1.1 in Apache Server

1. Open Apache configuration Open terminal and run the following command to open Apache configuration file. $ sudo vi /etc/apache2/httpd.conf Also read : How to Redirect POST Request Data in .htaccess 2. Disable TLS 1.0/1.1 Look for the following line in bold … Continue reading

Posted in apache, My Linux | Comments Off on Disable TLS 1.0 /1.1 in Apache Server