This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString | |
// options: | |
// weekday -> [long | short | narrow] | |
// era -> [long | short | narrow] | |
// timeZoneName -> [long | short] | |
// | |
// year -> [numeric | 2-digit] | |
// month -> [numeric | 2-digit | long | short | narrow] | |
// day -> [numeric | 2-digit] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version 1.0 | |
# Copyleft | |
# | |
# Ali Nikouei | |
# July 2020 | |
# this script parses the CSV output of the plugin 11936 of Nessus professional | |
# https://community.tenable.com/s/article/Operating-System-identification-using-Plugin-11936 | |
## How to use it: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Version 1.0 | |
// Copyleft | |
// | |
// Ali Nikouei | |
// July 2020 | |
// take a look at this one as well; it may help | |
// https://community.tenable.com/s/article/Operating-System-identification-using-Plugin-11936 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Protocols to be enabled/diabled | |
##### CHOSE ONE OF THEM ##### | |
# 1- Requires Apache 2.4.36 & OpenSSL 1.1.1 | |
SSLProtocol -all +TLSv1.3 +TLSv1.2 | |
# 2- If there is Apache 2.4.29 & OpenSSL 1.1.1 | |
SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1 | |
# Enable HTTP/2, if available | |
Protocols h2 http/1.1 | |