Friday, May 5, 2023

[MSc UoL] Cryptojacking

 According to CrowdStrike, "Cryptojacking is the unauthorized use of a person's or organization's computing resources to mine cryptocurrency."

Thursday, March 30, 2023

NIST Privacy Framework Guide

https://www.nist.gov/system/files/documents/2021/01/13/Getting-Started-NIST-Privacy-Framework-Guide.pdf

NIST Cybersecurity Framework Quick Start Guide

 https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.1271.pdf

Friday, February 10, 2023

How to check if the remote SMTP server supports TLS 1.1

 First confirm if OpenSSL has been installed properly:

#which openssl


Then execute the command below:

#openssl s_client -starttls smtp -crlf -connect HOST:PORT -tls1_1


If the output shows TLS session ticket, the peer SMTP server supports.

Otherwise, it does not support.