I hereby claim:
- I am f0rki on github.
- I am f0rki (https://keybase.io/f0rki) on keybase.
- I have a public key whose fingerprint is ECC5 1F7E DA2A 3E35 807B CF42 BCFE F3D1 E4BC 65A1
To claim this, I am signing this object:
#!/bin/bash | |
set -eu | |
if ! which jq >/dev/null && which curl >dev/null; then | |
echo "Installing dependencies!" | |
/usr/bin/pacman -Syu --noconfirm curl jq | |
fi | |
if (( $# != 2 )); then | |
echo "Import ssh public keys from github user to authorized_keys" |
all: test preload.so | |
clean: | |
-$(RM) test preload.so | |
%.so: %.c | |
$(CC) $^ -o $@ -shared -fPIC $(CFLAGS) |
#!/usr/bin/env python | |
import gc | |
import pwnlib # NOQA | |
from pwn import * # NOQA | |
context.arch = "i386" | |
context.os = "linux" |
from __future__ import print_function | |
import os | |
import subprocess as sp | |
import angr | |
from claripy import BVS, BVV | |
src = """ |
#include <stdbool.h> | |
#include <stdio.h> | |
#define DEFINE_RESULT(T, E, NAME) \ | |
typedef struct { \ | |
bool success : 1; \ | |
union { \ | |
T result; \ | |
E error; \ | |
}; \ |
#!/usr/bin/fish | |
# ---------------------------------------------------------------------------- | |
# "THE BEER-WARE LICENSE" (Revision 42): | |
# <[email protected]> wrote this file. As long as you retain this notice you | |
# can do whatever you want with this stuff. If we meet some day, and you think | |
# this stuff is worth it, you can buy me a beer in return. | |
# ---------------------------------------------------------------------------- | |
# prefered git mirror | |
set -g GIT_MIRROR "https://github.com/llvm-mirror/" |
/* | |
* ---------------------------------------------------------------------------- | |
* "THE BEER-WARE LICENSE" (Revision 42): | |
* <[email protected]> wrote this file. As long as you retain this notice you | |
* can do whatever you want with this stuff. If we meet some day, and you think | |
* this stuff is worth it, you can buy me a beer in return. | |
* ---------------------------------------------------------------------------- | |
*/ | |
/// Interpreter for the TapeBagel esoteric language |
# compression "oracle" | |
import sys | |
from pwn import remote, log, context, process | |
import string | |
import zlib | |
#context.log_level = 'debug' | |
BLKSIZE = 16 | |
doremote = True | |
#doremote = False |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
""" | |
quick test to check how much of the original data is left if a partition or a | |
image is formatted using ext4. | |
""" | |
from __future__ import print_function | |
import os | |
import sys |