Welcome to the coldboots blog
We will use this blog primarily to publish writeups from CTF’s we have participated in.
Stay tuned.
\[e = \pi = 3\](Joke aside, this blog is MathJax-enabled.)
#include <stdio.h>
int main(int argc, char **argv) {
printf("hello world");
}
from pwn import *
r = remote('127.0.0.1', 1337)
r.sendline('hello world')