Suggested usage
Put certificates list in certs.txt and run:
awk '{ print $3 }' certs.txt | while read d; do bash check_sha256.sh $d 2>/dev/null; done | grep OK
import os | |
import json | |
import boto3 | |
import urllib3 | |
# Set the following in the Lambda Environment variables | |
IP_SET_ID = os.environ.get('IP_SET_ID') | |
Special_IPs = os.environ.get('SPECIAL_IPS').split(',') | |
- hosts: localhost | |
gather_facts: no | |
vars: | |
aws_profile: "aws_account_name" | |
acm_domain: "example.com" | |
acm_extra_domains: "*.example.com" | |
acm_idempotency_token: "examplecomtoken" | |
dns_zone: "example.com" | |
environment: | |
AWS_PROFILE: "{{ aws_profile }}" |
import boto3 | |
import json | |
import requests | |
from datetime import datetime | |
import sys | |
HOST = 'MY.HOST.ADDRESS' | |
PORT = 12201 # change if you create graylog input with different port | |
queue_url = 'https://sqs.ZONE.amazonaws.com/ACCOUNT/QUEUENAME' |
#!/bin/bash | |
# very specific need | |
top_process=$(ps -eo pid,cmd,%cpu --sort=-%cpu | head -n2 | tail -n1) | |
if [[ $top_process == *sometest* ]]; then | |
PATHTOPROCESS=$(echo $top_process| awk '{print $1}' | xargs lsof -p | grep public_html) | |
logger -it HIGHCPU "Process $top_process in $PATHTOPROCESS" | |
fi |
--- | |
- hosts: all | |
tasks: | |
- lineinfile: "dest=/etc/newrelic-infra.yml line='license_key: YOURKEYHERE' create=yes state=present" | |
- apt_key: | |
state=present | |
url=https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg | |
- apt_repository: "repo='deb [arch=amd64] http://download.newrelic.com/infrastructure_agent/linux/apt {{ansible_distribution_release}} main' state=present update_cache=yes" | |
- apt: name=newrelic-infra |
<?php | |
/* | |
Plugin Name: My Plugin | |
Plugin URI: https://deeb.me | |
Description: 10 ways to peel an orange | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} |
<?php | |
function other_languages_switcher(){ | |
$languages = icl_get_languages('skip_missing=1'); | |
foreach($languages as $l){ | |
if(!$l['active']) { | |
$langs[] = '<a href="'.$l['url'].'">'.$l['language_code'].'</a>'; | |
} | |
} | |
echo join(', ', $langs); | |
} |
files in /etc/monit/conf.d/ |
iptables -I INPUT 1 -p tcp --dport 80 -m string --string "HTTP/1.0" --algo bm -j DROP |
Put certificates list in certs.txt and run:
awk '{ print $3 }' certs.txt | while read d; do bash check_sha256.sh $d 2>/dev/null; done | grep OK