This file contains hidden or 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
# Content of the file /etc/logstash/conf.d/auditd.conf | |
# Tested on the CentOS 7 auditspd logs forwarded to logstash via rsyslog | |
input { | |
syslog { | |
type => AUDITD | |
port => xxxx | |
host => "xxx.xxx.xxx.xxx" | |
} | |
} |
This file contains hidden or 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
#!/bin/sh | |
ISSUER_CER=$1 | |
SERVER_CER=$2 | |
URL=$(openssl x509 -noout -ocsp_uri -in "$SERVER_CER") | |
openssl ocsp -noverify -no_nonce -respout ocsp.resp -issuer "$ISSUER_CER" -cert "$SERVER_CER" -url "$URL" | |
# Where “ocsp.resp” is whatever file you have configured in Nginx for the “ssl_stapling_file“. |
This file contains hidden or 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
#!/bin/bash | |
# | |
# ilia/php_excel extension example install script for PHP7+ | |
# | |
# usage: | |
# > ./install_phpexcel_php7.sh | |
# > (optionally) sudo service php7.0-fpm restart) | |
# | |
# requirements: | |
# - Ubuntu 64bits (trusty/xenial) |