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
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
iptables -I INPUT 1 -p tcp --dport 80 -m string --string "HTTP/1.0" --algo bm -j DROP |
files in /etc/monit/conf.d/ |
<?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); | |
} |
netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n | |
# found @ http://midnight-cafe.co.uk/linux-commands/netstat-to-find-number-of-connections-from-each-ip/ |
#!/usr/bin/python | |
# NatGeo Wallpaper Downloader | |
# version: 0.1.2 | |
# author: Abdallah Deeb <abdallah.deeb@gmail.com> | |
# description: Simply python script to download | |
# and set the gnome wallpaper from the | |
# National Geographic "Photo of the day" page | |
# source: http://photography.nationalgeographic.com/photography/photo-of-the-day/ | |
import urllib2, urllib, os, re | |
from gi.repository import Gio |
import smtplib | |
import argparse | |
import sys | |
parser = argparse.ArgumentParser(description='SMTP Tester', add_help=True) | |
parser.add_argument('-s', '--server', dest='server', action='store', | |
help='Server Name or IP') | |
parser.add_argument('-u', '--username', dest='username', action='store', | |
help='username - try with and without the @') | |
parser.add_argument('-p', '--password', dest='password', action='store', |
#!/bin/bash | |
APIKEY=0000000000000000000000000 | |
VPSOID=00000000 | |
VPSNAME=test01.vps | |
# more info on this per http://apidocs.rimuhosting.com/jaxbdocs/com/rimuhosting/rs/order/OSDPrepUtils.NewVPSRequest.html | |
# & instantiation_options: http://apidocs.rimuhosting.com/jaxbdocs/com/rimuhosting/rs/order/OSDPrepUtils.InstantiationData.html | |
create_vps() { | |
echo Installing ${VPSNAME} ... | |
curl -X POST \ |
#!/bin/bash | |
zgrep $1 /proc/config.gz |
#!/bin/bash | |
APIKEY=00000000000000000000000000 | |
VPSOID=0000000 | |
VPSNAME=whatever | |
curl -H "Content-Type: application/json" -H "Accept: application/json" -H "Authorization: rimuhosting apikey=$APIKEY" -X PUT -d ‘{"reboot_request": {"running_state": "RESTARTING"}}’ https://rimuhosting.com/r/orders/order-$VPSOID-$VPSNAME/vps/running-state | |