Skip to content

Instantly share code, notes, and snippets.

View Jcpetrucci's full-sized avatar

John C. Petrucci Jcpetrucci

View GitHub Profile
@Jcpetrucci
Jcpetrucci / f5-vlan-selfip-maker.sh
Created September 7, 2018 20:47
F5 VLAN and Self IP generator
#!/bin/bash
while read VLAN_ID VLAN_NAME SUBNET MASKLEN; do
export MEMBER_A_IP=${SUBNET%.*}.252/${MASKLEN}
export MEMBER_B_IP=${SUBNET%.*}.253/${MASKLEN}
export VIP=${SUBNET%.*}.254/${MASKLEN}
for member in A B; do
printf 'For member %s:\n' $member
printf 'create net vlan %s interfaces add { internal { tagged } } tag %s\n' $VLAN_NAME $VLAN_ID
printf 'create net self me.%s { address %s traffic-group traffic-group-local-only vlan %s }\n' $VLAN_NAME $(eval echo '$MEMBER_'$member'_IP') $VLAN_NAME
printf 'create net self float.%s { address %s traffic-group traffic-group-1 vlan %s }\n' $VLAN_NAME $VIP $VLAN_NAME
@Jcpetrucci
Jcpetrucci / index.php
Last active February 7, 2018 17:41
pagerduty "who's on-call" for slack
<?php
if ( $_POST["token"] != "REDACTED" ) {
header("HTTP/1.1 403 Forbidden");
die();
}
$SLACK_TEXT = preg_replace ( "/$_POST[trigger_word]/", '', $_POST[text] );
function whos_on_call ( $when ) {

Advanced copy+paste from tmux via PuTTY

Introduction

Useful for copying text from vertically split panes in tmux, when normal "shift + clickdrag" copying spans across the vertical separator, or there are too many rows to fit into the pane. Video explanation of what this does and how it works @ https://www.youtube.com/watch?v=kEIpE2XpDdY

The solution

  1. In server-side tmux.conf, add:
#!/bin/bash
# This script converts the hexadecimal represenatation of an SSH (or similar) key's fingerprint into friendly words. The goal is to allow humans to more easily recognize when a fingerprint changes.
# Usage: provide the hexadecimal fingerprint as standard input. The regex match should trim any excess, so you do not have to be too precise when doing this. Just make sure that the fingerprint echoed back matches what you expect.
# This version was made in a pinch and has room for improvement.
# Example:
# $ ssh-keygen -l -f ~/.ssh/id_rsa | ./hex-fingerprint-words
# Generating from input fingerprint: 3b:44:c7:20:21:8c:81:5b:af:6a:da:bd:ab:29:c9:4f
# CONSENSUS DASHBOARD SHAMROCK BOTTOMLESS BRADBURY MOLECULE KLAXON EXAMINE RACKETEER GOLDFISH SURMOUNT RINGBOLT PUPIL CANNONBALL SLINGSHOT DRIFTER
@Jcpetrucci
Jcpetrucci / panorama-rollback.sh
Created July 15, 2016 13:02
Run tmux on a server in the same subnet as Palo Alto Panorama. After a delay, tmux emulates your keystrokes to rollback the config.
#!/bin/bash
which tmux >/dev/null || { printf '%s\n' 'Error: could not locate tmux.' >&2; exit 1; }
# Create session, window, pane
readonly SESSION_NAME="$(head -c 30 <(tr -d -c [:alnum:] </dev/urandom))"
tmux start-server
tmux new-session -d -s $SESSION_NAME
tmux split-window -d -v -p 10
# Configure timer:
@Jcpetrucci
Jcpetrucci / fibonacci.sh
Created July 3, 2015 02:55
fibonacci golf in 58 characters (bash)
until((${#c}>8));do
a=$b
b=${c-1}
c=$((b+a))
echo $c
done
@Jcpetrucci
Jcpetrucci / checkpoint-object-creator.sh
Created April 2, 2015 17:57
Creates dbedit (Check Point) CLI configuration syntax out of large groups of IP address data.
#!/bin/bash
# Creates dbedit CLI configuration syntax out of large groups of IP address data.
[[ "$#" == 1 && -f "$1" ]] || { printf "First argument should be filename containing IP addresses in form of '#.#.#.#'.\n" >&2; exit 1; }
OUTFILE="$(mktemp)"
exec 3<> "$OUTFILE"
# Make group of objects just created
read -r -p "Group name (e.g. 'blacklist'): " GROUPNAME
#read -r -p "Host prefix (e.g. 'badip'): " PREFIX # Don't feel like sanitizing this at the moment. I'll just hardcode a prefix on the next line.
PREFIX="host_"
@Jcpetrucci
Jcpetrucci / rotX.sh
Last active August 14, 2019 08:54
Tries all variations of Rot# (i.e. Rot13...Rot14...RotN)
#!/bin/bash
charset=abcdefghijklmnopqrstuvwxyz # Tweak $charset as needed for your alphabet
input=${1,,} #strtolower; greatly simplifies conversion
for char in $(seq 1 ${#charset}); do # Count characters in charset, and for each...
temp=${charset#?} # Strip the first character, save rest to $temp
charset=${temp}${charset%"$temp"} # Move the first character of charset behind the rest (abcde becomes bcdea)
echo $input | tr a-z $charset
done
@Jcpetrucci
Jcpetrucci / keybase-hash.sh
Last active August 29, 2015 14:16
Manually produce a keybase.io hash
#!/bin/bash
# Original: https://github.com/keybase/keybase-issues/issues/1126#issuecomment-58430029
gpg --dearmor | \
sha256sum | \
awk ' { print "0:", $1 } ' | \
xxd -g0 -r -c256 | \
base64 | \
head -c 43
@Jcpetrucci
Jcpetrucci / keybase.md
Created March 3, 2015 16:31
Nothing cool here, just keybase.io verification.

Keybase proof

I hereby claim:

  • I am jcpetrucci on github.
  • I am petrucci (https://keybase.io/petrucci) on keybase.
  • I have a public key whose fingerprint is 1DD7 F96E C6B0 35B0 602C AFF7 9DD9 C5E7 3EDB 622E

To claim this, I am signing this object: