- 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='i386') | |
# context.log_level = 'debug' | |
HOST = "segsh.bostonkey.party" | |
PORT = 8888 | |
conn = None |
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
~/D/c/b/hsab ❯❯❯ python solve.py | |
[+] Opening connection to 104.199.132.199 on port 2222: Done | |
[*] Switching to interactive mode | |
-bash-4.4$ $ bash -v /home/ctf/flag.ray | |
bash -v /home/ctf/flag.ray | |
#BCTF{ipreferzshtobash} | |
-bash-4.4$ server: timeout | |
[*] Got EOF while reading in interactive | |
$ |
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
/* | |
gcc -m32 -fno-stack-protector $@ | |
*/ | |
#include <unistd.h> | |
int main() | |
{ | |
char buf[100]; | |
int size; | |
read(0, &size, 4); |
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" |
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
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
#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
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
from pwn import * | |
import hashlib | |
import commands | |
import re | |
def submit(flag): | |
import commands | |
import random |