- Pixyll - http://pixyll.com/
- So Simple - https://mmistakes.github.io/so-simple-theme/
- Type Theme - https://rohanchandra.github.io/type-theme/
- slim - http://syaning.com/slim/
- Jekyll Clean Dark - http://pavelmakhov.com/jekyll-clean-dark/
This file contains hidden or 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 | |
from pwn import * | |
context(os='linux', arch='amd64') | |
context.log_level = 'debug' # output verbose log | |
RHOST = "127.0.0.1" | |
RPORT = 10080 | |
LHOST = "127.0.0.1" | |
LPORT = 10080 |
This file contains hidden or 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
function run_angr() { | |
if [ $# -gt 0 ]; then | |
WRAPPER=$(basename `mktemp`) | |
cat << EOF > $WRAPPER | |
#!/bin/sh | |
. ~/.virtualenvs/angr/bin/activate | |
rm -f \$0 | |
\$@ | |
EOF | |
chmod +x $WRAPPER |
This file contains hidden or 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
from unicorn import * | |
from unicorn.x86_const import * | |
from capstone import * | |
from capstone.x86_const import * | |
flag = "" | |
rax_flag = False | |
def hook(uc, address, size, userdata): | |
cs = Cs(CS_ARCH_X86, CS_MODE_64) |
This file contains hidden or 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
from pwn import * | |
import hashlib | |
import commands | |
import re | |
def submit(flag): | |
import commands | |
import random |
This file contains hidden or 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
function prezto-update() { | |
olddir=`pwd` | |
cd ~/.zprezto && git pull && git submodule update --init --recursive | |
cd $olddir | |
} | |
function swap() { | |
mv $1 .$1.myswp | |
mv $2 $1 | |
mv .$1.myswp $2 |
This file contains hidden or 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
#include <iostream> | |
#include <sstream> | |
#include <iomanip> | |
#include <algorithm> | |
#include <cstring> | |
#include <cassert> | |
#include <vector> | |
#include <thread> | |
#include <mutex> | |
#include "md5.cpp" |
This file contains hidden or 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
from math import sin | |
from urlparse import parse_qs | |
from base64 import b64encode | |
from base64 import b64decode | |
from re import match | |
from pwn import remote, context | |
# context.log_level = 'debug' | |
USER = 'icchy' |
This file contains hidden or 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
PASS | |
PASS | |
PASS | |
PASS | |
PASS | |
PASS | |
PASS | |
PASS | |
PASS | |
REJECTED |
This file contains hidden or 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
function vm_debian() { | |
case "$1" in | |
start) | |
/usr/local/bin/VBoxManage startvm "debian" --type headless | |
;; | |
stop|poweroff) | |
/usr/local/bin/VBoxManage controlvm "debian" acpipowerbutton | |
;; | |
status) | |
/usr/local/bin/VBoxManage showvminfo "debian" | grep "State" |