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
#!/usr/bin/env python2 | |
import os | |
import re | |
import sys | |
vulnerable = frozenset([ | |
'/usr/lib/i386-linux-gnu/i686/cmov/libssl.so.1.0.0', | |
'/usr/lib/x86_64-linux-gnu/libssl.so.1.0.0', | |
]) |
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
# Remove parent of commit 9c747fd659803ab7406b55fe38f752a03b9157d3 | |
git filter-branch --parent-filter 'test $GIT_COMMIT = "9c747fd659803ab7406b55fe38f752a03b9157d3" || cat' HEAD |
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
# Remove every file except "./somefile.txt" and the directory "./somedir". | |
# --prune-empty to remove empty commits. | |
git filter-branch --tree-filter "find . -not -path './.git' -not -path './.git/*' -not -path './somefile.txt' -not -path './somedir/*' -not -path './somedir' -delete" --prune-empty |
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
#!/usr/bin/env python | |
import select | |
import socket | |
import struct | |
import sys | |
TIMEOUT = 10.0 | |
ip = sys.argv[1] | |
port = int(sys.argv[2]) |
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
# Copy the filesystem: | |
rsync --numeric-ids --checksum --delete --archive --verbose --exclude /dev --exclude /proc --exclude /run --exclude /sys root@someserver:/ /mnt/tmp | |
# Create a squashfs image | |
mksquashfs /mnt/tmp someserver.squashfs -comp xz -noappend | |
# Create LVM volume | |
lvcreate --size $(stat --format %s someserver.squashfs)B --name old-someserver vg | |
# Archive image on LVM |
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
#!/usr/bin/env python | |
import socket | |
import struct | |
import sys | |
src_ip = sys.argv[1] | |
src_port = int(sys.argv[2]) | |
dst_addr = sys.argv[3] | |
dst_port = int(sys.argv[4]) |
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
#!/bin/bash | |
dmsetup info | while IFS=: read NAME VALUE; do | |
# Trim leading and trailing whitespace from NAME and VALUE | |
NAME="$(echo "$NAME" | sed -e 's/^ *//g' -e 's/ *$//g')" | |
VALUE="$(echo "$VALUE" | sed -e 's/^ *//g' -e 's/ *$//g')" | |
if [ -z "$NAME" ]; then | |
continue | |
fi |
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
#!/bin/bash | |
KEEP_DAYS=15 | |
VG="vg" # LVM volume group we are snapshoting | |
LV="data-volume-name" # Name of LVM-volume to take a snapshot of | |
BACKUP_PREFIX="backup-volume-prefix-" # Prefix of snapshot volume name. | |
SIZE=40G # Amount of disk space to allocate for the snapshot | |
# Create new snapshot |
NewerOlder