The dangers of using a random KMS license server

What are KMS licenses? KMS stands for key management services, this is a service which you can run your own client activation tools for windows licenses. The license on the specified machine asks to validate against the KMS service to check …

Always check and verify!

What is a checksum A Checksum is a digital fingerprint of a file or code. Software creators and/or companies are creating these digital fingerprints for safety reasons. One of the most common usecases is checking if a downloaded file is …

Create and check certificates

Linux/MacOS OpenSSL MD5 modules You can use MD5 module to check if key and cert are a keypair toghter. 1 2 openssl rsa -modulus -noout -in <name>.key| openssl md5 openssl x509 -modulus -noout -in <name>.crt| openssl md5 …