Thursday, October 19, 2023

How to detect the versions of jQuery and jQuery UI through Chrome

1) Open Chrome and browse the website

2) After the website shows up completely, press the button F12

3) Within the console box, execute the following command:


For jQuery:

console.log(jQuery().jquery);

or

jQuery().jquery


For jQuery UI:

$.ui.version

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.